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
There is a stale PR attempt here #4907
Basically this (https://godbolt.org/z/v4Yfs91rP)
OpCapability Shader OpCapability Linkage OpMemoryModel Logical GLSL450 %uint = OpTypeInt 32 0 %float = OpTypeFloat 32 %uint_1 = OpConstant %uint 1 %float_1 = OpConstant %float 1 %good = OpSpecConstantOp %float QuantizeToF16 %float_1 %bad1 = OpSpecConstantOp %uint QuantizeToF16 %float_1 %bad2 = OpSpecConstantOp %float QuantizeToF16 %uint_1
should throw an error, but doesn't
We need a way for OpSpecConstantOp to be validated
OpSpecConstantOp
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a stale PR attempt here #4907
Basically this (https://godbolt.org/z/v4Yfs91rP)
should throw an error, but doesn't
We need a way for
OpSpecConstantOp
to be validatedThe text was updated successfully, but these errors were encountered: