Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestMatMulGrad (0.19 sec)

  1. tensorflow/cc/gradients/math_grad_test.cc

    };
    
    TEST_F(MathGradTest, MatMulGrad_NoTranspose) {
      TestMatMulGrad<float>(false, false);
    }
    
    TEST_F(MathGradTest, MatMulComplexGrad_NoTranspose) {
      TestMatMulGrad<complex64>(false, false);
    }
    
    TEST_F(MathGradTest, MatMulGrad_TransposeX) {
      TestMatMulGrad<float>(true, false);
    }
    
    TEST_F(MathGradTest, MatMulComplexGrad_TransposeX) {
      TestMatMulGrad<complex64>(true, false);
    }
    
    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/c/experimental/gradients/math_grad_test.cc

      ASSERT_NO_FATAL_FAILURE(CompareNumericalAndAutodiffGradients(
          ExpModel, BuildGradModel(ExpModel, registry_),
          immediate_execution_ctx_.get(), {x.get()}, UseFunction()));
    }
    
    TEST_P(CppGradients, TestMatMulGrad) {
      // TODO(vnvo2409): Figure out why `gradient_checker` does not work very
      // well with `MatMul` and remove `TestMatMul*` in
      // `mnist_gradients_test` when done.
      GTEST_SKIP();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top