From 155b3a832c590c55ea3d89dd0783713f1d0f19c1 Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Sun, 4 Jun 2023 19:35:54 +0800 Subject: fix: Fix compile error Signed-off-by: KunoiSayami --- expt_0529.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'expt_0529.cu') 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 readHelper("normal_distribution.txt", sample_length, 0); readHelper.readFile(); std::vector sample, population; -- cgit v1.3.1