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
I realized it is better to create sub-issues than open multiple issues:
transpose(unary(...))
transpose(binary(...))
stablehlo.clamp
module { func.func @main(%arg0: tensor<2x2xf64>) -> tensor<2x2xf64> { %cst = stablehlo.constant dense<1.000000e+00> : tensor<2x2xf64> %cst_0 = stablehlo.constant dense<0.000000e+00> : tensor<2x2xf64> %0 = stablehlo.transpose %arg0, dims = [1, 0] : (tensor<2x2xf64>) -> tensor<2x2xf64> %1 = stablehlo.clamp %cst_0, %0, %cst : tensor<2x2xf64> %2 = stablehlo.transpose %1, dims = [1, 0] : (tensor<2x2xf64>) -> tensor<2x2xf64> return %2 : tensor<2x2xf64> } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I realized it is better to create sub-issues than open multiple issues:
transpose(unary(...))
Missing Transpose(Unary(...)) optimizations #213transpose(binary(...))
when op is used only in that binary op Missing Transpose of Binary Op optimization #210stablehlo.clamp
The text was updated successfully, but these errors were encountered: