5ca67dc803
* Initial commit
* Improvements-1
* Initial commit for PR
* Updates warning, run.sh, decoupled loops
* Forcing seq cst for CPU timimg
[ROCm/rccl commit: 85baa0d113]
21 行
351 B
Bash
実行ファイル
21 行
351 B
Bash
実行ファイル
#!/bin/bash
|
|
make clean
|
|
make
|
|
echo -e "\n\n"
|
|
|
|
echo "# Test 1 : CPU Only"
|
|
./EmptyKernelTest 10 1 1 1 0
|
|
echo -e "\n\n"
|
|
|
|
echo "# Test 2 : GPU Only"
|
|
./EmptyKernelTest 10 1 1 0 1
|
|
echo -e "\n\n"
|
|
|
|
echo "# Test 3 : CPU and GPU"
|
|
./EmptyKernelTest 10 1 1 1 1 0
|
|
echo -e "\n\n"
|
|
|
|
echo "# Test 4 : Outer loop - CPU Only"
|
|
./EmptyKernelTest 10 1 1 0 0 1
|
|
echo -e "\n\n"
|