Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for STABLEHLO_ (0.08 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

    }
    
    }  // namespace
    
    bool mlir::IsStablehloOp(const tflite::OperatorCodeT& op_code) {
      llvm::StringRef op_name(
          tflite::EnumNameBuiltinOperator(tflite::GetBuiltinCode(&op_code)));
      return op_name.starts_with("STABLEHLO_");
    }
    
    std::string mlir::GetMlirOpNameFromOpCode(
        const tflite::OperatorCodeT& op_code) {
      auto builtin_code = tflite::GetBuiltinCode(&op_code);
      if (builtin_code == tflite::BuiltinOperator_IF) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

      UNSORTED_SEGMENT_SUM = 155,
      ATAN2 = 156,
      UNSORTED_SEGMENT_MIN = 157,
      SIGN = 158,
      BITCAST = 159,
      BITWISE_XOR = 160,
      RIGHT_SHIFT = 161,
      // All Operators start with STABLEHLO_ prefixes are subject to change
      // Many of the ops below can not be executed by TFlite runtime
      STABLEHLO_LOGISTIC = 162, // WARNING: Do not have runtime support
      STABLEHLO_ADD = 163,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top