Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 695 for test_1 (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

    #include "xla/shape.h"
    #include "xla/shape_util.h"
    #include "xla/tests/literal_test_util.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::testing::Test;
    
    class ConvertTfQuantToMhloIntTest : public Test {
     protected:
      void SetUp() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/auto_clustering_test.cc

        string file_name_without_extension =
            absl::StrCat(testing::TensorFlowSrcRoot(), "/compiler/jit/tests/", key);
    
        return AutoClusteringTest::RunAutoClusteringTestWithGzippedPbtxt(
            absl::StrCat(file_name_without_extension, ".pbtxt.gz"),
            absl::StrCat(file_name_without_extension, ".golden_summary"));
      }
    };
    
    TEST_F(AutoClusteringTestImpl, KerasImagenetMain) {
      // Generated from
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 13 20:13:03 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

                                                        GetShapeDeterminationFns());
    }
    
    class XlaCompilerOptionsTest : public ::testing::Test {
     protected:
      void SetUp() override {
        tensorflow::GetXlaDeviceFlags()->tf_xla_enable_xla_devices = true;
      }
    
      DeviceSetup device_setup_;
    };
    
    TEST_F(XlaCompilerOptionsTest, PjRtOptionsXlaDevice) {
      device_setup_.AddDevicesAndSetUp({DEVICE_XLA_GPU});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. test/ken/chan.go

    }
    
    // wait for outstanding tests to finish
    func wait() {
    	runtime.Gosched()
    	for changeNproc(0) != 0 {
    		runtime.Gosched()
    	}
    }
    
    // run all tests with specified buffer size
    func tests(c int) {
    	ca := mkchan(c, 4)
    	test1(ca[0])
    	test1(ca[1])
    	test1(ca[2])
    	test1(ca[3])
    	wait()
    
    	test2(c)
    	wait()
    
    	test3(c)
    	wait()
    
    	test4(c)
    	wait()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_clustering_pass_test.cc

    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    using mlir::mhlo::test::GetMlirModuleFromString;
    
    class VerifyClusteringPassTest : public testing::Test {
     protected:
      void CreateModule(const char* module_string) {
        TF_ASSERT_OK_AND_ASSIGN(module_,
                                GetMlirModuleFromString(module_string, &context_));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 17:03:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/util/tensor_bundle/tensor_bundle.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/status_matchers.h"
    
    namespace tensorflow {
    namespace quantization {
    namespace {
    
    using ::tensorflow::test::AsTensor;
    using ::tensorflow::test::ExpectEqual;
    using ::testing::IsEmpty;
    using ::testing::Not;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

    REGISTER_OP("StreamOp").Output("output1: float");
    
    TEST_F(DeviceKernelOpTest, TestStream) {
      auto my_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        TF_Status* s = TF_NewStatus();
        SP_Stream stream = TF_GetStream(ctx, s);
        // Stream is always null if device is not a pluggable device. More test
        // cases will be added when pluggable device mechanism is supported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    }  // namespace gtest_internal
    
    template <GTEST_$(n)_TYPENAMES_(T), GTEST_$(n)_TYPENAMES_(U)>
    inline bool operator==(const GTEST_$(n)_TUPLE_(T)& t,
                           const GTEST_$(n)_TUPLE_(U)& u) {
      return gtest_internal::SameSizeTuplePrefixComparator<
          tuple_size<GTEST_$(n)_TUPLE_(T) >::value,
          tuple_size<GTEST_$(n)_TUPLE_(U) >::value>::Eq(t, u);
    }
    
    template <GTEST_$(n)_TYPENAMES_(T), GTEST_$(n)_TYPENAMES_(U)>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_experimental_test.cc

      TF_DeleteFunction(funcs[0]);
    }
    
    TEST_F(CApiExperimentalFunctionTest, EmptyGraphRemoveNonExistentFunction) {
      TF_GraphRemoveFunction(func_graph_, "wrong_name", s_);
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s_));
      EXPECT_EQ(string("Tried to remove non-existent function 'wrong_name'."),
                string(TF_Message(s_)));
    }
    
    TEST_F(CApiExperimentalFunctionTest, GraphRemoveNonExistentFunction) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace mlir {
    namespace quant {
    namespace {
    
    using ::testing::NotNull;
    using ::testing::SizeIs;
    
    using ConstantFoldingTest = ::mlir::quant::QuantizationTestBase;
    
    TEST_F(ConstantFoldingTest, FoldLargeConstant) {
      constexpr absl::string_view kModuleCode = R"mlir(
        module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top