1 /* Copyright 2021 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 #ifndef TENSORFLOW_COMPILER_MLIR_TFRT_IR_TFRT_FALLBACK_ASYNC_H_ 16 #define TENSORFLOW_COMPILER_MLIR_TFRT_IR_TFRT_FALLBACK_ASYNC_H_ 17 18 #include "mlir/IR/Dialect.h" // from @llvm-project 19 #include "mlir/IR/OpDefinition.h" // from @llvm-project 20 #include "mlir/IR/OpImplementation.h" // from @llvm-project 21 #include "mlir/Interfaces/SideEffectInterfaces.h" // from @llvm-project 22 #include "tfrt/compiler/opdefs/tfrt_op_interfaces.h" // from @tf_runtime 23 #include "tfrt/compiler/opdefs/tfrt_traits.h" // from @tf_runtime 24 #include "tfrt/core_runtime/opdefs/traits.h" // from @tf_runtime 25 26 using namespace mlir; // NOLINT 27 28 namespace tfrt { 29 namespace fallback_async { 30 31 // Dialect for fallback async operations. 32 class FallbackAsyncDialect : public Dialect { 33 public: 34 explicit FallbackAsyncDialect(MLIRContext *context); getDialectNamespace()35 static StringRef getDialectNamespace() { return "tfrt_fallback_async"; } 36 }; 37 38 } // namespace fallback_async 39 } // namespace tfrt 40 41 #define GET_OP_CLASSES 42 #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.h.inc" 43 44 #endif // TENSORFLOW_COMPILER_MLIR_TFRT_IR_TFRT_FALLBACK_ASYNC_H_ 45