Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GTEST_SKIP (0.95 sec)

  1. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      TF_Status* status = TF_NewStatus();
      TFE_ContextOptions* opts = TFE_NewContextOptions();
      bool use_tfrt = GetParam();
      if (use_tfrt) {
        TFE_DeleteContextOptions(opts);
        TF_DeleteStatus(status);
        GTEST_SKIP();  // TODO(chky) : Enable this once TFRT is open sourced.
      }
    
      TFE_ContextOptionsSetTfrt(opts, use_tfrt);
    
      TFE_Context* ctx = TFE_NewContext(opts, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/tests/function_test.cc

      ASSERT_TRUE(absl::StrContains(v.status().message(), "No match"));
    }
    
    TEST_P(FunctionTest, IncorrectArityOfOutputSignatureFails) {
      if (UseTfrt()) {
        GTEST_SKIP() << "TFRT crashes if expected number of output tensors does not"
                        " match actual.";
      }
      impl::TaggedValueTensor x = CreateScalarTensor<float, TF_FLOAT>(2.0f);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/math_grad_test.cc

    }
    
    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();
    
      float A_vals[] = {1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f};
      int64_t A_dims[] = {3, 3};
      AbstractTensorHandlePtr A;
      {
        AbstractTensorHandle* A_raw;
    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