Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for size_threshold_in_bytes_ (0.25 sec)

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

      explicit UnfreezeConstantsPass(const int64_t size_threshold_in_bytes)
          : size_threshold_in_bytes_(
                CreateSizeThresholdInBytesOption(size_threshold_in_bytes)) {}
    
      UnfreezeConstantsPass(const UnfreezeConstantsPass& other)
          : UnfreezeConstantsPass{} {
        size_threshold_in_bytes_ = other.size_threshold_in_bytes_.getValue();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

    // RUN: tf-quant-opt %s -quant-unfreeze-constants='size_threshold_in_bytes=16' \
    // RUN:     -allow-unregistered-dialect -mlir-disable-threading \
    // RUN:     -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests a case with one ConstOp and a tf_saved_model.session_initializer with an empty initializers.
    module attributes {tf_saved_model.semantics} {
    
      "tf_saved_model.session_initializer"() {initializers = []} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top