(X, W)
| 34 | #return Tensor.cat(*[x.to(Device.DEFAULT) for x in Os], dim=1) # TODO: someday we can remove this copy too |
| 35 | |
| 36 | def matmul(X, W): |
| 37 | return explicit_shard_W_axis_1(X, W) |
| 38 | #return X@W |
| 39 | |
| 40 | if __name__ == "__main__": |
| 41 | with Timing("init devices: "): |
no test coverage detected
searching dependent graphs…