summaryrefslogtreecommitdiff
path: root/expt_0520.cu
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2023-06-01 16:09:13 +0800
committerKunoiSayami <[email protected]>2023-06-01 16:09:13 +0800
commitd8384bdc4aa7fa1ccc24aec296fac83f1d43a2b4 (patch)
tree31f2dfd29c191596bf6d7275b82826de745943f0 /expt_0520.cu
parent5d373e5db4d1626f085c5f19ab8481f8a0b14226 (diff)
feat: Optimize read_helper library
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'expt_0520.cu')
-rw-r--r--expt_0520.cu5
1 files changed, 3 insertions, 2 deletions
diff --git a/expt_0520.cu b/expt_0520.cu
index d31dc78..bd1439f 100644
--- a/expt_0520.cu
+++ b/expt_0520.cu
@@ -208,8 +208,9 @@ int main(int argc, char **argv) {
printf("insert_length %ld, sample_length: %ld\n", insertion_length,
sample_length);
- ReadHelper reader("normal_distribution.txt", sample_length, insertion_length);
- reader.readFile(total_row);
+ ReadHelper reader("normal_distribution.txt", sample_length, insertion_length,
+ total_row);
+ reader.readFile();
key_type *cudaPopulation;