Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DataTypeIsFloating (0.7 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

                                    .FirstN(1000)
                                    .Summarize(-1));
            new_output = print_op;
          }
    
          if (debugging_opts.check_output_numerics &&
              DataTypeIsFloating(new_output.type())) {
            ops::CheckNumerics check_numerics_op(
                s.WithOpName("check_output_", oidx)
                    .WithDevice(new_node->requested_device())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/math_grad.cc

    namespace {
    
    static Status SafeConj(AbstractContext* ctx, AbstractTensorHandle* const input,
                           AbstractTensorHandle** output, const char* name) {
      auto dtype = input->DataType();
      if (DataTypeIsFloating(BaseType(dtype)) ||
          DataTypeIsInteger(BaseType(dtype))) {
        return tensorflow::ops::Identity(ctx, input, output, name);
      } else if (!DataTypeIsComplex(BaseType(dtype)) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top