mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-23 12:10:06 +00:00
380f36eae1
For the spec constants defined by OpSpecConstantOp and OpSpecContantComposite, if all of their operands are constants with determined values (normal constants whose values are fixed), calculate the correct values of the spec constants and re-define them as normal constants. In short, this pass replaces all the spec constants defined by OpSpecContantOp and OpSpecConstantComposite with normal constants when possible. So far not all valid operations of OpSpecConstantOp are supported, we have several constriction here: 1) Only 32-bit integer and boolean (both scalar and vector) are supported for any arithmetic operations. Integers in other width (like 64-bit) are not supported. 2) OpSConvert, OpFConvert, OpQuantizeToF16, and all the operations under Kernel capability, are not supported. 3) OpCompositeInsert is not supported. Note that this pass does not unify normal constants. This means it is possible to have new generatd constants defining the same values. |
||
---|---|---|
.. | ||
as | ||
cfg | ||
dis | ||
lesspipe | ||
opt | ||
val | ||
CMakeLists.txt | ||
io.h |