Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for test_pvc (0.42 sec)

  1. tensorflow/cc/saved_model/experimental/tests/saved_model_api_test.cc

    // https://github.com/google/googletest/blob/dcc92d0ab6c4ce022162a23566d44f673251eee4/googletest/docs/advanced.md#value-parameterized-tests
    class CPPSavedModelAPITest : public ::testing::TestWithParam<bool> {};
    
    TEST_P(CPPSavedModelAPITest, LoadsSavedModelWithTags) {
      Status status;
      RuntimeBuilder builder;
      bool use_tfrt = GetParam();
      if (use_tfrt) {
        GTEST_SKIP();  // TODO(chky) : Enable this once TFRT is open sourced.
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 14 23:59:14 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/tests/tensor_test.cc

      return TaggedValue::Capsule(static_cast<void*>(ctx_raw), [](void* p) {
        tensorflow::internal::AbstractContextDeleter()(
            static_cast<AbstractContext*>(p));
      });
    }
    }  // namespace
    
    TEST_P(UnifiedCAPI, HoldTensors) {
      // Use the parametrized test parameters to make a context.
      AbstractContextPtr ctx;
      {
        AbstractContext* ctx_raw = nullptr;
        Status s =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

                    }
                }));
            }
        }
    
        @Override
        public TestLauncher withTestsFor(Action<TestSpecs> testSpec) {
            DefaultTestSpecs testSpecs = new DefaultTestSpecs();
            testSpec.execute(testSpecs);
            taskSpecs.addAll(testSpecs.getTestSpecs());
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractCrossVersionPerformanceTest.groovy

                    buildContext
            )
            runner.workingDir = temporaryFolder.testDirectory
            runner.current = new UnderDevelopmentGradleDistribution(buildContext)
            performanceTestIdProvider.testSpec = runner
        }
    
        CrossVersionPerformanceTestRunner getRunner() {
            runner
        }
    
        void applyDevelocityPlugin() {
            runner.addBuildMutator { invocationSettings ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    namespace internal {
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Outputs a message explaining invalid registration of different
    // fixture class for the same test case. This may happen when
    // TEST_P macro is used to define two tests with the same name
    // but in different namespaces.
    GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name,
                                              const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/gradients_test.cc

      }
    };
    
    Status RegisterGradients(GradientRegistry* registry) {
      TF_RETURN_IF_ERROR(RegisterNotDifferentiable(registry, "CheckNumerics"));
      return absl::OkStatus();
    }
    
    TEST_P(CppGradients, TestSetAttrString) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
      AbstractContextPtr ctx;
      {
        AbstractContext* ctx_raw = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_body_updates/test_tutorial001_py39.py

        assert response.json() == {
            "name": "Baz",
            "description": None,
            "price": 50.2,
            "tax": 10.5,
            "tags": [],
        }
    
    
    @needs_py39
    def test_put(client: TestClient):
        response = client.put(
            "/items/bar", json={"name": "Barz", "price": 3, "description": None}
        )
        assert response.json() == {
            "name": "Barz",
            "description": None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    namespace internal {
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // Outputs a message explaining invalid registration of different
    // fixture class for the same test case. This may happen when
    // TEST_P macro is used to define two tests with the same name
    // but in different namespaces.
    GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name,
                                              const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      }
      TensorType tensor_type_;
    };
    
    INSTANTIATE_TEST_SUITE_P(QuantizeConvModelTestInst, QuantizeConvModelTest,
                             testing::ValuesIn({TensorType_INT8}));
    
    TEST_P(QuantizeConvModelTest, QuantizationSucceeds) {
      auto status = QuantizeModelAllOperators(&model_, tensor_type_, tensor_type_,
                                              /*allow_float=*/false, tensor_type_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. tensorflow/c/eager/gradient_checker_test.cc

      }
    
      AbstractContextPtr ctx_;
    
     public:
      bool UseMlir() const { return strcmp(std::get<0>(GetParam()), "mlir") == 0; }
      bool UseFunction() const { return std::get<2>(GetParam()); }
    };
    
    TEST_P(GradientCheckerTest, TestMatMul) {
      float A_vals[] = {1.0f, 2.0f, 3.0f, 4.0f};
      int64_t A_dims[] = {2, 2};
      AbstractTensorHandlePtr A;
      {
        AbstractTensorHandle* A_raw;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 10:03:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top