Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CHECK_NOTNULL (0.18 sec)

  1. tensorflow/cc/framework/gradients_test.cc

        auto v = MatMul(scope, t, u);
        TF_ASSERT_OK(scope.status());
        CHECK_NOTNULL(v.node());
    
        auto x = Const(scope, {{5.0, 6.0}, {7.0, 8.0}});
        auto y = Const(scope, {{1.0, 0.0}, {0.0, 1.0}});
        auto z = MatMul(scope, x, y);
        TF_ASSERT_OK(scope.status());
        CHECK_NOTNULL(z.node());
    
        if (expected) {
          // Construct backward graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
Back to top