-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCHANGELOG
61 lines (38 loc) · 1.52 KB
/
CHANGELOG
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
# Changelog
This file contains all changes made to the source code for each release.
## 2.5
#### Changed:
- Renamed all configuration parameters to start with `HPCC_FPGA_RA_`
- Update the host code to use Log2 values as inputs for simplification
#### Added:
- Add support for multiple pseudo random number generators specified over `HPCC_FPGA_RA_RNG_COUNT_LOG`
- Modify the number of steps in the shift register between the RNGs with `HPCC_FPGA_RA_RNG_DISTANCE`
## 2.4
#### Changed:
- Make pragma ivdep optional for Intel devices using the new flag `INTEL_USE_PRAGMA_IVDEP`
## 2.3
#### Added:
- Add MPI support for global execution
## 2.2
#### Added:
- Base implementation tests are now build and linked with the unit test binary
- Support for custom kernel designs
## 2.1
#### Added:
- Support for Intel HBM using the USE_HBM flag. This will use the CL_MEM_HETEROGENEOUS_INTELFPGA flag to allocate OpenCL buffers.
## 2.0.3
#### Changed:
- Converted host code to new OO code
## 2.0.2.1
##### Added:
- Host side support for SVM
## 2.0.2
#### Changed:
- OpenMP pragmas from single to master with explicit barriers
## 2.0.1
#### Added:
- Unit tests for result validation and kernel execution
- Add new boolean parameter `COMBINE_LOOPS` that allows to combine the address calculation and loading of the data into a single loop instead of two separate loops. This can improve the performance if the loops are executed sequentially because the outer loop can not be pipelined.
## 2.0
#### Added:
- Replace Makefile with CMake as a build system