Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allow_custom_ops (0.23 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.h

      // bool emit_builtin_tflite_ops  -> !toco_flags.force_select_tf_ops()
      // bool emit_select_tf_ops       -> toco_flags.enable_select_tf_ops()
      // bool emit_custom_ops          -> toco_flags.allow_custom_ops()
      // bool allow_all_select_tf_ops  -> toco_flags.allow_all_select_tf_ops()
      // std::set<> select_user_tf_ops -> toco_flags.select_user_tf_ops()
      toco::TocoFlags toco_flags;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          enabled_op_types_.emplace(OpType::kTfliteBuiltin);
        }
        if (toco_flags.enable_select_tf_ops()) {
          enabled_op_types_.emplace(OpType::kSelectTf);
        }
        if (toco_flags.allow_custom_ops()) {
          enabled_op_types_.emplace(OpType::kCustomOp);
        }
        tf_dialect_ =
            module.getContext()->getOrLoadDialect<mlir::TF::TensorFlowDialect>();
        tfl_dialect_ = module.getContext()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top