We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bfcf7a commit 66652d0Copy full SHA for 66652d0
1 file changed
README.md
@@ -40,13 +40,19 @@ The system provides a full pipeline—from data generation to query parsing to p
40
gcc QPESeq.c -o QPESeq
41
./QPESeq db.txt sql.txt
42
43
+w/ makefile: make run
44
+
45
# OpenMP version
46
gcc -fopenmp QPEOMP.c -o QPEOMP
47
./QPEOMP db.txt sql.txt
48
49
+w/ makefile: make run-omp
50
51
# MPI version
52
mpicc QPEMPI.c -o QPEMPI
53
mpirun -np <num_processes> ./QPEMPI db.txt sql.txt
54
55
+w/ makefile: make run-mpi
56
```
57
58
<!--
0 commit comments