Allow TF32 in CUDA for increased performance #279
parent
11e648f6c7
commit
b70b51cc72
@ -0,0 +1,10 @@
|
|||||||
|
import sys
|
||||||
|
import traceback
|
||||||
|
|
||||||
|
|
||||||
|
def run(code, task):
|
||||||
|
try:
|
||||||
|
code()
|
||||||
|
except Exception as e:
|
||||||
|
print(f"{task}: {type(e).__name__}", file=sys.stderr)
|
||||||
|
print(traceback.format_exc(), file=sys.stderr)
|
||||||
Loading…
Reference in New Issue