Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RuntimeVerifyPass (0.12 sec)

  1. tensorflow/compiler/mlir/lite/transforms/runtime_verify.cc

    // This pass verifies that the TFL ops meet the TFL runtime constraints.
    class RuntimeVerifyPass
        : public impl::RuntimeVerifyPassBase<RuntimeVerifyPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(RuntimeVerifyPass)
    
      explicit RuntimeVerifyPass() {}
    
     private:
      void runOnOperation() override;
    };
    
    void RuntimeVerifyPass::runOnOperation() {
      getOperation().walk([&](TflRuntimeVerifyOpInterface op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      let constructor = "CreateReduceWhileOperandsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect", "TF::TensorFlowDialect"];
    }
    
    def RuntimeVerifyPass : Pass<"tfl-runtime-verify", "mlir::func::FuncOp"> {
      let summary = "TFLite runtime verification";
      let constructor = "CreateRuntimeVerifyPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top