-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.txt
62 lines (55 loc) · 2.84 KB
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
==================================================================
Installation Instructions
==================================================================
------------------------------------------------------------------
Requirements
------------------------------------------------------------------
1. Visual Studio 2015 or later. Source code in principle can be
compiled using other compilers, but compiler independent
build system is not available currently.
2. Boost library. Tested version: 1.62.
3. matcl-mp and matcl-mp-obj projects requires MPIR and MPFR libraries
(see extern_libraries.txt for details). Prebuild versions of these
libraries can be found in src/extern.
------------------------------------------------------------------
BUILD
------------------------------------------------------------------
1. MATCL can be build from source using Visual Studio solution.
2. Project files must be modified in order to set up paths to
required external libraries
------------------------------------------------------------------
Machine dependent parameters
------------------------------------------------------------------
machine dependent parameters are defined in "matcl-core/general/machine.h"
1. MATCL_CACHE_LINE_SIZE
- cache line size in bytes;
- this is optimization parameters, invalid value may have
negative impact on performance
2. MATCL_SIMD_ALIGNMENT
- alignment for SIMD related types
- this is optimization parameters, invalid value may have
negative impact on performance
3. MATCL_ARCHITECTURE_HAS_[INSTR]
- is instruction set [INSTR] available?
- should be set to 1 whenever possible; in this way faster and
more accurate versions of library functions will be used
------------------------------------------------------------------
Important parameters
------------------------------------------------------------------
1. MATCL_THREADING_MODE
- defined in matcl-core/config.h
- when set to MATCL_MULTITHREAD_MODE, then thread safety is
enabled; however this has negative impact on performance
2. MATCL_USE_DLMALLOC
- defined in matcl-core/config.h
- when set to 1, then DLMALLOC is used instead of default malloc
- usually DLMALLOC allocator is faster than default malloc
3. MATCL_DEBUG_MEMORY
- defined in matcl-core/config.h
- when set to 1, then memory debugging and leak detection is enabled
4. MATCL_DEBUG_MP_FLOAT
- defined in matcl-mp/config.h
- when set to 1, then mp_float class contains a string member
representing stored value
Copyright (C) 2017-2021 Paweł Kowal
email: [email protected]