Add dependencies for standard ops to SPIR-V conversion

PiperOrigin-RevId: 257026374
This commit is contained in:
Lei Zhang 2019-07-08 11:56:16 -07:00 committed by jpienaar
parent 504d58affe
commit 891a7911c2
2 changed files with 5 additions and 1 deletions

View File

@ -17,4 +17,7 @@ target_link_libraries(MLIRSPIRVConversion
MLIRPass
MLIRSPIRV
MLIRSupport
MLIRTransformUtils)
MLIRTransformUtils
MLIRSPIRV
MLIRStandardOps
)

View File

@ -25,6 +25,7 @@
#include "mlir/IR/StandardTypes.h"
#include "mlir/SPIRV/Passes.h"
#include "mlir/SPIRV/SPIRVOps.h"
#include "mlir/StandardOps/Ops.h"
namespace mlir {
#include "StdOpsToSPIRVConversion.cpp.inc"