Skip to content

Commit

Permalink
[kalmar-omp] Add OpenMP sample application tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lyh-kernel-MCW committed Nov 25, 2015
1 parent 8ffc629 commit 3a99ceb
Show file tree
Hide file tree
Showing 7 changed files with 849 additions and 0 deletions.
10 changes: 10 additions & 0 deletions omp-sample/compile_exec.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

clang++ -fopenmp md_openmp.cpp -o md_openmp
clang -fopenmp omp_hello.c -o omp_hello
clang -fopenmp omp_mm.c -o omp_mm
clang -fopenmp omp_orphan.c -o omp_orphan
clang -fopenmp omp_reduction.c -o omp_reduction
clang -fopenmp omp_workshare1.c -o omp_workshare1

./md_openmp && ./omp_hello && ./omp_mm && ./omp_orphan && ./omp_reduction && ./omp_workshare1
Loading

0 comments on commit 3a99ceb

Please sign in to comment.