Bug Fix - remove cp ptx file command in gpu burn test (#567)

**Description**
remove cp ptx file in gpu burn test since the command is run inside
self.args.bin_dir dir.


d246bab430/superbench/benchmarks/micro_benchmarks/micro_base.py (L183)
This commit is contained in:
Yuting Jiang 2023-11-14 11:52:56 +08:00 коммит произвёл GitHub
Родитель ce3737f98b
Коммит c7800bb8e0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 1 добавлений и 9 удалений

Просмотреть файл

@ -66,12 +66,8 @@ class GpuBurnBenchmark(MicroBenchmarkWithInvoke):
if self._args.tensor_core:
command += ' -tc'
command += ' {} '.format(self._args.time)
# copy compare.ptx which needs to be in the working directory
compare_copy = 'cp ' + self._args.bin_dir + '/compare.ptx ./'
# remove compare.ptx from working directory
compare_rm = 'rm ' + 'compare.ptx'
self._commands.append(compare_copy + ' && ' + command + ' && ' + compare_rm)
self._commands.append(command)
return True

Просмотреть файл

@ -46,14 +46,10 @@ class GpuBurnBenchmarkTest(BenchmarkTestCase, unittest.TestCase):
assert (benchmark._args.tensor_core)
# Check command
compare_copy = 'cp ' + benchmark._args.bin_dir + '/compare.ptx ./'
compare_rm = 'rm ' + 'compare.ptx'
assert (1 == len(benchmark._commands))
assert (benchmark._commands[0].startswith(compare_copy))
assert ('-d' in benchmark._commands[0])
assert ('-tc' in benchmark._commands[0])
assert (str(time) in benchmark._commands[0])
assert (compare_rm in benchmark._commands[0])
# Check results
assert (benchmark._process_raw_result(0, results))