Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Dy (0.03 sec)

  1. tensorflow/c/c_api.cc

                         TF_Output* dx, TF_Status* status, TF_Output* dy) {
      TF_AddGradientsWithPrefix(g, nullptr, y, ny, x, nx, dx, status, dy);
    }
    
    void TF_AddGradientsWithPrefix(TF_Graph* g, const char* prefix, TF_Output* y,
                                   int ny, TF_Output* x, int nx, TF_Output* dx,
                                   TF_Status* status, TF_Output* dy) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sat Oct 04 05:55:32 UTC 2025
    - 102.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

        // The expected graph looks like this if grad_inputs_provided.
        // If grad_inputs_provided is false, Const_0 will be a OnesLike op.
        //      ^             ^
        //    dy|           dx|        // MatMul Gradient Graph
        //      |             |
        //   MatMul_2      MatMul_1
        //   ^   ^          ^    ^
        //   |   |----------|    |
        //   |        ^          |
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Mon Nov 17 00:00:38 UTC 2025
    - 97K bytes
    - Viewed (0)
  3. lib/fips140/v1.1.0-rc1.zip

    section. y, err := new(field.Element).SetBytes(x) if err != nil { return nil, errors.New("edwards25519: invalid point encoding length") } // -x² + y² = 1 + dx²y² // x² + dx²y² = x²(dy² + 1) = y² - 1 // x² = (y² - 1) / (dy² + 1) // u = y² - 1 y2 := new(field.Element).Square(y) u := new(field.Element).Subtract(y2, feOne) // v = dy² + 1 vv := new(field.Element).Multiply(y2, d) vv = vv.Add(vv, feOne) // x = +√(u/v) xx, wasSquare := new(field.Element).SqrtRatio(u, vv) if wasSquare == 0 { return nil, errors.New("edwards25519:...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top