cutile-python
cutile-python copied to clipboard
cuTile is a programming model for writing parallel kernels for NVIDIA GPUs
### How would you describe the priority of this documentation request? High ### Please provide a link or source to the relevant docs https://github.com/NVIDIA/cutile-python/blob/main/samples/MatMul.py ### Describe the problems in the...
### How would you describe the priority of this documentation request? High ### Please provide a link or source to the relevant docs https://github.com/NVIDIA/cutile-python/blob/main/samples/MatMul.py#L61-L65 ### Describe the problems in the...
### Is this a new feature, an improvement, or a change to existing functionality? New Feature ### How would you describe the priority of this feature request? Critical (currently preventing...
### Version 1.0.0 ### Version 13.1 ### Which installation method(s) does this occur on? Source ### Describe the bug. ``` test/test_cat.py Dumping TILEIR bytecode to file: 1/test_cat.ln92.cutile Can't print MLIR...
### Version 1.0.0 ### Version 13.0 Docker image followed by `apt update && apt upgrade` to install 13.1 libraries ### Which installation method(s) does this occur on? Pip ### Describe...
### How would you describe the priority of this documentation request? Critical (currently preventing usage) ### Please provide a link or source to the relevant docs https://docs.nvidia.com/cuda/cutile-python/performance.html ### Describe the...
### Version 1.0.0 ### Version 13.1 ### Which installation method(s) does this occur on? Source ### Describe the bug. class SliceType(Type): _instance = None def __new__(cls): if cls._instance is None:...
## Description Found the exception message in ct.cat not informative, made a minor enhance ## Checklist - [x] I am familiar with the [Contributing Guidelines](https://github.com/cutile-python/blob/HEAD/CONTRIBUTING.md). - [x] New or existing...
## Description **This semi-automated PR was generated with AI tools** Updates the README to focus on developer experience and broader adoption. By surfacing a self-contained "Hello World" example and simplifying...
This PR fixes an incorrect equality comparison in SliceType. Previously: __eq__ used isinstance(other, NoneType) This produced incorrect results for SliceType comparisons. Now: __eq__ correctly checks isinstance(other, SliceType) This resolves issue...