xref: /llvm-project/mlir/lib/Target/SPIRV/Deserialization/Deserialization.cpp (revision 41bc54cc56fd9e9cdaaeb9ca630f0c690e1a28e4)
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 using namespace mlir;
14 
deserialize(ArrayRef<uint32_t> binary,MLIRContext * context)15 OwningOpRef<spirv::ModuleOp> spirv::deserialize(ArrayRef<uint32_t> binary,
16                                                 MLIRContext *context) {
17   Deserializer deserializer(binary, context);
18 
19   if (failed(deserializer.deserialize()))
20     return nullptr;
21 
22   return deserializer.collect();
23 }
24