Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ConverterErrorData (0.13 sec)

  1. tensorflow/compiler/mlir/lite/metrics/types_util.cc

        tflite::metrics::ConverterErrorData::ErrorCode error_code,
        const std::string& op_name, const Location& location) {
      using tflite::metrics::ConverterErrorData;
      ConverterErrorData error;
      if (!pass_name.empty()) {
        error.set_subcomponent(pass_name);
      }
    
      if (!error_message.empty()) {
        error.set_error_message(error_message);
      }
    
      if (!op_name.empty()) {
        error.mutable_operator_()->set_name(op_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

                "instead. See https://www.tensorflow.org/api_docs/python/tf/compat/"
                "v1/enable_control_flow_v2."),
            tflite::metrics::ConverterErrorData::ERROR_UNSUPPORTED_CONTROL_FLOW_V1);
        return mlir::failure();
      }
      return mlir::success();
    }
    
    mlir::LogicalResult GraphContainsStatefulPartitionedOp(mlir::ModuleOp module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                tflite::metrics::ConverterErrorData::ERROR_NEEDS_FLEX_OPS);
          } else {
            failed_custom_ops_[op_name].insert(op_desc);
            tfl::AttachErrorCode(
                inst->emitOpError("is neither a custom op nor a flex op"),
                tflite::metrics::ConverterErrorData::ERROR_NEEDS_CUSTOM_OPS);
          }
          return std::nullopt;
        }
    
    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