Files
rocm-systems/projects/rccl/tools/EmptyKernelTest/run.sh
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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"