Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for rtcall (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    The `ant.importBuild()` method also handles `<ant>` and `<antcall>` tasks transparently, which allows for a phased migration.
    
    The following steps highlight a suggested method for migrating a multi-project build:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    func (p *Package) rewriteCalls(f *File) bool {
    	needsUnsafe := false
    	// Walk backward so that in C.f1(C.f2()) we rewrite C.f2 first.
    	for _, call := range f.Calls {
    		if call.Done {
    			continue
    		}
    		start := f.offset(call.Call.Pos())
    		end := f.offset(call.Call.End())
    		str, nu := p.rewriteCall(f, call)
    		if str != "" {
    			f.Edit.Replace(start, end, str)
    			if nu {
    				needsUnsafe = true
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      return success();
    }
    
    void LegacyCallOp::setCalleeFromCallable(mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
      return setOperand(0, callee.get<Value>());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	}
    	r, li := l.toLocal(i)
    	return r.Sym(li).IsPkgInit()
    }
    
    // Return whether this is a trampoline of a deferreturn call.
    func (l *Loader) IsDeferReturnTramp(i Sym) bool {
    	return l.deferReturnTramp[i]
    }
    
    // Set that i is a trampoline of a deferreturn call.
    func (l *Loader) SetIsDeferReturnTramp(i Sym, v bool) {
    	l.deferReturnTramp[i] = v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (SelectN [0] call:(StaticLECall _ _)) x mem:(SelectN [1] call))
    	&& isConstZero(x)
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (OffPtr (SelectN [0] call:(StaticLECall _ _))) x mem:(SelectN [1] call))
    	&& isConstZero(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	case 76: // set program mask
    		zRR(op_SPM, uint32(p.From.Reg), 0, asm)
    
    	case 77: // syscall $constant
    		if p.From.Offset > 255 || p.From.Offset < 1 {
    			c.ctxt.Diag("illegal system call; system call number out of range: %v", p)
    			zE(op_TRAP2, asm) // trap always
    		} else {
    			zI(op_SVC, uint32(p.From.Offset), asm)
    		}
    
    	case 78: // undef
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. RELEASE.md

            requires all optimizer variables to be created at the first
            `apply_gradients()` or `minimize()` call. If your workflow calls
            optimizer to update different parts of model in multiple stages,
            please call `optimizer.build(model.trainable_variables)` before the
            training loop.
        *   **Performance regression on `ParameterServerStrategy`.** This could be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top