Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TflRuntimeVerifyOpInterface (0.47 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

        >,
      ];
    }
    
    //===----------------------------------------------------------------------===//
    // TFL runtime type verification of operand/result types.
    
    def TFL_RuntimeVerification : OpInterface<"TflRuntimeVerifyOpInterface"> {
      let description = [{
        Interface to verify TFLite runtime op verification.
    
        This verifies that the converted TFLite ops has operand/result type
        supported by the TFLite runtime.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      target.addLegalOp<QConstOp>();
      if (run_tfl_runtime_verification_) {
        target.addDynamicallyLegalDialect<TensorFlowLiteDialect>([](Operation* op) {
          auto tfl_op = dyn_cast_or_null<TflRuntimeVerifyOpInterface>(op);
          if (!tfl_op) return false;
          return succeeded(tfl_op.VerifyTflRuntimeConstraints(
              op, /*emit_error_on_verify_fail=*/false));
        });
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top