Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 632 for 0010 (0.09 sec)

  1. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

      %4 = "quantfork.stats"(%3) {
        layerStats = dense<[0.0, 4.0]> : tensor<2xf32>
      } : (tensor<?x1x1x3xf32>) -> tensor<?x1x1x3xf32>
      %5 = "tfl.sqrt"(%4) : (tensor<?x1x1x3xf32>) -> tensor<?x1x1x3xf32>
      %6 = "quantfork.stats"(%5) {
        layerStats = dense<[0.0, 2.0]> : tensor<2xf32>
      } : (tensor<?x1x1x3xf32>) -> tensor<?x1x1x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/math/big/ratconv_test.go

    }{
    	// valid, without separators
    	{"", false, false, 0, 10, nil, 0},
    	{"1", false, false, 0, 10, nil, '1'},
    	{"e0", false, false, 0, 10, nil, 0},
    	{"E1", false, false, 1, 10, nil, 0},
    	{"e+10", false, false, 10, 10, nil, 0},
    	{"e-10", false, false, -10, 10, nil, 0},
    	{"e123456789a", false, false, 123456789, 10, nil, 'a'},
    	{"p", false, false, 0, 10, nil, 'p'},
    	{"P+100", false, false, 0, 10, nil, 'P'},
    	{"p0", true, false, 0, 2, nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    								Type: "string",
    							},
    						},
    					},
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "size(self[0][0]) == 10",
    							Message: "size of items under items of scoped field should be equal to 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/fp_test.go

    }
    
    func floatingToIntegerConversionsTest(t *testing.T) {
    	floatsToInts(t, 0.0, 0)
    	floatsToInts(t, 0.5, 0)
    	floatsToInts(t, 0.9, 0)
    	floatsToInts(t, 1.0, 1)
    	floatsToInts(t, 1.5, 1)
    	floatsToInts(t, 127.0, 127)
    	floatsToInts(t, -1.0, -1)
    	floatsToInts(t, -128.0, -128)
    
    	floatsToUints(t, 0.0, 0)
    	floatsToUints(t, 1.0, 1)
    	floatsToUints(t, 255.0, 255)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        %1:2 = "tf.IteratorGetNext"(%arg4) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<*x!tf_type.resource>) -> (tensor<2x224x224x3xf32>, tensor<2x1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
  6. cmd/object-api-multipart_test.go

    		{bucketNames[0], "", "", 0, 0, ListPartsInfo{}, ObjectNameInvalid{Bucket: bucketNames[0]}, false},
    		// Asserting for Invalid UploadID (Test number 9).
    		{bucketNames[0], objectNames[0], "abc", 0, 0, ListPartsInfo{}, InvalidUploadID{UploadID: "abc"}, false},
    		// Test case for uploadID with multiple parts (Test number 12).
    		{bucketNames[0], objectNames[0], uploadIDs[0], 0, 10, partInfos[0], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  7. src/time/format.go

    				return layout[0:i], stdNumShortTZ, layout[i+3:]
    			}
    
    		case 'Z': // Z070000, Z07:00:00, Z0700, Z07:00,
    			if len(layout) >= i+7 && layout[i:i+7] == "Z070000" {
    				return layout[0:i], stdISO8601SecondsTZ, layout[i+7:]
    			}
    			if len(layout) >= i+9 && layout[i:i+9] == "Z07:00:00" {
    				return layout[0:i], stdISO8601ColonSecondsTZ, layout[i+9:]
    			}
    			if len(layout) >= i+5 && layout[i:i+5] == "Z0700" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    	case AFNMADDS:
    		return FPOP3S(0, 0, 0, 1, 0)
    
    	case AFNMSUBD:
    		return FPOP3S(0, 0, 1, 1, 1)
    
    	case AFNMSUBS:
    		return FPOP3S(0, 0, 0, 1, 1)
    
    	case AFMULS:
    		return FPOP2S(0, 0, 0, 0)
    
    	case AFMULD:
    		return FPOP2S(0, 0, 1, 0)
    
    	case AFDIVS:
    		return FPOP2S(0, 0, 0, 1)
    
    	case AFDIVD:
    		return FPOP2S(0, 0, 1, 1)
    
    	case AFMAXS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. architecture/standards/0001-use-architectural-decision-records.md

    # ADR-0001 - Use Architectural Decision Records
    
    ## Date
    
    2023-12-01
    
    ## Context
    
    In a distributed team with many subteams, the best solution to communicate decisions is to use a format accessible by everyone in charge of development.
    
    We use *Specification* and *Discovery* documents stored in Google Drive, but they present some downsides:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top