1/* Copyright 2021 The TensorFlow Authors. All Rights Reserved. 2 3Licensed under the Apache License, Version 2.0 (the "License"); 4you may not use this file except in compliance with the License. 5You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9Unless required by applicable law or agreed to in writing, software 10distributed under the License is distributed on an "AS IS" BASIS, 11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12See the License for the specific language governing permissions and 13limitations under the License. 14==============================================================================*/ 15 16#ifdef GET_SUPPORTED_OP_LIST 17#undef GET_SUPPORTED_OP_LIST 18 19// clang-format off 20 21// Unary Elementwise Ops 22lmhlo::AbsOp, lmhlo::CeilOp, lmhlo::FloorOp, lmhlo::ConvertOp, lmhlo::CosOp, 23lmhlo::ExpOp, lmhlo::LogOp, lmhlo::NegOp, lmhlo::RsqrtOp, lmhlo::SqrtOp, 24lmhlo::SignOp, lmhlo::TanhOp, 25 26// Binary Elementwise Ops 27lmhlo::AddOp, lmhlo::DivOp, lmhlo::MaxOp, lmhlo::MinOp, lmhlo::MulOp, 28lmhlo::RemOp, lmhlo::SubOp, lmhlo::AndOp, lmhlo::OrOp, lmhlo::CompareOp, 29lmhlo::PowOp, 30 31// Ternary Elementwise Ops 32lmhlo::SelectOp, 33 34// Other Ops 35lmhlo::ConstOp, 36lmhlo::RealDynamicSliceOp, 37lmhlo::DynamicBroadcastInDimOp, 38lmhlo::BroadcastInDimOp 39 40// clang-format on 41 42#endif 43