Make asmjs-ubench native harness report scores in ms.
This commit is contained in:
Родитель
5146c56e35
Коммит
39ba42121a
|
@ -43,7 +43,7 @@ def BenchmarkNative(options, args):
|
|||
before = os.times()[4]
|
||||
subprocess.check_call(['./run-' + benchmark, RunFactor], stdout=fp)
|
||||
after = os.times()[4]
|
||||
print(benchmark + ' - ' + str(after - before))
|
||||
print(benchmark + ' - ' + str((after - before) * 1000)
|
||||
|
||||
def Exec(vec):
|
||||
o = subprocess.check_output(vec, stderr=subprocess.STDOUT)
|
||||
|
|
Загрузка…
Ссылка в новой задаче