Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateImportQuantStatsPass (0.17 sec)

  1. tensorflow/compiler/mlir/lite/quantization/quantization_passes.h

    // the function. A custom method to get the name from the op is used because
    // different dialect ops might have different ways to assign the name.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateImportQuantStatsPass(
        OperationToName op_to_name, const std::string& stats_str);
    
    // Creates an instance pass to import quantization stats to the operations in
    // the function. A custom method to get the name from the op is used because
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

            break;
          }
        }
      });
    }
    
    // Creates an instance of the default quant parameters pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateImportQuantStatsPass(
        OperationToName op_to_name, const std::string &stats_str) {
      auto pass = std::make_unique<ImportQuantStatsPass>(op_to_name);
      if (pass->ParseQuantStats(stats_str)) return nullptr;
      return pass;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top