Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for slicelit (0.43 sec)

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

    		c := auxIntToInt32(v_0_1.AuxInt)
    		v.reset(OpConst32)
    		v.Type = t
    		v.AuxInt = int32ToAuxInt(c)
    		return true
    	}
    	// match: (SliceLen (SliceMake _ (SliceLen x) _))
    	// result: (SliceLen x)
    	for {
    		if v_0.Op != OpSliceMake {
    			break
    		}
    		_ = v_0.Args[1]
    		v_0_1 := v_0.Args[1]
    		if v_0_1.Op != OpSliceLen {
    			break
    		}
    		x := v_0_1.Args[0]
    		v.reset(OpSliceLen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

       `dimI` are the dimensions of the larger tensor and `slice-spec`
       specifies what part is covered by the tensor to save.
    
    `slice-spec` itself is a `:`-separated list: `slice0:slice1:...:sliceN-1`
    where each `sliceI` is either:
    
    *  The string `-` meaning that the slice covers all indices of this dimension
    *  `start,length` where `start` and `length` are integers.  In that
    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