Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for val32 (0.04 sec)

  1. test/codegen/noextend.go

    	if uint32(*u8) == val32[0] {
    		return true
    	}
    
    	// ppc64x:-"MOVH\tR\\d+,\\sR\\d+"
    	if int32(*x16) == sval32[0] {
    		return true
    	}
    
    	// ppc64x:-"MOVHZ\tR\\d+,\\sR\\d+"
    	if uint32(*u16) == val32[0] {
    		return true
    	}
    
    	// Verify the truncates are using the correct sign.
    	// ppc64x:-"MOVWZ\tR\\d+,\\sR\\d+"
    	if int32(*x64) == sval32[0] {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. test/codegen/shift.go

    	}
    	panic("shift too large")
    }
    
    func provedUnsignedShiftLeft(val64 uint64, val32 uint32, val16 uint16, val8 uint8, shift int) (r1 uint64, r2 uint32, r3 uint16, r4 uint8) {
    	if shift >= 0 && shift < 64 {
    		// arm64:"LSL",-"CSEL"
    		r1 = val64 << shift
    	}
    	if shift >= 0 && shift < 32 {
    		// arm64:"LSL",-"CSEL"
    		r2 = val32 << shift
    	}
    	if shift >= 0 && shift < 16 {
    		// arm64:"LSL",-"CSEL"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    			f.ByteOrder.PutUint64(dst[rela.Off:rela.Off+8], val64)
    		case R_X86_64_32:
    			if rela.Off+4 >= uint64(len(dst)) || rela.Addend < 0 {
    				continue
    			}
    			val32 := uint32(sym.Value) + uint32(rela.Addend)
    			f.ByteOrder.PutUint32(dst[rela.Off:rela.Off+4], val32)
    		}
    	}
    
    	return nil
    }
    
    func (f *File) applyRelocations386(dst []byte, rels []byte) error {
    	// 8 is the size of Rel32.
    	if len(rels)%8 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: [[VAL31:%.+]] = "tf.Mul"([[VAL30]], [[VAL29]])
      // CHECK: [[VAL32:%.+]] = "tf.Cast"([[VAL31]])
      // CHECK: [[VAL33:%.+]] = "tf.ExpandDims"([[VAL10]]#1, [[VAL5]])
      // CHECK: [[VAL34:%.+]] = "tf.ConcatV2"([[VAL3]], [[VAL33]], [[VAL5]])
      // CHECK: [[VAL35:%.+]] = "tf.Reshape"([[VAL32]], [[VAL34]])
      // CHECK: [[VAL36:%.+]] = "tf.AddV2"([[VAL26]], [[VAL35]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/ListBuildOptionTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.internal.buildoption.BuildOptionFixture.*
    
    class ListBuildOptionTest extends Specification {
    
        private static final List<String> SAMPLE_VALUES = ['val1', 'val2', 'val3']
    
        def testSettings = new TestSettings()
        def commandLineParser = new CommandLineParser()
    
        def "can apply from property"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. operator/pkg/tpath/tree_test.go

          i2b: val2
        - i2: val2
    `,
    		},
    		{
    			desc:     "merge list 2",
    			baseYAML: testTreeYAML,
    			path:     "a.b.list1",
    			value: `
    i3:
      a: val3
    `,
    			want: `
    a:
      b:
        c: val1
        list1:
        - i1: val1
        - i2: val2
        - i3:
            a: val3
    `,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"double(self.val2) <= self.val4",
    				"double(self.val2) == self.val4",
    				"double(self.val2) >= self.val4",
    				"double(self.val3) > self.val4",
    				"double(self.val3) >= self.val4",
    
    				"self.val1 < int(self.val4)",
    				"self.val2 == int(self.val4)",
    				"self.val3 > int(self.val4)",
    
    				"double(self.val1) < self.val5",
    				"double(self.val2) == self.val5",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"timestamp(self.val12) == self.val13": 6,
    				"string(self.val13) == self.val12":    7,
    			},
    		},
    		{name: "lists",
    			obj:    objs([]interface{}{1, 2, 3}, []interface{}{1, 2, 3}),
    			schema: schemas(listType(&integerType), listType(&integerType)),
    			expectCost: map[string]int64{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "[1, 2, 3]"): 11,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // CHECK:         [[VAL_2:%.*]] = "tf.BatchMatMulV2"([[VAL_1]], [[ARG_4]]) <{adj_x = false, adj_y = true}> : (tensor<?x8x40xf32>, tensor<10x40xf32>) -> tensor<?x8x10xf32>
    // CHECK:         [[VAL_3:%.*]] = "tf.Add"([[VAL_2]], [[ARG_1]]) : (tensor<?x8x10xf32>, tensor<8x10xf32>) -> tensor<?x8x10xf32>
    // CHECK:         [[VAL_4:%.*]] = "tf.Add"([[VAL_2]], [[ARG_2]]) : (tensor<?x8x10xf32>, tensor<8x10xf32>) -> tensor<?x8x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

    // CHECK-DAG:       %[[VAL_2:.*]] = "tfl.pseudo_const"{{.*}}dense<1> : tensor<4xi32>
    // CHECK-DAG:       %[[VAL_3:.*]] = "tfl.pseudo_const"{{.*}}dense<2> : tensor<1xi32>
    // CHECK-DAG:       %[[VAL_4:.*]] = "tfl.pseudo_const"{{.*}}dense<[2, 1]> : tensor<2xi32>
    // CHECK:           %[[VAL_5:.*]] = "tfl.reshape"(%[[VAL_0]], %[[VAL_2]]) : (tensor<1xf32>, tensor<4xi32>) -> tensor<1x1x1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top