Files
rocm-systems/projects/rccl/tools/EmptyKernelTest/run.sh
T
Ameya Keshava Mallya 42d84317cf Add 'projects/rccl/' from commit '1f2f9f33bac3e8ecfd84c69af6063d7352c362fc'
git-subtree-dir: projects/rccl
git-subtree-mainline: 3fd8a0d393
git-subtree-split: 1f2f9f33ba
2025-12-11 20:46:05 +00:00

21 sor
351 B
Bash
Executable File

#!/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"