summaryrefslogtreecommitdiff
path: root/expt_0529.cu
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2023-06-04 19:35:54 +0800
committerKunoiSayami <[email protected]>2023-06-04 19:35:54 +0800
commit155b3a832c590c55ea3d89dd0783713f1d0f19c1 (patch)
treedfeb770865c77f76cf1ab5448f628b7e21bec483 /expt_0529.cu
parent1fbb943005ad78335f0b921be516b3df8140406d (diff)
fix: Fix compile error
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'expt_0529.cu')
-rw-r--r--expt_0529.cu4
1 files changed, 2 insertions, 2 deletions
diff --git a/expt_0529.cu b/expt_0529.cu
index bd64ad0..3448469 100644
--- a/expt_0529.cu
+++ b/expt_0529.cu
@@ -2,7 +2,7 @@
#include "sortlib.cuh"
#define READ_NO_OUTPUT
-#include "read_helper.h"
+#include "read_helper_p.h"
long pow_for_sample(long n) {
auto x = 2;
@@ -45,7 +45,7 @@ int main(int argc, char const *argv[]) {
printf("sample length: %ld, population length: %ld\n", sample_length,
population_length);
- ReadHelper readHelper("normal_distribution.txt", sample_length, 0);
+ ReadHelper<key_type> readHelper("normal_distribution.txt", sample_length, 0);
readHelper.readFile();
std::vector<key_type> sample, population;