Oguz Ulgen

Results 14 comments of Oguz Ulgen

@eellison For statically known function calls, I would have guessed the runtime is able to elide the extra cost but I guess this might be more the reason why we...

"No module named 'nvi'" means that there's a version mismatch. Are you able to run your triton code in eager mode (without torch.compile)?

@jeromeku looking at your relevant libraries, i see you have both triton and pytorch-triton installed, could you pip uninstall triton so that there's only one triton?

That's because ops is likely not defined in the `__init__.py`. If you add `from triton import ops` and then change `triton.ops.matmul` to `ops.matmul`, it makes progress, but then it runs...