Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WithParamInterface (0.24 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    // separately from Test and WithParamInterface. For example:
    
    class BaseTest : public ::testing::Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    // separately from Test and WithParamInterface. For example:
    
    class BaseTest : public ::testing::Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/nn_grad_test.cc

      TensorShape y_shape({1, 2, 3, 1});
      RunTest(x, x_init_value, y.output, y_shape);
    }
    
    class FusedBatchNormGradTest : public NNGradTest,
                                   public ::testing::WithParamInterface<
                                       std::tuple<bool, bool, TensorShape>> {};
    
    TEST_P(FusedBatchNormGradTest, FusedBatchNormV3Grad) {
      FusedBatchNormV3::Attrs attrs;
      attrs.is_training_ = std::get<0>(GetParam());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

      // the sum is always on the first dimension
      TensorShape y_shape({2, 4});
      RunTest({x}, {x_shape}, {y}, {y_shape});
    }
    
    class CumsumGradTest
        : public NaryGradTest,
          public ::testing::WithParamInterface<std::tuple<bool, bool, int>> {};
    
    TEST_P(CumsumGradTest, CumsumGrad) {
      int axis = std::get<2>(GetParam());
    
      TensorShape shape({2, 3, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
Back to top