Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 270 for mpos (0.1 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[REDUCE]], dims = [0, 3, 1, 2]
    // CHECK:              : (tensor<1x56x56x64xf32>) -> tensor<1x64x56x56xf32>
    // CHECK:           return %[[TPOS]] : tensor<1x64x56x56xf32>
    
    func.func @commute_transpose_reduce_window(
          %input: tensor<1x114x114x64xf32>,
          %cst: tensor<f32>) -> tensor<1x64x56x56xf32> {
      %tpos = stablehlo.transpose %input, dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/noder/posmap.go

    )
    
    // A posMap handles mapping from syntax.Pos to src.XPos.
    type posMap struct {
    	bases map[*syntax.PosBase]*src.PosBase
    	cache struct {
    		last *syntax.PosBase
    		base *src.PosBase
    	}
    }
    
    type poser interface{ Pos() syntax.Pos }
    type ender interface{ End() syntax.Pos }
    
    func (m *posMap) pos(p poser) src.XPos { return m.makeXPos(p.Pos()) }
    func (m *posMap) end(p ender) src.XPos { return m.makeXPos(p.End()) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 27 03:43:35 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/memcombine.go

    		return nil
    	}
    }
    
    func truncate(b *Block, pos src.XPos, v *Value, from, to int64) *Value {
    	switch from*10 + to {
    	case 82:
    		return b.NewValue1(pos, OpTrunc64to16, types.Types[types.TUINT16], v)
    	case 84:
    		return b.NewValue1(pos, OpTrunc64to32, types.Types[types.TUINT32], v)
    	case 42:
    		return b.NewValue1(pos, OpTrunc32to16, types.Types[types.TUINT16], v)
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/dcl.go

    	}
    }
    
    // make a new Node off the books.
    func TempAt(pos src.XPos, curfn *ir.Func, typ *types.Type) *ir.Name {
    	if curfn == nil {
    		base.FatalfAt(pos, "no curfn for TempAt")
    	}
    	if typ == nil {
    		base.FatalfAt(pos, "TempAt called with nil type")
    	}
    	if typ.Kind() == types.TFUNC && typ.Recv() != nil {
    		base.FatalfAt(pos, "misuse of method type: %v", typ)
    	}
    	types.CalcSize(typ)
    
    	sym := &types.Sym{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go

    	{"net.key.spd_dump", []_C_int{4, 30, 2}},
    	{"net.mpls.ifq.congestion", []_C_int{4, 33, 3, 4}},
    	{"net.mpls.ifq.drops", []_C_int{4, 33, 3, 3}},
    	{"net.mpls.ifq.len", []_C_int{4, 33, 3, 1}},
    	{"net.mpls.ifq.maxlen", []_C_int{4, 33, 3, 2}},
    	{"net.mpls.mapttl_ip", []_C_int{4, 33, 5}},
    	{"net.mpls.mapttl_ip6", []_C_int{4, 33, 6}},
    	{"net.mpls.ttl", []_C_int{4, 33, 2}},
    	{"net.pflow.stats", []_C_int{4, 34, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/const.go

    func NewString(pos src.XPos, s string) Node {
    	return NewBasicLit(pos, types.UntypedString, constant.MakeString(s))
    }
    
    // NewUintptr returns an OLITERAL representing v as a uintptr.
    func NewUintptr(pos src.XPos, v int64) Node {
    	return NewBasicLit(pos, types.Types[types.TUINTPTR], constant.MakeInt64(v))
    }
    
    // NewZero returns a zero value of the given type.
    func NewZero(pos src.XPos, typ *types.Type) Node {
    	switch {
    	case typ.HasNil():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 18:53:26 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            @Override
            protected void doProcess(Buffer buffer, int length, int type, int id) throws IOException {
                int originalBufferPosition = buffer.rpos()
    
                int pos = buffer.rpos()
                def command = commandMessage(buffer, type)
                buffer.rpos(pos)
    
                def matched = expectations.find { it.matches(buffer, type, id) }
                if (matched) {
                    if (matched.failing) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    func (b *Block) NewValue0(pos src.XPos, op Op, t *types.Type) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = 0
    	v.Args = v.argstorage[:0]
    	return v
    }
    
    // NewValue0I returns a new value in the block with no arguments and an auxint value.
    func (b *Block) NewValue0I(pos src.XPos, op Op, t *types.Type, auxint int64) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"net.key.spd_dump", []_C_int{4, 30, 2}},
    	{"net.mpls.ifq.congestion", []_C_int{4, 33, 3, 4}},
    	{"net.mpls.ifq.drops", []_C_int{4, 33, 3, 3}},
    	{"net.mpls.ifq.len", []_C_int{4, 33, 3, 1}},
    	{"net.mpls.ifq.maxlen", []_C_int{4, 33, 3, 2}},
    	{"net.mpls.mapttl_ip", []_C_int{4, 33, 5}},
    	{"net.mpls.mapttl_ip6", []_C_int{4, 33, 6}},
    	{"net.mpls.ttl", []_C_int{4, 33, 2}},
    	{"net.pflow.stats", []_C_int{4, 34, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/cc_op_gen_util.cc

    string GetPath(StringPiece dot_h_fname) {
      auto pos = dot_h_fname.find("/bin/");
      string result(dot_h_fname);
      if (pos != string::npos) {
        // - 1 account for the terminating null character (\0) in "/genfiles/".
        result = dot_h_fname.substr(pos + sizeof("/bin/") - 1);
      } else {
        pos = dot_h_fname.find("/genfiles/");
        if (pos != string::npos) {
          result = dot_h_fname.substr(pos + sizeof("/genfiles/") - 1);
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top