Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateIdentifyDilatedConvPass (0.77 sec)

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

          &getContext());
      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    }
    }  // namespace
    std::unique_ptr<OperationPass<func::FuncOp>> CreateIdentifyDilatedConvPass() {
      return std::make_unique<IdentifyDilatedConvPass>();
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateDefaultQuantParamsPass();
    
    // Creates an instance of the IdentifyDilatedConvPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateIdentifyDilatedConvPass();
    
    // Creates an instance of the TensorFlow Lite dialect pass to convert dense
    // tensor to sparse format.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDenseToSparsePass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/passes.td

      ];
    }
    
    def IdentifyDilatedConvPass : Pass<"tfl-identify-dilated-conv", "mlir::func::FuncOp"> {
      let summary = "Convert dense tensor to sparse format.";
      let constructor = "CreateIdentifyDilatedConvPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def GetArithmeticCountPass : Pass<"tfl-get-arithmetic-count", "mlir::func::FuncOp"> {
    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