You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+48Lines changed: 48 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,53 @@
1
1
## CHANGE LOG
2
2
3
+
### Hydra 4.0.1
4
+
5
+
Hydra is now compatible with CUDA 12.2 or higher and compliant with C++17 and C++20.
6
+
7
+
In this release:
8
+
9
+
1) Dependencies updates:
10
+
11
+
* Thrust v2.2.0
12
+
* CUB v2.2.0
13
+
* Eigen 3.4.0
14
+
* Boost.Math 1.83.0 (NEW)
15
+
16
+
2) Dependencies functions and classes are now available under corresponding subnamespaces. For example:
17
+
`hydra::thrust`, `hydra::boost::math` and `hydra::Eigen`;
18
+
3) New spline algorithms for interpolation up to four dimensions:
19
+
20
+
Free functions:
21
+
22
+
```cpp
23
+
24
+
hydra::spline
25
+
hydra::spline2D
26
+
hydra::spline4D
27
+
hydra::spline3D
28
+
```
29
+
Including overloads for range-based contained and histograms with corresponding dimension. Header: `hydra/Spline.h`
30
+
31
+
32
+
4) New method `Interpolate(...)` for dense and sparse histograms up to four dimensions.
33
+
34
+
5) New functors:
35
+
36
+
```cpp
37
+
38
+
hydra::SplineFunctor
39
+
hydra::Spline2DFunctor
40
+
hydra::Spline4DFunctor
41
+
hydra::Spline3DFunctor
42
+
```
43
+
Defined in the headers: `hydra/functions/SplineFunctor.h` , `hydra/functions/Spline2DFunctor.h` `hydra/functions/Spline3DFunctor.h` `hydra/functions/Spline4DFunctor.h`.
0 commit comments