cutile-python icon indicating copy to clipboard operation
cutile-python copied to clipboard

cuTile is a programming model for writing parallel kernels for NVIDIA GPUs

Results 19 cutile-python issues
Sort by recently updated
recently updated
newest added

### 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...

status: waiting-for-feedback
documentation

### 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...

status: triaged
documentation

### 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...

feature request
dep: cuda-tileir

### 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...

status: waiting-for-feedback
bug

### 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...

status: waiting-for-feedback
bug

### 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...

status: waiting-for-feedback
documentation

### 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:...

status: in-progress
bug

## 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...