Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetArithmeticCountPass (0.16 sec)

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

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    struct GetArithmeticCountPass
        : public impl::GetArithmeticCountPassBase<GetArithmeticCountPass> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(GetArithmeticCountPass)
    
      void runOnOperation() override;
    };
    
    void GetArithmeticCountPass::runOnOperation() {
      auto func = getOperation();
      OpBuilder builder(func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      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"> {
      let summary = "Calculate arithmetic count for tfl operations.";
      let constructor = "CreateGetArithmeticCountPass()";
    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