Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Erfinv (0.14 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Ceil", Func, 0},
    		{"Copysign", Func, 0},
    		{"Cos", Func, 0},
    		{"Cosh", Func, 0},
    		{"Dim", Func, 0},
    		{"E", Const, 0},
    		{"Erf", Func, 0},
    		{"Erfc", Func, 0},
    		{"Erfcinv", Func, 10},
    		{"Erfinv", Func, 10},
    		{"Exp", Func, 0},
    		{"Exp2", Func, 0},
    		{"Expm1", Func, 0},
    		{"FMA", Func, 14},
    		{"Float32bits", Func, 0},
    		{"Float32frombits", Func, 0},
    		{"Float64bits", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. RELEASE.md

            eagerly.
        *   Added complex128 support to `RFFT`, `RFFT2D`, `RFFT3D`, `IRFFT`,
            `IRFFT2D`, and `IRFFT3D`.
        *   Add `pfor` converter for `SelfAdjointEigV2`.
        *   Add `tf.math.ndtri` and `tf.math.erfinv`.
        *   Add `tf.config.experimental.enable_mlir_bridge` to allow using MLIR
            compiler bridge in eager model.
        *   Added support for MatrixSolve on Cloud TPU / XLA.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_ErfinvOp : TF_Op<"Erfinv", [Pure]> {
      let summary = "";
    
      let arguments = (ins
        TF_FloatTensor:$x
      );
    
      let results = (outs
        TF_FloatTensor:$y
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VPKSWUS:        "vpkswus",
    	VPKUHUM:        "vpkuhum",
    	VPKUHUS:        "vpkuhus",
    	VPKUWUM:        "vpkuwum",
    	VPKUWUS:        "vpkuwus",
    	VREFP:          "vrefp",
    	VRFIM:          "vrfim",
    	VRFIN:          "vrfin",
    	VRFIP:          "vrfip",
    	VRFIZ:          "vrfiz",
    	VRLB:           "vrlb",
    	VRLH:           "vrlh",
    	VRLW:           "vrlw",
    	VRSQRTEFP:      "vrsqrtefp",
    	VSEL:           "vsel",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top