1 //===- Deserialization.cpp - MLIR SPIR-V Deserialization ------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "mlir/Target/SPIRV/Deserialization.h" 10 11 #include "Deserializer.h" 12 13 namespace mlir { 14 spirv::OwningSPIRVModuleRef spirv::deserialize(ArrayRef<uint32_t> binary, 15 MLIRContext *context) { 16 Deserializer deserializer(binary, context); 17 18 if (failed(deserializer.deserialize())) 19 return nullptr; 20 21 return deserializer.collect(); 22 } 23 } // namespace mlir 24