Reformat python

This commit is contained in:
Alejandro Saucedo 2022-03-02 10:11:35 +00:00
parent 3885b8f6fc
commit 1788a217db
4 changed files with 0 additions and 4 deletions

View file

@ -284,4 +284,3 @@ def test_mgr_utils():
assert len(devices) > 0
assert "device_name" in devices[0]

View file

@ -100,4 +100,3 @@ def test_logistic_regression():
assert tensor_w_in.data()[0] > 0.0
assert tensor_w_in.data()[1] > 1.5
assert tensor_b_in.data()[0] < 0.7

View file

@ -230,4 +230,3 @@ def test_tensor_numpy_ownership():
m.destroy()
assert td.base.is_init() == False

View file

@ -5,4 +5,3 @@ def compile_source(source):
open("tmp_kp_shader.comp", "w").write(source)
os.system("glslangValidator -V tmp_kp_shader.comp -o tmp_kp_shader.comp.spv")
return open("tmp_kp_shader.comp.spv", "rb").read()