Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for check_numerics (0.25 sec)

  1. tensorflow/c/eager/gradients_test.cc

      ForwardOperation forward_op;
      Status s = Reset(check_numerics_op.get(), "CheckNumerics",
                       /*raw_device_name=*/nullptr, &forward_op);
      ASSERT_EQ(errors::OK, s.code()) << s.message();
      if (isa<TracingOperation>(check_numerics_op.get())) {
        s = dyn_cast<TracingOperation>(check_numerics_op.get())
                ->SetOpName("check_numerics");
        ASSERT_EQ(errors::OK, s.code()) << s.message();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass.cc

    namespace {
    struct DebuggingOpts {
      // If true, insert Print nodes to print every output from an XLA cluster.
      bool print_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool check_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool check_output_numerics;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

        // to cluster ControlTrigger because of how we use deadness analysis.
        bool allow_control_trigger = false;
    
        // Whether it is okay to "cluster" Assert and CheckNumerics by simply
        // removing them (they're not removed during clustering, but their
        // XlaOpKernel is a no-op kernel).  We avoid auto-clustering these ops so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.cc

                &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",
                &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",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/cc/gradients/array_grad_test.cc

      RunTest(x, shape, y, shape);
    }
    
    TEST_F(ArrayGradTest, CheckNumericsGrad) {
      TensorShape shape({5, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = CheckNumerics(scope_, x, "CheckNumerics failed");
      RunTest(x, shape, y, shape);
    }
    
    TEST_F(ArrayGradTest, ReshapeGrad) {
      TensorShape x_shape({5, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.td

    def ConvertArithConstToTfConst : Pat<
      (Arith_ConstantOp:$res DenseElementsAttr:$value),
      (TF_ConstOp $value),
      [(AnyStaticShapeTensor $res)]>;
    
    // Remove CheckNumerics op
    def RemoveCheckNumerics : Pat<
      (TF_CheckNumericsOp $arg, $msg),
      (replaceWithValue $arg)>;
    
    // Remove StopGradient op
    def RemoveStopGradient : Pat<
      (TF_StopGradientOp $arg),
      (replaceWithValue $arg)>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:24:59 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Example usage:
    
    ``` python
    a = tf.Variable(1.0)
    tf.debugging.check_numerics(a, message='')
    
    b = tf.Variable(np.nan)
    try:
      tf.debugging.check_numerics(b, message='Checking b')
    except Exception as e:
      assert "Checking b : Tensor had NaN values" in e.message
    
    c = tf.Variable(np.inf)
    try:
      tf.debugging.check_numerics(c, message='Checking c')
    except Exception as e:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad.cc

      string err_msg = strings::StrCat(
          "Not a number (NaN) or infinity (Inf) values detected in gradient. ",
          message);
      grad_outputs->push_back(CheckNumerics(scope, grad_inputs[0], err_msg));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("CheckNumerics", CheckNumericsGrad);
    
    Status ReshapeGrad(const Scope& scope, const Operation& op,
                       const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
Back to top