Displaying 4 results from an estimated 4 matches for "uuuugh".
2006 Jul 06
2
[Fwd: as.data.frame question]
>From: markleeds at verizon.net
>Date: Thu Jul 06 13:16:42 CDT 2006
>To: markleeds at verizon.net
>Subject: as.data.frame question
>hi all : as a result of an lapply command,
>i get the following output.
>
>
>$AAA
> 000106 000107 000108
> 5.5 6.5 3.0
>
>$BBB
> 000106 000107 000108
> 4 5 6
>
>$CCC
2007 Jan 11
4
counter-intuitive behaveour when passing a proc to Mocha::Expectation#returns
Let''s say that I have a procedure that:
* gets the number of bytes to write into some file
* and returns the number of successfully written bytes
def save( text, len )
This procedure is being used all over the place especially inside the method
"process" which I want to test. Thus in order not to polute my filesystem I stub
the "save" procedure. But of course in
2016 Mar 12
4
Building with LLVM_PARALLEL_XXX_JOBS
On Fri, Mar 4, 2016 at 11:28 AM, Tilmann Scheller
<tilmann at osg.samsung.com> wrote:
> Hi Sedat,
>
> On 03/03/2016 08:09 AM, Sedat Dilek via llvm-dev wrote:
>>
>> It might be that a CLANG generated with LTO/PGO speeds up the build.
>> Can you confirm this?
>
> Yes, a Clang host compiler built with LTO or PGO is generally faster than an
> -O3 build.
>
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
...clang.profdataâ to find it, but
> it should be at a path something like:
>
> <build
> dir>/tools/clang/stage2-instrumented-bins/utils/perf-training/clang.profdata
>
> You can feed that file into the LLVM_PROFDATA_FILE option when you build
> your optimized compiler.
>
Uuuugh, that sounds a bit complicated or at least for me :-).
I am not that familiar with CMake and the llvm-toolchain build-system.
I need something simple like...
PGO_CMAKE_OPTS="..."
CONFIGURE_CMAKE_OPTS="$CONFIGURE_CMAKE_OPTS $PGO_CMAKE_OPTS"
...in my build-script.
Thanks.
- S...