Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Erfinv (0.19 sec)

  1. tensorflow/cc/gradients/math_grad_test.cc

            y = Angle(scope_, x);
            break;
          case LGAMMA:
            y = Lgamma(scope_, x);
            break;
          case ERF:
            y = Erf(scope_, x);
            break;
          case ERFINV:
            y = Erfinv(scope_, x);
            break;
          case NDTRI:
            y = Ndtri(scope_, x);
            break;
        }
    
        float max_error;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        %0, %1 = "tf.Unique"(%arg0) : (tensor<5xf32>) -> (tensor<?xf32>, tensor<?xi32>)
        func.return %0, %1 : tensor<?xf32> , tensor<?xi32>
      }
    
      // CHECK-LABEL: @erfinv
      func.func @erfinv(%input: tensor<4xf32>) -> tensor<4xf32> {
        // CHECK-NOT: tf.Erfinv
        %0 = "tf.Erfinv"(%input) : (tensor<4xf32>) -> tensor<4xf32>
        func.return %0 : tensor<4xf32>
      }
    
      // CHECK-LABEL: @ndtri
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. api/go1.10.txt

    pkg flag, method (*FlagSet) ErrorHandling() ErrorHandling
    pkg flag, method (*FlagSet) Name() string
    pkg flag, method (*FlagSet) Output() io.Writer
    pkg html/template, type Srcset string
    pkg math, func Erfcinv(float64) float64
    pkg math, func Erfinv(float64) float64
    pkg math, func Round(float64) float64
    pkg math, func RoundToEven(float64) float64
    pkg math/big, const MaxBase = 62
    pkg math/big, method (*Float) Sqrt(*Float) *Float
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.cc

        if (pos != string::npos) {
          result = result.substr(pos + 1);
        }
      }
      return result;
    }
    
    string GetFilename(StringPiece path) {
      size_t slash_pos = path.rfind('/');
      if (slash_pos == path.npos) slash_pos = -1;
      size_t dot_pos = path.rfind('.');
      return string(path.substr(slash_pos + 1, dot_pos - (slash_pos + 1)));
    }
    
    string ToGuard(StringPiece path) {
      string guard;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/metrics.cc

      return absl::StrCat(path, ":", singleprint);
    }
    
    absl::StatusOr<std::pair<std::string, std::string>>
    ParseSavedModelPathAndSingleprint(std::string path_and_singleprint) {
      size_t delimiter = path_and_singleprint.rfind(':');
      if (delimiter == std::string::npos) {
        return absl::InvalidArgumentError(
            "Invalid path_and_singleprint argument. Found no delimeter.");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_op_gen.cc

      TF_CHECK_OK(cc->Append(footer));
    
      TF_CHECK_OK(cc->Close());
      TF_CHECK_OK(h->Close());
    }
    
    string MakeInternal(const string& fname) {
      auto dot_pos = fname.rfind('.');
      if (dot_pos == string::npos) {
        return strings::StrCat(fname, "_internal");
      } else {
        return strings::StrCat(fname.substr(0, dot_pos), "_internal",
                               fname.substr(dot_pos));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top