We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compiling this example:
func.func @matmul(%arg0: tensor<4096x4096xf32>, %arg1: tensor<4096x4096xf32>) -> tensor<4096x4096xf32> { %0 = tensor.empty() : tensor<4096x4096xf32> %cst = arith.constant 0.000000e+00 : f32 %1 = linalg.fill ins(%cst : f32) outs(%0 : tensor<4096x4096xf32>) -> tensor<4096x4096xf32> %2 = linalg.matmul ins(%arg0, %arg1 : tensor<4096x4096xf32>, tensor<4096x4096xf32>) outs(%1 : tensor<4096x4096xf32>) -> tensor<4096x4096xf32> return %2 : tensor<4096x4096xf32> }
fails with:
example.mlir:5:10: error: 'func.func' op uses 229376 bytes of shared memory; exceeded the limit of 166912 bytes
iree-compile --iree-hal-target-device=cuda --iree-cuda-target=sm_86
Compiler
f27feff
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
compiling this example:
fails with:
Steps to reproduce your issue
iree-compile --iree-hal-target-device=cuda --iree-cuda-target=sm_86
What component(s) does this issue relate to?
Compiler
Version information
f27feff
Additional context
No response
The text was updated successfully, but these errors were encountered: