Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for sval64 (0.18 sec)

  1. test/newinline.go

    	runtime.GC()
    }
    func small2() int { // ERROR "can inline small2"
    	return runtime.GOMAXPROCS(0)
    }
    func small3(t T) { // ERROR "can inline small3"
    	t.meth2(3, 5)
    }
    func small4(t T) { // ERROR "can inline small4"
    	t.meth2(runtime.GOMAXPROCS(0), 5)
    }
    func (T) meth2(int, int) { // ERROR "can inline T.meth2"
    	runtime.GC()
    	runtime.GC()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

    // CHECK:           %[[VAL_3:.*]] = arith.constant dense<0> : tensor<4x2xi32>
    // CHECK:           %[[VAL_4:.*]] = "tfl.pad"(%[[VAL_2]], %[[VAL_3]]) : (tensor<1x6x6x3xf32>, tensor<4x2xi32>) -> tensor<1x6x6x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. src/runtime/runtime-gdb.py

    	def to_string(self):
    		t = str(self.val.type)
    		if (t.startswith("struct ")):
    			return t[len("struct "):]
    		return t
    
    	def children(self):
    		sval = SliceValue(self.val)
    		if sval.len > sval.cap:
    			return
    		for idx, item in enumerate(sval):
    			yield ('[{0}]'.format(idx), item)
    
    
    class MapTypePrinter:
    	"""Pretty print map[K]V types.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/s390x/ssa.go

    	case ssa.OpS390XMOVDstoreconst, ssa.OpS390XMOVWstoreconst, ssa.OpS390XMOVHstoreconst, ssa.OpS390XMOVBstoreconst:
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_CONST
    		sc := v.AuxValAndOff()
    		p.From.Offset = sc.Val64()
    		p.To.Type = obj.TYPE_MEM
    		p.To.Reg = v.Args[0].Reg()
    		ssagen.AddAux2(&p.To, v, sc.Off64())
    	case ssa.OpS390XMOVBreg, ssa.OpS390XMOVHreg, ssa.OpS390XMOVWreg,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/replicate_invariant_op_hoisting.mlir

      }
      func.return
    }
    
    // CHECK:  [[SHAPE:%.*]] = "tf.Shape"([[VAL_0]])
    // CHECK:  tf_device.replicate({{\[}}[[VAL_0]], [[VAL_1]]] as [[VAL_4:%.*]]: tensor<*xf32>) {devices = {TPU_REPLICATED_CORE_0 = ["/device:TPU:0", "/device:TPU:1"]}, n = 2 : i32} {
    // CHECK:    [[OP_A:%.*]] = "tf.opA"([[SHAPE]]) {device = "TPU_REPLICATED_CORE_0"} : (tensor<?xi32>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadelf/ldelf.go

    	switch {
    	case attr.tag == TagCompatibility:
    		attr.ival = a.uleb128()
    		attr.sval = a.string()
    
    	case attr.tag == TagNoDefaults: // Tag_nodefaults has no argument
    
    	case attr.tag == TagAlsoCompatibleWith:
    		// Not really, but we don't actually care about this tag.
    		attr.sval = a.string()
    
    	// Tag with string argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. test/inline.go

    	runtime.GC()
    }
    func small2() int { // ERROR "can inline small2"
    	return runtime.GOMAXPROCS(0)
    }
    func small3(t T) { // ERROR "can inline small3"
    	t.meth2(3, 5)
    }
    func small4(t T) { // not inlineable - has 2 calls.
    	t.meth2(runtime.GOMAXPROCS(0), 5)
    }
    func (T) meth2(int, int) { // not inlineable - has 2 calls.
    	runtime.GC()
    	runtime.GC()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/op.go

    // The high 32 bits hold a value.
    // The low 32 bits hold a pointer offset.
    type ValAndOff int64
    
    func (x ValAndOff) Val() int32   { return int32(int64(x) >> 32) }
    func (x ValAndOff) Val64() int64 { return int64(x) >> 32 }
    func (x ValAndOff) Val16() int16 { return int16(int64(x) >> 32) }
    func (x ValAndOff) Val8() int8   { return int8(int64(x) >> 32) }
    
    func (x ValAndOff) Off64() int64 { return int64(int32(x)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    			return true
    		}
    		//dump("not static ptrlit", r);
    
    	case ir.OSTR2BYTES:
    		r := r.(*ir.ConvExpr)
    		if l.Class == ir.PEXTERN && r.X.Op() == ir.OLITERAL {
    			sval := ir.StringVal(r.X)
    			staticdata.InitSliceBytes(l, loff, sval)
    			return true
    		}
    
    	case ir.OSLICELIT:
    		r := r.(*ir.CompLitExpr)
    		s.initplan(r)
    		// Init slice.
    		ta := types.NewArray(r.Type().Elem(), r.Len)
    		ta.SetNoalg(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top