forked from ROCm/hcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kalmar-omp] Add OpenMP sample application tests
- Loading branch information
1 parent
8ffc629
commit 3a99ceb
Showing
7 changed files
with
849 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.