Skip to content

Commit 66652d0

Browse files
authored
Update README.md
Added instructions on how to use makefile to compile and run each version.
1 parent 7bfcf7a commit 66652d0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,19 @@ The system provides a full pipeline—from data generation to query parsing to p
4040
gcc QPESeq.c -o QPESeq
4141
./QPESeq db.txt sql.txt
4242

43+
w/ makefile: make run
44+
4345
# OpenMP version
4446
gcc -fopenmp QPEOMP.c -o QPEOMP
4547
./QPEOMP db.txt sql.txt
4648

49+
w/ makefile: make run-omp
50+
4751
# MPI version
4852
mpicc QPEMPI.c -o QPEMPI
4953
mpirun -np <num_processes> ./QPEMPI db.txt sql.txt
54+
55+
w/ makefile: make run-mpi
5056
```
5157

5258
<!--

0 commit comments

Comments
 (0)