Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tf_xla_disable_constant_folding (0.78 sec)

  1. tensorflow/compiler/jit/flags.cc

                &build_ops_flags->tf_xla_check_cluster_output_numerics,
                "If true then insert CheckNumerics nodes to check all cluster "
                "outputs."),
           Flag("tf_xla_disable_constant_folding",
                &build_ops_flags->tf_xla_disable_constant_folding,
                "If true then disables constant folding on TF graph before XLA "
                "compilation."),
           Flag("tf_xla_disable_full_embedding_pipelining",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_experimental.cc

    unsigned char TF_GetXlaConstantFoldingDisabled() {
      return static_cast<unsigned char>(
          tensorflow::GetBuildXlaOpsPassFlags()->tf_xla_disable_constant_folding);
    }
    
    void TF_SetXlaConstantFoldingDisabled(unsigned char should_enable) {
      tensorflow::GetBuildXlaOpsPassFlags()->tf_xla_disable_constant_folding =
          static_cast<bool>(should_enable);
    }
    
    void TF_SetXlaMinClusterSize(int size) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

      bool tf_xla_check_cluster_output_numerics;
    
      // Disables all constant folding. The primary use for this is for testing to
      // guarantee that tests are run on XLA and not on TF's CPU implementation.
      bool tf_xla_disable_constant_folding;
    
      // Disables full embedding pipelining when true. Instead, strict SparseCore
      // TensorCore sequencing will be used.
      bool tf_xla_disable_full_embedding_pipelining;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            // disallow any sort of constant folding on Variant nodes for now.
            bool disable_constant_folding =
                GetBuildXlaOpsPassFlags()->tf_xla_disable_constant_folding;
            auto cf_consider_fn = [disable_constant_folding](const Node* n) {
              if (disable_constant_folding) return false;
              for (const auto& output_arg : n->op_def().output_arg()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top