We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 195b747 commit 3af6e16Copy full SHA for 3af6e16
1 file changed
Libraries/oneMKL/binomial/src/binomial.hpp
@@ -9,10 +9,6 @@
9
10
#include <chrono>
11
12
-#ifndef DATA_TYPE
13
-#define DATA_TYPE double
14
-#endif
15
-
16
#ifndef VERBOSE
17
#define VERBOSE 0
18
#endif
@@ -45,6 +41,7 @@ constexpr int opt_n =
45
41
#define __VERSION__ __clang_major__
46
42
47
43
44
+template<typename DATA_TYPE>
48
class Binomial {
49
public:
50
Binomial();
@@ -73,4 +70,6 @@ class timer {
73
70
std::chrono::steady_clock::time_point t1_, t2_;
74
71
};
75
72
+bool is_fp64();
+
76
#endif // __Binomial_HPP__
0 commit comments