[Mlir-commits] [mlir] [mlir][SPIR-V] Add support for SPV_INTEL_long_composites extension (PR #195685)
Arseniy Obolenskiy
llvmlistbot at llvm.org
Tue May 5 22:09:48 PDT 2026
================
@@ -213,6 +213,42 @@ void Serializer::processCapability() {
{static_cast<uint32_t>(cap)});
}
+void Serializer::addLongCompositesCapability() {
+ if (longCompositesEmitted)
+ return;
+ longCompositesEmitted = true;
----------------
aobolensk wrote:
De-duplicated
As for the test, I have added it to SerializationTest.cpp
https://github.com/llvm/llvm-project/pull/195685
More information about the Mlir-commits
mailing list