Skip to content

Commit e361e79

Browse files
authored
Fix ONSAM-1677 due to incorrect path in sample.json files (#2141)
1 parent a924260 commit e361e79

File tree

34 files changed

+102
-102
lines changed

34 files changed

+102
-102
lines changed

Publications/GPU-Opt-Guide/MPI/01_omp_mpich/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make omp_mpich",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/00_omp_thread_num/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_omp_thread_num_1 test_omp_thread_num_2 test_omp_thread_num_3",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/01_collapse/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_collapse_2levels test_collapse_3levels test_collapse_4levels test_no_collapse",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/02_teams_distribute/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_no_teams_distribute test_teams_distribute",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/03_target_enter_exit_data/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_no_target_enter_exit_data test_target_enter_exit_data",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/04_target_nowait/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_target_no_nowait test_target_nowait test_target_nowait_f",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/05_scalars_fp/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_scalars_fp test_scalars_map test_scalars_nofp_nomap",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/06_scalars_private/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_scalars test_scalars_private_2 test_scalars_private",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/07_loop_bounds/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_loop_bounds_fp test_loop_bounds_map test_loop_bounds_nofp_nomap",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/08_num_teams/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_no_num_teams test_num_teams",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/09_invariant_computations/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_loop_invariant test_no_loop_invariant",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/10_map/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_map_tofrom test_map_to_or_from",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/11_device_alloc/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_declare_target test_map_alloc test_map_to test_target_alloc",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/21_omp_target_alloc/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_omp_target_alloc test_omp_target_alloc_device test_omp_target_alloc_host test_omp_target_alloc_shared test_omp_target_memcpy test_target_map test_target_map2",
3838
"make test_omp_target_alloc_device_f test_omp_target_alloc_host_f test_omp_target_alloc_shared_f test_target_map_f test_target_map2_f",

Publications/GPU-Opt-Guide/OpenMP/22_mkl_dispatch/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make dgemm_target_variant_dispatch_c dgemm_dispatch_c dgemm_example_01 dgemm_example_02 dgemm_example_03 dgemm_batch_example_01 dgemm_batch_example_02 dgemm_dispatch_f",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/22_mkl_pad/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make dgemm_pad_c_01 dgemm_pad_f_01",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/23_omp_work_group/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test_omp_work_group",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/24_device_ptr_addr_clauses/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make c_is_device_ptr_01 c_use_device_ptr_01 f_has_device_addr_01 f_use_device_addr_01",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/25_NWChem_based_example_1/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test-Map-UpdateTo",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/25_NWChem_based_example_2/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make ",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/25_NWChem_based_example_3/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make test-HostMem-DeviceMem-Map-UpdateTo",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/26_omp_prefetch/c/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../../build || true",
34+
"mkdir ../../../build",
35+
"cd ../../../build",
3636
"cmake ..",
3737
"make nbody_c",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/26_omp_prefetch/c_simd/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../../build || true",
34+
"mkdir ../../../build",
35+
"cd ../../../build",
3636
"cmake ..",
3737
"make nbody_c_simd",
3838
"make clean"

Publications/GPU-Opt-Guide/OpenMP/26_omp_prefetch/fortran/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../../build || true",
34+
"mkdir ../../../build",
35+
"cd ../../../build",
3636
"cmake ..",
3737
"make nbody_f",
3838
"make clean"

Publications/GPU-Opt-Guide/explicit-scaling/01_memory_order/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make memory_order",
3838
"make clean"

Publications/GPU-Opt-Guide/explicit-scaling/07_explicit_subdevice/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make explicit_subdevice",
3838
"make clean"

Publications/GPU-Opt-Guide/explicit-scaling/13_openmp_explicit_subdevice/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make openmp_explicit_subdevice",
3838
"make clean"

Publications/GPU-Opt-Guide/explicit-scaling/14_explicit_subsubdevice/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../build || true",
34+
"mkdir ../../build",
35+
"cd ../../build",
3636
"cmake ..",
3737
"make ccs",
3838
"make clean"

Publications/GPU-Opt-Guide/grf-mode-selection/perf/large/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../../build || true",
34+
"mkdir ../../../build",
35+
"cd ../../../build",
3636
"cmake ..",
3737
"make ax-static-large",
3838
"make clean"

Publications/GPU-Opt-Guide/grf-mode-selection/perf/small/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"linux": [
3131
{
3232
"steps": [
33-
"rm -rf ../build || true",
34-
"mkdir ../build",
35-
"cd ../build",
33+
"rm -rf ../../../build || true",
34+
"mkdir ../../../build",
35+
"cd ../../../build",
3636
"cmake ..",
3737
"make ax-static-small",
3838
"make clean"

0 commit comments

Comments
 (0)