Displaying 18 results from an estimated 18 matches for "header1".
Did you mean:
header
2011 May 03
2
[LLVMdev] Greedy register allocation
...tor will try to minimize the spill weight assigned to registers with a CostPerUse. It does it by swapping physical register assignments, it won't do it if it requires extra spilling.
This is actually the cause of the n-body regression. The benchmark has nested loops:
%vreg1 = const pool load
header1:
; large blocks with lots of floating point ops
header2:
; small loop using %vreg1
jnz header2
...
jnz header1
The def of %vreg1 has been hoisted by LICM so it is live across a block with lots of floating point code. The allocator uses the low xmm registers for the large block, and %xmm8 is le...
2005 Aug 15
2
queer data set
I have a dataset that is basically structureless. Its dimension varies
from row to row and sep(s) are a mixture of tab and semi colon (;) and
example is
HEADER1 HEADER2 HEADER3 HEADER3
A1 B1 C1 X11;X12;X13
A2 B2 C2 X21;X22;X23;X24;X25
A3 B3 C3
A4 B4 C4 X41;X42;X43
A5 B5 C5 X51
etc., say. Note that a blank under HEADER3 corresponds to non
occurance and all semi colon (...
2012 Jun 14
3
Time difference between two dates/timing
Hi,
Here, i have a matrix like this
MyMatrix <-
*DATETIME HEADER1 HEADER2*
1/1/2010 0:10 197.1947 100.0859
1/1/2010 0:20 203.8811 100.1013
1/1/2010 0:30 206.564 100.0433
1/1/2010 0:40 207.9563 99.9393
i want to get the time difference in minutes between two date.
TimeDiff <- MyMatrix[1,1] - M...
2011 May 03
0
[LLVMdev] Greedy register allocation
...Use. It does it by swapping physical register
> assignments, it won't do it if it requires extra spilling.
CostPerUse models the encoding size of the register?
> This is actually the cause of the n-body regression. The benchmark has nested loops:
>
> %vreg1 = const pool load
> header1:
> ; large blocks with lots of floating point ops
> header2:
> ; small loop using %vreg1
> jnz header2
> ...
> jnz header1
>
> The def of %vreg1 has been hoisted by LICM so it is live across a
> block with lots of floating point code. The allocator uses the low xmm
&...
2012 Apr 22
4
How to take ID of number > 7.
I figured out something new that I would like to see if I can do this more
easy with R then Excel.
I have these huge files with data.
For example:
DataFile.csv
ID Name log2
1 Fantasy 5.651
2 New 7.60518
3 Finding 8.9532
4 Looeka -0.248652
5 Vani 0.3548
With like header1: ID, header 2: Name, header 3: log2
Now I need to get the $ID out who have a &log2 value higher then 7.
I know ho to grab the $log2 values with 7+ numbers.
Log2HigherSeven = DataFile$log2 [ DataFile$log2 >= 7]
But how can I take thise ID numbers also?
--
View this message in conte...
2012 Mar 26
2
read.csv and field containing single quotes
I need to read in csv files, created by 3rd party, with fields
containing single quotes (as shown below).
"header1","header2","header3","header4"
"field1r1","field2r1","field3r1","field4r1"
"field1r2","field2r2","field3r2PartA), field3r2PartB Very" Long","field4r2"
"field1r3","f...
2011 May 03
0
[LLVMdev] Greedy register allocation
Jakob Stoklund Olesen <stoklund at 2pi.dk> writes:
>> Yikes! Do we know why these codes got so much worse? Even 5% is a big
>> deal on x86.
>
> On x86-64, n-body and puzzle have the exact same instructions as with
> linear scan. The only difference is the choice of registers. This
> causes some loops to be a few bytes longer or shorter which can easily
> change
2019 Apr 28
2
Inno Setup 6.0.2 fails before creating exe file on Windows (R-3.6.0)
I am working on compiling R-3.6.0 for Windows 10 64bit using rtools40
(beta 11). I had also installed the most recent update of Inno setup,
which is now 6.0.2.With that version, `make risntaller` fails at the
call to ""C:/R/Inno/iscc" R.iss > R-3.6.0.log 2>&1" and just exits,
pointing to line 175 of the makefile which is:
$(RPREFIX)-win.exe: R.iss
2011 May 03
2
[LLVMdev] Greedy register allocation
...ignments, it won't do it if it requires extra spilling.
>
> CostPerUse models the encoding size of the register?
Yes, something like that.
>> This is actually the cause of the n-body regression. The benchmark has nested loops:
>>
>> %vreg1 = const pool load
>> header1:
>> ; large blocks with lots of floating point ops
>> header2:
>> ; small loop using %vreg1
>> jnz header2
>> ...
>> jnz header1
>>
>
>> The def of %vreg1 has been hoisted by LICM so it is live across a
>> block with lots of floating po...
2011 May 03
3
[LLVMdev] Greedy register allocation
On May 3, 2011, at 9:19 AM, David A. Greene wrote:
> Jakob Stoklund Olesen <stoklund at 2pi.dk> writes:
>
>> +10.0% SingleSource/Benchmarks/CoyoteBench/huffbench
>> +12.0% SingleSource/Benchmarks/McGill/chomp
>> +18.0% SingleSource/Benchmarks/BenchmarkGame/n-body
>> +45.5% SingleSource/Benchmarks/BenchmarkGame/puzzle
>> +10.0%
2004 Feb 26
6
adding header info to write.table
Hello,
Could someone please tell if there is a way to append header info to the top of an exported dataframe (exported with write.table). I want to append the following, which are the defininitions for an asciigrid:
ncols 532
nrows 999
xllcorner 510465
yllcorner 4766375
cellsize 30
NODATA_value -9999
Thanks very much,
femke
[[alternative HTML version deleted]]
2019 May 01
0
Inno Setup 6.0.2 fails before creating exe file on Windows (R-3.6.0)
...no log shows this error:
Error on line 12 in src\gnuwin32\installer\R.iss: Minimum NT version
specified by MinVersion must be at least 6.0. (Windows 2000/XP/Server
2003 are no longer supported.)
Compile aborted.
Hence to fix this, the "MinVersion" parameter in
src/gnuwin32/installer/header1.iss should be increased from 0,5.0 to
0,6.0. I confirmed this resolves the problem. Could somebody commit
this please?
See also: http://www.jrsoftware.org/is6help/index.php?topic=setup_minversion
On Sun, Apr 28, 2019 at 11:07 AM Avraham Adler <avraham.adler at gmail.com> wrote:
>
>...
2007 Feb 16
0
R_decompress1 and zlib
...elp/05/01/10011.html): I have a binary
file, which contains a header and data compressed by zlib and written to
the file as unsigned character. Here is, what I try to do:
> zz <- file(in.file, 'rb')
> ## the header has to be read in three parts due to the different data
types
> header1 <- readBin(zz, integer(), 8, size = 4)
> header2 <- readBin(zz, numeric(), 5, size = 8)
> header3 <- readBin(zz, integer(), 14, size = 4)
> data.raw <- readBin(zz, raw(), 1e6)
> close(zz)
> ## it works fine up to here
> mydata <- .Call('R_decompress1', data....
2004 Sep 11
2
Dovecot-1.0-test32 fails with assertion
Hello,
dovecot-1.0-test32 continuously fails on one of our customers mboxes
with the following error:
Sep 11 16:27:15 web dovecot: POP3(xxxxxxxxxxxxx.de1): file
mbox-sync-rewrite.c: line 360 (mbox_sync_read_and_move): assertion
failed: (need_space == -mails[idx].space)
About 200 other mboxes are working perfectly on the same server. Where
should I start looking for the cause of this?
2009 Feb 22
1
Zoo or TS
Hi everyone,
I'm trying to plot some data across time. I have a list of articles, ranks,
date/times, authors, etc. Someone suggested using zoo and someone suggested
using ts. I'm pretty new at this and have been trying a simple if() plot()
statement, but it doesn't seem to work. I keep getting an error that Title
does not exist. Basically its saying that the headers do not exist as
2017 Aug 31
3
opusfile Include fix
Hi all!
When compiling the program using opusfile the
#include <opus/opusfile.h>
generates error that
# include <opus_multistream.h>
is not found. Actually it should be included as
# include <opus/opus_multistream.h>
just like the ogg.h in the previous line.
A small patch attached.
--
Best regards,
Alexander
-------------- next part --------------
A non-text attachment
2006 May 23
10
throttling...
Is there a way to throttle the firing of updater requests easily with
Prototype?
Thanks,
mark
2001 Nov 22
14
Small vorbis files with vorbisfile
I think I have bumped into the small file error, or I''m doing something
stupid. The files are short audio effects for a game (embedded in our own
data format).
Sample info:
Vorbis packets: 1 (4 kb)
Samples: 28672
Samplerate: 22 kHz
Channels: 2
This is what I''m doing when I want to get a number of bytes from the stream:
The problem is that ov_pcm_tell always returns 0. And so