mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-02-14 00:25:10 -05:00
Fix up latest openpilot model (#1976)
* fix gemv triggering for gemm * fixup_openpilot * external test issues
This commit is contained in:
@@ -90,7 +90,7 @@ def check_gc():
|
||||
def derandomize(x):
|
||||
if isinstance(x, LazyOp):
|
||||
if x.op == LoadOps.RAND: x.op = LoadOps.EMPTY
|
||||
x.src = [derandomize(s) for s in x.src]
|
||||
x.src = tuple([derandomize(s) for s in x.src])
|
||||
else:
|
||||
x.op = derandomize(x.op)
|
||||
return x
|
||||
|
||||
Reference in New Issue
Block a user