ziyuhuang123

Results 61 issues of ziyuhuang123

1. Add several .github/workflows/yml file to implement auto check function on example files. > - While a new PR is submitted, if the example folder has been changed, the corresponding...

# Issue Number Fixed #2378 # What does this PR do? Previously the README.md in examples folder will also trigger checking and then trigger an error. This is not needed....

### 🐛 Describe the bug This should be skipped and will never trigger any bug. ### Environment _No response_

bug

### 🐛 Describe the bug I am using > conda env create -f environment.yaml > conda activate ldm and I meet this: ModuleNotFoundError: No module named '_posixsubprocess' ### Environment _No...

bug

### 🐛 Describe the bug Option 2: Use Docker Mandatory, mount your prepared data to /data/scratch via -v :/data/scratch, where you need to replace with the actual data path on...

bug

I see this in example code: https://github.com/NVIDIA/cutlass/blob/main/examples/cute/tutorial/sgemm_nt_1.cu So I wonder is there any other legal layout? // Define block sizes (static) auto bM = Int{}; auto bN = Int{}; auto...

question

``` TiledMMA tiled_mma; auto thr_mma = tiled_mma.get_slice(threadIdx.x); auto tAgA = thr_mma.partition_A(gA); // (MMA, MMA_M, MMA_K, num_tile_k) auto tBgB = thr_mma.partition_B(gB); // (MMA, MMA_N, MMA_K, num_tile_k) auto tCgC = thr_mma.partition_C(gC); //...

question
? - Needs Triage
inactive-30d
CuTe

I see this from a blog, I am not sure whether it is correct, and I am also very interested in detailed make_tensor function usage. By the way, shared memory,...

question
inactive-30d
inactive-90d
CuTe

Now I have tCrC, and I want to store them into shared memory. Can copy function do that? Thanks!

feature request
inactive-30d
CuTe

auto gA = local_tile(mA, blk_shape, blk_coord, Step{}); // (BLK_M,BLK_K,k) I am learning this line in example code: https://github.com/NVIDIA/cutlass/blob/main/examples/cute/tutorial/sgemm_nt_1.cu How we get this? By the way, I print it out, size...

question
inactive-30d
inactive-90d
CuTe