Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 695 for test_1 (0.2 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      else
        return &tmp_dir;
    }
    
    namespace tensorflow {
    namespace {
    
    // TODO(vnvo2409): Refactor `gcs_filesystem_test` to remove unnecessary tests
    // after porting all tests from
    // `//tensorflow/core/platform/cloud:gcs_file_system_test`.
    class GCSFilesystemTest : public ::testing::Test {
     public:
      void SetUp() override {
        root_dir_ = io::JoinPath(
            *GetTmpDir(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

        ASSERT_TRUE(errors::IsInvalidArgument(s));
      }
    };
    
    // Test for resource leaks related to TensorFlow session closing requirements
    // when loading and unloading large numbers of SavedModelBundles.
    // TODO(sukritiramesh): Increase run iterations and move outside of the test
    // suite.
    TEST_F(LoaderTest, ResourceLeakTest) {
      SavedModelBundleLite bundle;
      SessionOptions session_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/perception_ops_utils_test.cc

      std::unique_ptr<mlir::Builder> builder_;
    };
    
    TEST_F(PerceptionUtilsTest, VerifySignatureValid) {
      mlir::TFL::ConvertMaxUnpoolingFunc convert(fused_max_unpooling_func_,
                                                 func_attr_);
    
      EXPECT_FALSE(failed(convert.VerifySignature()));
    }
    
    TEST_F(PerceptionUtilsTest, VerifySignatureInvalid) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

    using ::testing::StrictMock;
    
    class RematTest : public ::testing::Test {
     protected:
      class TestableRematerializer : public Rematerializer {
       public:
        using Rematerializer::AddOperation;
        using Rematerializer::AddTensor;
        using Rematerializer::AddUse;
        using Rematerializer::DelUse;
        using Rematerializer::Remat;
      };
      TestableRematerializer r_;
    };
    
    TEST_F(RematTest, TensorUseSimple) {
      for (int i = 0; i < 6; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. src/runtime/pprof/testdata/test32

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 528 bytes
    - Viewed (0)
  7. src/runtime/pprof/testdata/test64

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 760 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import_test.cc

    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::testing::IsEmpty;
    using ::testing::Pair;
    using ::testing::UnorderedElementsAre;
    
    using UpdateFunctionAliasesTest = ::mlir::quant::QuantizationTestBase;
    
    TEST_F(UpdateFunctionAliasesTest, NoAliasesReturnsEmptyMap) {
      // MLIR @main function corresponds to the TF function "main_original".
      OwningOpRef<ModuleOp> module_op = ParseModuleOpString(R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

      EXPECT_EQ(tf2xla_fallback_count, 322);
      EXPECT_EQ(non_categorized_count, 428);
    }
    
    // Just a counter test to see which ops have duplicate lowerings. This isn't a
    // correctness test versus a test to easily ensure the op registry is kept
    // in sync.
    TEST_F(LegalizationOpConfigTest, CountTypesWhichHaveBothMlirAndTf2xlaFallback) {
      int double_lowering_count = 0;
    
      DialectRegistry dialect_registry;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessorTest.groovy

            then:
            1 * factory.create() >> delegate
            then:
            1 * delegate.startProcessing(resultProcessor)
            then:
            1 * delegate.processTestClass(test1)
            0 * _._
        }
    
        def 'ends processing on delegate processor on nth test'() {
            when:
            processor.startProcessing(resultProcessor)
            processor.processTestClass(test1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top