Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getParams (0.57 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        model_ = UnPackFlatBufferModel(*readonly_model_);
      }
    };
    
    TEST_P(QuantizeCustomOpTest, VerifyMixedQuantization) {
      auto status = QuantizeModelAllOperators(&model_, GetParam(), GetParam(),
                                              /*allow_float=*/true, GetParam(),
                                              output_buffer_);
      ASSERT_THAT(status, Eq(kTfLiteOk));
      const auto& subgraph = model_.subgraphs[0];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   }
    //   virtual void SetUp() {
    //     // Can use GetParam() here.
    //   }
    //   virtual void TearDown {
    //     // Can use GetParam() here.
    //   }
    // };
    // TEST_P(FooTest, DoesBar) {
    //   // Can use GetParam() method here.
    //   Foo foo;
    //   ASSERT_TRUE(foo.DoesBar(GetParam()));
    // }
    // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
    
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
Back to top