cora-codes

Results 5 comments of cora-codes

@drisspg how should we resolve this for now on the extension side? `` cannot be used by C++ extensions.

Just documenting other issues that have came up: 1. I needed to manually install typing extentions, pyyaml and pybind11 (`uv add typing_extensions pyyaml pybind11`). I also installed ninja and cmake,...

Yes, I am very familiar with the complexity of building PyTorch. I guess I optimistically see a future where uv can build it from source (perhaps with some patches to...

Here is a reproduction @peterbell10. ```python import torch import triton import triton.language as tl @triton.jit def kernel_with_tensor_method( x_ptr, output_ptr, n_elements, BLOCK_SIZE: tl.constexpr, ): pid = tl.program_id(axis=0) offsets = pid *...

Following up here @peterbell10. Did you get a chance to run my repro?