Displaying 3 results from an estimated 3 matches for "maximiize".
Did you mean:
maximize
2010 Jan 24
3
system vs shell wait command
Dear All,
I try to invoke a second program (called "gencont") within a R script.
However this second program needs some time to finish. After finishing the
output should be read into R and used for further calculation.
Under windows, it perfectly works:
result<-shell("gencont < yn.txt",intern=TRUE,wait=TRUE)
# R waits untill the program finishes (apporx 3 min) and
2017 Aug 24
3
[RFC] Enhance Partial Inliner by using a general outlining scheme for cold blocks
Hi David,
The only reason I can see to use the 'pattern matching' part as a fall-back
is in case we cannot inline the (what I'm assuming would be) a much bigger
hot-path-only cloned function for whatever reason. What I'm assuming here
is that after cold-region outlining, we may still have a large portion of
the original function body to attempt to inline, whereas the pattern
2017 Aug 29
3
[RFC] Enhance Partial Inliner by using a general outlining scheme for cold blocks
...; and its outlined children if we cannot immediately inline it.
>>
>
> The outlining only mode is useful to enable more aggressive inlining for
> the regular inlining pass. Slightly different heuristics can be applied
> here. For instance it can prefer largest candidate region (to maximiize the
> chance to inline the caller). The outlined region does not need to be super
> cold and leave it to the inliner to do more deeper analysis and decide to
> inline it right back in.
>
> David
>
>
>
>>
>>
>> Graham Yiu
>> LLVM Compiler Development
&...