Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bitMask (0.2 sec)

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

    	s.sb = s.entryNewValue0(ssa.OpSB, types.Types[types.TUINTPTR])
    
    	s.startBlock(s.f.Entry)
    	s.vars[memVar] = s.startmem
    	if s.hasOpenDefers {
    		// Create the deferBits variable and stack slot.  deferBits is a
    		// bitmask showing which of the open-coded defers in this function
    		// have been activated.
    		deferBitsTemp := typecheck.TempAt(src.NoXPos, s.curfn, types.Types[types.TUINT8])
    		deferBitsTemp.SetAddrtaken(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    }
    
    func (t http2FrameType) String() string {
    	if s, ok := http2frameName[t]; ok {
    		return s
    	}
    	return fmt.Sprintf("UNKNOWN_FRAME_TYPE_%d", uint8(t))
    }
    
    // Flags is a bitmask of HTTP/2 flags.
    // The meaning of flags varies depending on the frame type.
    type http2Flags uint8
    
    // Has reports whether f contains all (0 or more) flags in v.
    func (f http2Flags) Has(v http2Flags) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @bitcast
    func.func @bitcast(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      // CHECK:  mhlo.bitcast_convert %arg0 : (tensor<2xf32>) -> tensor<2xf32>
      %0 = "tf.Bitcast"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
      func.return %0 : tensor<2xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      func.return %0 : tensor<?xf32>
    }
    
    // CHECK-LABEL:   func @bitcast(
    // CHECK-SAME:                  %[[VAL_0:.*]]: tensor<2xf32>) -> tensor<2xf32> {
    // CHECK:           %[[VAL_1:.*]] = "tf.Bitcast"(%[[VAL_0]]) : (tensor<2xf32>) -> tensor<2xf32>
    // CHECK:           return %[[VAL_1]] : tensor<2xf32>
    // CHECK:         }
    func.func @bitcast(%arg0: tensor<2xf32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top