Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 119 for test1f (0.13 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. 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)
  3. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/error_codes.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    namespace {
    
    class SavedConcreteFunctionLoadingTest : public ::testing::Test {
     public:
      SavedConcreteFunctionLoadingTest()
          : device_mgr_(testing::CreateTestingDeviceMgr()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    using ::testing::ElementsAre;
    using ::testing::HasSubstr;
    using ::testing::Key;
    using ::testing::SizeIs;
    using ::tsl::testing::StatusIs;
    
    class CalibrationStatisticsSaverTest : public OpsTestBase {};
    
    TEST_F(CalibrationStatisticsSaverTest, MissingOutputPath) {
      std::vector<std::string> ids{"1"};
      std::vector<int32_t> calibration_methods{
          CalibrationOptions::CALIBRATION_METHOD_AVERAGE_MIN_MAX};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tensorflow/c/while_loop_test.cc

    //               "output(s)");
    // }
    
    // TODO(skyewm): test bad body output shape
    
    TEST_F(CApiWhileLoopTest, NullName) {
      Init(1);
      CreateCondGraph();
      params_->body_outputs[0] = params_->body_inputs[0];
      params_->name = nullptr;
      ExpectError(TF_INVALID_ARGUMENT, "TF_WhileParams `name` field is null");
    }
    
    TEST_F(CApiWhileLoopTest, WrongGraph) {
      Init(1);
      CreateCondGraph();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. samples/bookinfo/README.md

    ```
    
    Verify that expected image eg: `user1/examples-bookinfo-*:test1.0` is updated in `platform/kube/bookinfo*.yaml` files.
    
    ## Tests
    
    Test that the bookinfo samples work with the latest image eg: `user1/examples-bookinfo-*:test1.0` that you pushed.
    
    ```bash
    $ cd ../../
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/cluster/cluster_test.go

    							"fake",
    						},
    					},
    					{
    						Namespaces: []string{
    							"test",
    						},
    					},
    				},
    			},
    			true,
    		},
    		{
    			"tested include difference namespace not skip",
    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "in-test1",
    					Namespace: "test",
    					Labels: map[string]string{
    						"l3": "lv3",
    						"l4": "lv4",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            binary1.name >> "test1"
    
            expect:
            container.add(binary1)
            container.realizeNow()
            def p = container.getByName("test1")
    
            p.present
            p.get() == binary1
        }
    
        def "querying the result of get by name fails when not realized"() {
            def binary1 = Stub(SwiftBinary)
            binary1.name >> "test1"
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

    };
    
    // This should only have unit tests. End to end tests should be done with
    // FILECHECK and MLIR tests.
    class Tf2XlaRewriterTest : public ::testing::Test {
     public:
      void SetUp() override {
        tensorflow::XlaOpRegistry::RegisterCompilationKernels();
      }
    
      Status CreateMlirModule(std::string module_string = kMlirModuleStr) {
        TF_ASSIGN_OR_RETURN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util_test.cc

                                                       *func_library_);
      std::unique_ptr<RecursiveCompilabilityChecker> checker_;
      std::unique_ptr<ProcessFunctionLibraryRuntime> pflr_;
    };
    
    TEST_F(CompilabilityCheckUtilTest, CheckNonFunctionalNodes) {
      GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
      auto opts = builder.opts();
      Node* const0 = ops::SourceOp("InputFloatOp", opts);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
Back to top