Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for putint (0.09 sec)

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

    	}
    	synthesizeOpIntFloatArg := func(n *ir.Name, t *types.Type, reg abi.RegIndex, sl LocalSlot) *Value {
    		aux := &AuxNameOffset{n, sl.Off}
    		op, auxInt := ArgOpAndRegisterFor(reg, f.ABISelf)
    		v := f.newValueNoBlock(op, t, pos)
    		v.AuxInt = auxInt
    		v.Aux = aux
    		v.Args = nil
    		v.Block = f.Entry
    		newValues = append(newValues, v)
    		addToNV(v, sl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          ArrayRef<Attribute> padding_attr_array =
              op->getAttrOfType<ArrayAttr>("explicit_paddings").getValue();
    
          auto get_int = [](Attribute attr) {
            return mlir::cast<IntegerAttr>(attr).getInt();
          };
    
          SmallVector<int32_t> padding_values(padding_attr_array.size());
          for (int i = 0; i < padding_attr_array.size(); i++) {
            padding_values[i] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Value num_elements = operands[1];
        IntegerAttr attr;
        if (matchPattern(num_elements, m_Constant(&attr))) {
          return CreateI32SplatConst(op.getLoc(), rewriter, {1}, attr.getInt());
        }
        if (auto const_op = num_elements.getDefiningOp<TF::ConstOp>()) {
          return CreateI32SplatConst(op->getLoc(), rewriter, {1},
                                     (*const_op.getValue()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	e.cache[vid] = a
    	if r, ok := loc.(*Register); ok {
    		if e.usedRegs&(regMask(1)<<uint(r.num)) != 0 {
    			e.s.f.Fatalf("%v is already set (v%d/%v)", r, vid, c)
    		}
    		e.usedRegs |= regMask(1) << uint(r.num)
    		if final {
    			e.finalRegs |= regMask(1) << uint(r.num)
    		}
    		if len(a) == 1 {
    			e.uniqueRegs |= regMask(1) << uint(r.num)
    		}
    		if len(a) == 2 {
    			if t, ok := e.s.f.getHome(a[0].ID).(*Register); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top