summaryrefslogtreecommitdiff
path: root/expt_0520.cu
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2023-06-04 18:34:21 +0800
committerKunoiSayami <[email protected]>2023-06-04 18:34:21 +0800
commit1fbb943005ad78335f0b921be516b3df8140406d (patch)
tree454d384ed2566a907b11be57a6b7e49ddbc74605 /expt_0520.cu
parentd8384bdc4aa7fa1ccc24aec296fac83f1d43a2b4 (diff)
Diffstat (limited to 'expt_0520.cu')
-rw-r--r--expt_0520.cu4
1 files changed, 1 insertions, 3 deletions
diff --git a/expt_0520.cu b/expt_0520.cu
index bd1439f..42cdab3 100644
--- a/expt_0520.cu
+++ b/expt_0520.cu
@@ -202,14 +202,12 @@ int main(int argc, char **argv) {
}
auto error = cudaGetLastError();
- auto total_row = 0UL;
auto sample_length = strtol(argv[1], nullptr, 0);
auto insertion_length = strtol(argv[2], nullptr, 0);
printf("insert_length %ld, sample_length: %ld\n", insertion_length,
sample_length);
- ReadHelper reader("normal_distribution.txt", sample_length, insertion_length,
- total_row);
+ ReadHelper reader("normal_distribution.txt", sample_length, insertion_length);
reader.readFile();
key_type *cudaPopulation;