Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tflRuntimeDescription (0.3 sec)

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

            continue;
          }
    
          auto *val = trait.getDef().getValue("tflRuntimePredicate");
          if (!val) continue;
    
          auto desc = trait.getDef().getValueAsString("tflRuntimeDescription");
    
          mlir::tblgen::Pred pred(dyn_cast<llvm::DefInit>(val->getValue()));
          os << tgfmt(
              "  if (!($0)) {\n    "
              "    if (emit_error_on_verify_fail) {\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // TFL Runtime op trait predicate.
    class TFL_RuntimePredOpTrait<string desc, Pred pred> :
        GenInternalOpTrait<"TFLRuntimeOpTrait"> {
      Pred tflRuntimePredicate = pred;
      string tflRuntimeDescription = desc;
    }
    
    class TFL_OperandsHaveSameShapesOrBroadcastableShape<
        list<int> indices, int max_bcast_rank> :
      TFL_RuntimePredOpTrait<"operands do not have the same shape or "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top