Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for bitMasks (0.46 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
    }
    
    def TFL_BitcastOp : TFL_Op<"bitcast", [Pure]> {
      let summary = "Bitcast operator";
    
      let description = [{
        Bitcasts a tensor from one type to another.
      }];
    
      let arguments = (ins AnyTensor:$input);
    
      let results = (outs AnyTensor:$output);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    each value in the range [0, size).}]>:$bins
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<2>;
    }
    
    def TF_BitcastOp : TF_Op<"Bitcast", [Pure]> {
      let summary = [{
    Bitcasts a tensor from one type to another without copying data.
      }];
    
      let description = [{
    Given a tensor `input`, this operation returns a tensor that has the same buffer
    data as `input` with datatype `type`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top