Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateLiftHashTableOpsAsArgsPass (0.41 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

          signalPassFailure();
          return;
        }
      }
    }
    
    static PassRegistration<LiftHashTableOpsAsArgsPass> pass;
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateLiftHashTableOpsAsArgsPass() {
      return std::make_unique<LiftHashTableOpsAsArgsPass>();
    }
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

        pm.addNestedPass<mlir::func::FuncOp>(
            mlir::quant::CreateDuplicateShapeDeterminingConstantsPass());
      }
    
      pm.addPass(mlir::quant::CreateInsertMainFunctionPass());
      pm.addPass(mlir::quant::CreateLiftHashTableOpsAsArgsPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateFunctionalToExecutorDialectConversionPass());
      pm.addPass(mlir::CreateBreakUpIslandsPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // the same underlying resource. This is not true in the eager execution mode.
    // Lifting resource ops as arguments will help unifying them across functions.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLiftHashTableOpsAsArgsPass();
    
    // Creates a pass that merges duplicate resource ops in each function. Two
    // resource ops are considered duplicated if they have the same `shared_name`.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top