remove float64 check

This commit is contained in:
George Hotz
2020-10-22 20:27:21 -07:00
parent 65f3a9d499
commit 1d612f17ce

View File

@@ -17,7 +17,8 @@ class Tensor:
print("error constructing tensor with %r" % data)
assert(False)
if data.dtype == np.float64:
print("are you sure you want float64 in %r?" % data)
#print("are you sure you want float64 in %r?" % data)
pass
self.data = data
self.grad = None