Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Ndtri (0.1 sec)

  1. tensorflow/cc/gradients/math_grad_test.cc

            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;
        TF_ASSERT_OK((ComputeGradientError<X_T, Y_T, float>(scope_, x, x_data, y,
    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

        // CHECK-NOT: tf.Erfinv
        %0 = "tf.Erfinv"(%input) : (tensor<4xf32>) -> tensor<4xf32>
        func.return %0 : tensor<4xf32>
      }
    
      // CHECK-LABEL: @ndtri
      func.func @ndtri(%input: tensor<4xf32>) -> tensor<4xf32> {
        // CHECK-NOT: tf.Ndtri
        %0 = "tf.Ndtri"(%input) : (tensor<4xf32>) -> tensor<4xf32>
        func.return %0 : tensor<4xf32>
      }
    
      // CHECK-LABEL: @fake_param
      func.func @fake_param() -> tensor<4xf32> {
    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. tensorflow/cc/gradients/math_grad.cc

      auto x = ConjugateHelper(grad_scope, op.input(0));
      // grad * sqrt(2 * pi) * exp(ndtri(x) ** 2 / 2)
      auto dx = Mul(
          grad_scope, Mul(grad_scope, grad, root_two_pi),
          Exp(grad_scope, Div(grad_scope, Square(grad_scope, op.output(0)), two)));
      grad_outputs->push_back(dx);
      return grad_scope.status();
    }
    REGISTER_GRADIENT_OP("Ndtri", NdtriGrad);
    
    Status LgammaGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Atan", "Atanh", "Ceil", "Cos", "Cosh", "Sin", "Exp", "Expm1",
                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
                "Lgamma", "Digamma",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&wscr;":                            "\U0001d4cc",
    	"&xcap;":                            "\u22c2",
    	"&xcirc;":                           "\u25ef",
    	"&xcup;":                            "\u22c3",
    	"&xdtri;":                           "\u25bd",
    	"&xfr;":                             "\U0001d535",
    	"&xhArr;":                           "\u27fa",
    	"&xharr;":                           "\u27f7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/html/entity.go

    		"wscr;":                            '\U0001D4CC',
    		"xcap;":                            '\U000022C2',
    		"xcirc;":                           '\U000025EF',
    		"xcup;":                            '\U000022C3',
    		"xdtri;":                           '\U000025BD',
    		"xfr;":                             '\U0001D535',
    		"xhArr;":                           '\U000027FA',
    		"xharr;":                           '\U000027F7',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_NdtriOp : TF_Op<"Ndtri", [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)
  8. 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)
Back to top