Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tf_xla_check_cluster_input_numerics (0.55 sec)

  1. tensorflow/compiler/jit/flags.cc

                "If true then insert Print nodes to print out values produced by "
                "XLA clusters."),
           Flag("tf_xla_check_cluster_input_numerics",
                &build_ops_flags->tf_xla_check_cluster_input_numerics,
                "If true then insert CheckNumerics nodes to check all cluster "
                "inputs."),
           Flag("tf_xla_check_cluster_output_numerics",
    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

      // clusters.  Useful for debugging.
      bool tf_xla_print_cluster_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool tf_xla_check_cluster_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool tf_xla_check_cluster_output_numerics;
    
    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/build_xla_ops_pass.cc

      DebuggingOpts debugging_opts;
      debugging_opts.print_outputs = flags.tf_xla_print_cluster_outputs;
      debugging_opts.check_input_numerics =
          flags.tf_xla_check_cluster_input_numerics;
      debugging_opts.check_output_numerics =
          flags.tf_xla_check_cluster_output_numerics;
    
      VLOG(1) << "print_outputs = " << debugging_opts.print_outputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top