1 //===- Intrinsics.h - MLIR EDSC Intrinsics for SCF --------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM 4 // Exceptions. 5 // See https://llvm.org/LICENSE.txt for license information. 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 // 8 //===----------------------------------------------------------------------===// 9 #ifndef MLIR_DIALECT_SCF_EDSC_INTRINSICS_H_ 10 #define MLIR_DIALECT_SCF_EDSC_INTRINSICS_H_ 11 12 #include "mlir/Dialect/SCF/EDSC/Builders.h" 13 14 namespace mlir { 15 namespace edsc { 16 namespace intrinsics { 17 18 using loop_yield = OperationBuilder<scf::YieldOp>; 19 20 } // namespace intrinsics 21 } // namespace edsc 22 } // namespace mlir 23 24 #endif // MLIR_DIALECT_SCF_EDSC_INTRINSICS_H_ 25