forked from tinygrad/tinygrad
gep tuple [run_process_replay] (#6495)
* gep tuple [run_process_replay] * no inf loop, that goes in expander * fix ops python * unbreak gep 0 * fix tests * fix tests * VECTORIZE/GEP * oops, broken
This commit is contained in:
@@ -127,7 +127,8 @@ class PythonProgram:
|
||||
for j in range(len(inp[0])): inp[0][j] = inp[1][j]
|
||||
ul[i] = inp[0]
|
||||
elif uop is UOps.GEP:
|
||||
ul[i] = inp[0][arg]
|
||||
assert len(arg) == 1
|
||||
ul[i] = inp[0][arg[0]]
|
||||
elif uop is UOps.WMMA:
|
||||
# here are the models for the WMMA instruction on the different hardware
|
||||
def wmma_helper(WARP_THREADS, K, NUM_A, NUM_B, NUM_C, a_elem, b_elem, c_map):
|
||||
|
||||
Reference in New Issue
Block a user