Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 456 for test_1 (0.11 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_pass_instrumentation_test.cc

            absl::StrContains(ops_seen_by_pass_[pass],
                              kTestInstrumentationSearch)) {
          test_->SetPassThatChangedIdentity(pass->getName().str());
        }
      }
    
     private:
      TestPassInstrumentation* test_;
      std::unordered_map<mlir::Pass*, std::string> ops_seen_by_pass_;
    };
    
    TEST_F(TestPassInstrumentation, CreatedCalledAndSetsPassName) {
      RegisterPassInstrumentor(kTestInstrumentationName, [&]() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    class BaseTest : public ::testing::Test {
      // You can inherit all the usual members for a non-parameterized test
      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized 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)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // This header implements typed tests and type-parameterized tests.
    
    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // This header implements typed tests and type-parameterized tests.
    
    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/test.go

    					// Actual function libraries must not break backward compatibility
    					return types.False
    				}))))
    		options = append(options, cel.Function("testV1",
    			cel.Overload("testV1", []*cel.Type{}, cel.BoolType,
    				cel.FunctionBinding(func(args ...ref.Val) ref.Val {
    					return types.True
    				}))))
    	}
    	return options
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    svn propset svn:date 2017-09-27T17:48:18.350817Z --revprop -r4
    
    cd git-README-only
    git remote set-url origin https://vcs-test.golang.org/git/README-only
    cd ..
    replace 'vcs-test.swtch.com' 'vcs-test.golang.org' other/pkg.go
    replace 'vcs-test.swtch.com' 'vcs-test.golang.org' pkg.go
    svn commit -m 'move from vcs-test.swtch.com to vcs-test.golang.org'
    svn propset svn:author rsc --revprop -r5
    svn propset svn:date 2017-10-04T15:08:26.291877Z --revprop -r5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad_test.cc

      Scope root_;
    };
    
    TEST_F(MathGradTest, MatMulGrad_NoTranspose) {
      TestMatMulGrad<float>(false, false);
    }
    
    TEST_F(MathGradTest, MatMulComplexGrad_NoTranspose) {
      TestMatMulGrad<complex64>(false, false);
    }
    
    TEST_F(MathGradTest, MatMulGrad_TransposeX) {
      TestMatMulGrad<float>(true, false);
    }
    
    TEST_F(MathGradTest, MatMulComplexGrad_TransposeX) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    	}
    
    	// initiate a sync with all pods remaining
    	state := podWorkers.SyncKnownPods([]*v1.Pod{
    		newNamedPod("1-normal", "test1", "pod1", false),
    		newNamedPod("2-static", "test1", "pod1", true),
    		newNamedPod("3-static", "test1", "pod1", true),
    		newNamedPod("4-static", "test1", "pod1", true),
    	})
    	drainAllWorkers(podWorkers)
    
    	// 2-static and 3-static should both be listed as terminated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad_test.cc

    }
    
    TEST_F(ArrayGradTest, UnstackGrad_Axis1) {
      TensorShape x_shape({4, 2, 3});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      // Unstacking the second dimension results in 2 outputs.
      std::vector<TensorShape> y_shapes(2, TensorShape({4, 3}));
      auto y = Unstack(scope_, x, 2, Unstack::Axis(1));
      RunTest({x}, {x_shape}, y.output, y_shapes);
    }
    
    TEST_F(ArrayGradTest, IdentityGrad) {
      TensorShape shape({5, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top