Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tf_xla_max_cluster_size (0.54 sec)

  1. tensorflow/compiler/jit/flags.cc

               "otherwise.  Experimental."),
          Flag("tf_xla_min_cluster_size",
               &mark_for_compilation_flags->tf_xla_min_cluster_size,
               "Minimum number of operators in an XLA compilation. Ignored for "
               "operators placed on an XLA device or operators explicitly marked "
               "for compilation."),
          Flag("tf_xla_max_cluster_size",
               &mark_for_compilation_flags->tf_xla_max_cluster_size,
    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/compiler/jit/flags.h

      // Minimum number of operators in an XLA compilation. Ignored for operators
      // placed on an XLA device or operators explicitly marked for compilation.
      int32 tf_xla_min_cluster_size;
    
      // Maximum number of operators in an XLA compilation.
      int32 tf_xla_max_cluster_size;
    
      // If non-empty, limit XLA clustering to the following TF operations.
      string tf_xla_ops_to_cluster;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      debug_options.deterministic_cluster_names =
          flags->tf_xla_deterministic_cluster_names;
      debug_options.max_cluster_size = flags->tf_xla_max_cluster_size;
      debug_options.min_cluster_size = flags->tf_xla_min_cluster_size;
      debug_options.fuel = GetPointerToFuel(flags->tf_xla_clustering_fuel);
      debug_options.dump_graphs = flags->tf_xla_clustering_debug;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_experimental.cc

        // false, it is safe to keep these flag values as is.
        tensorflow::MarkForCompilationPassFlags* flags =
            tensorflow::GetMarkForCompilationPassFlags();
        flags->tf_xla_cpu_global_jit = true;
        flags->tf_xla_min_cluster_size = 1;
      } else {
        optimizer_options->set_global_jit_level(tensorflow::OptimizerOptions::OFF);
      }
    }
    
    unsigned char TF_SetXlaEnableLazyCompilation(unsigned char enable) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top