Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for str1 (0.2 sec)

  1. src/cmd/compile/internal/ssa/rewriteS390X.go

    		ptr2 := v_1.Args[0]
    		if !(isSamePtr(ptr1, ptr2)) {
    			break
    		}
    		v.reset(OpS390XLDGR)
    		v.AddArg(x)
    		return true
    	}
    	// match: (FMOVDload [off] {sym} ptr1 (FMOVDstore [off] {sym} ptr2 x _))
    	// cond: isSamePtr(ptr1, ptr2)
    	// result: x
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr1 := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK:      %[[bcast_mul2:.+]] = "mhlo.dynamic_broadcast_in_dim"(%[[mul2]], {{.*}}) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<8xf32>, tensor<4xindex>) -> tensor<8x8x8x8xf32>
      // CHECK-NEXT: %[[mul3:.*]] = mhlo.multiply %[[grad]], %[[bcast_mul2]] : tensor<8x8x8x8xf32>
      // CHECK-NEXT: %[[scale_backprop:.*]] = mhlo.multiply %[[scr1]], %[[scr2]] : tensor<8xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    			})
    		} else {
    			vv := header[key]
    			if vv == nil && len(strs) > 0 {
    				// More than likely this will be a single-element key.
    				// Most headers aren't multi-valued.
    				// Set the capacity on strs[0] to 1, so any future append
    				// won't extend the slice into the other strings.
    				vv, strs = strs[:1:1], strs[1:]
    				vv[0] = hf.Value
    				header[key] = vv
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top