Home
last modified time | relevance | path

Searched refs:binarySize (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/mlir/unittests/Dialect/SPIRV/
H A DSerializationTest.cpp86 auto binarySize = binary.size(); in scanInstruction() local
90 while (currOffset < binarySize) { in scanInstruction()
92 if (!wordCount || (currOffset + wordCount > binarySize)) in scanInstruction()
/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializeOps.cpp79 auto binarySize = binary.size(); in sliceInstruction() local
80 if (curOffset >= binarySize) { in sliceInstruction()
96 if (nextOffset > binarySize) in sliceInstruction()
H A DDeserializer.cpp74 auto binarySize = binary.size(); in deserialize() local
75 while (curOffset < binarySize) { in deserialize()
85 assert(curOffset == binarySize && in deserialize()
/llvm-project-15.0.7/mlir/lib/Conversion/GPUToVulkan/
H A DConvertLaunchFuncToVulkanCalls.cpp386 Value binarySize = builder.create<LLVM::ConstantOp>( in translateVulkanLaunchCall() local
397 ValueRange{vulkanRuntime, ptrToSPIRVBinary, binarySize}); in translateVulkanLaunchCall()
/llvm-project-15.0.7/mlir/tools/mlir-vulkan-runner/
H A DVulkanRuntime.h223 uint32_t binarySize{0};
H A DVulkanRuntime.cpp62 binarySize = size; in setShaderModule()
111 if (!binarySize || !binary) { in initRuntime()
569 shaderModuleCreateInfo.codeSize = binarySize; in createShaderModule()