Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for test1f (0.1 sec)

  1. test/recover.go

    	test6WithClosures()
    	test7()
    	test8()
    	test9()
    	if !interp {
    		test9reflect1()
    		test9reflect2()
    	}
    	test10()
    	if !interp {
    		test10reflect1()
    		test10reflect2()
    	}
    	test11()
    	if !interp {
    		test11reflect1()
    		test11reflect2()
    	}
    	test111()
    	test12()
    	if !interp {
    		test12reflect1()
    		test12reflect2()
    	}
    	test13()
    	if !interp {
    		test13reflect1()
    		test13reflect2()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/events_test.go

    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test11",
    					Namespace: "foo",
    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "batch/v1",
    					Kind:       "Job",
    					Namespace:  "foo",
    				},
    			},
    			true,
    		},
    		{
    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test12",
    					Namespace: "foo",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types_test.cc

    using ::testing::IsNull;
    using ::testing::Ne;
    using ::testing::NotNull;
    using ::testing::Test;
    
    class CreateI8F32UniformQuantizedTypeTest : public Test {
     protected:
      CreateI8F32UniformQuantizedTypeTest() : ctx_() {
        ctx_.loadDialect<quant::QuantizationDialect>();
      }
    
      MLIRContext ctx_;
    };
    
    TEST_F(CreateI8F32UniformQuantizedTypeTest, I8StorageTypeSucceeds) {
      const UniformQuantizedType quantized_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/saved_model_bundle_test.cc

    };
    
    // 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) {
      SavedModelBundle bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      const string export_dir =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

      EXPECT_TRUE(failed(TryCast<DotGeneralOp>(nullptr, /*name=*/"nullptr")));
    }
    
    TEST_F(AttrsAndConstraintsTest, I64ValueInI32RangeAreCastedCorrectly) {
      EXPECT_TRUE(succeeded(CastI64ToI32(llvm::minIntN(32))));
      EXPECT_TRUE(succeeded(CastI64ToI32(llvm::maxIntN(32))));
    }
    
    TEST_F(AttrsAndConstraintsTest, CastingFailsForI64ValueOutOfI32Range) {
      EXPECT_TRUE(failed(CastI64ToI32(llvm::minIntN(32) - 10)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradients_test.cc

    TEST_F(StopGradientSingleOutputMultiEdgeTest, StopGradFirstEdge) {
      CheckGrad({true, false, false},
                test::AsTensor<int>({14, 16, 18, 20}, {2, 2}));
    }
    
    TEST_F(StopGradientSingleOutputMultiEdgeTest, StopGradSecondEdge) {
      CheckGrad({false, true, false},
                test::AsTensor<int>({10, 12, 14, 16}, {2, 2}));
    }
    
    TEST_F(StopGradientSingleOutputMultiEdgeTest, StopGradThirdEdge) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  9. tensorflow/cc/tools/freeze_saved_model_test.cc

    }
    
    TEST_F(FreezeTest, GraphDefWithoutDependentVariables) {
      TestFreezeGraphWithoutDependentVariables(false);
    }
    
    TEST_F(FreezeTest, GraphDefWithoutDependentResourceVariables) {
      TestFreezeGraphWithoutDependentVariables(true);
    }
    
    TEST_F(FreezeTest, GraphDefWithDependentVariables) {
      TestFreezeGraphWithDependentVariables(false);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

    #include "xla/stream_executor/stream_executor.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/error_codes.pb.h"
    #include "tsl/platform/statusor.h"
    
    namespace stream_executor {
    namespace {
    
    /*** Registration tests ***/
    TEST(StreamExecutor, SuccessfulRegistration) {
      auto plugin_init = [](SE_PlatformRegistrationParams* const params,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top