Displaying 20 results from an estimated 28638 matches for "whole".
Did you mean:
while
2005 Apr 04
1
need any advises for code optimization.
Dear colleagues,
I have the following code. This code is to 'filter' the data set.
It works on the data frame 'whole' with four numeric columns: a,b,d, and c.
Every row in the data frame is considered as a point in 3-D space.
Variables a,b, and d are the point's coordinates, and c is its value.
This code looks at every point, builds a cube 'centered' at this
point, selects the set of point...
2003 Apr 17
1
Testing for whole numbers
Is there a way in R to test if a given number is an integer, ie a
whole number? I am not referring to the data type of a number, but to
its value.
That is to say, is.whole(pi-pi+2) would be TRUE, whereas is.whole(4/3)
would be false. At the moment I am using
is.whole <- function(a) { floor(a)==a }
which is OK for real numbers, but not for complex ones (a+bi would...
2010 Mar 14
2
code rows depending on the value of other rows in multilevel dataframe
...12/4/2007 1 1 LPC 2
3 CSPP005 12/4/2007 1 1 RPC 3
4 CSPP005 12/4/2007 1 1 RCST 1
5 CSPP005 12/4/2007 1 1 LGM 0
6 CSPP005 12/4/2007 1 1 RGM 0
7 CSPP005 12/4/2007 1 1 Whole NA
The five levels are:
ID->Date->Segment->Slice->Tract
The observation variable is: Lesion
What I want to do is (in pseudo code)
if (any of the Tract (for a given ID, Date, Segment, and Slice),
which( Lesion == 2) )
df [ for that particular (ID, Date,Segment, and slice...
2011 Nov 06
1
Request for Help: y-axis label overlapped by x-axis in subplots in big plot
Dear All,
I would like to seek for help on this issue:
1. I set par(mfrow=c(2,2)), hoping to plot 4 subgraphs in a whole graph
2. Each subgraph has its own x,y axes and each has x-axis label and y-axis label
3. moreover, subgraphs in the left column of the whole graph are all 3D, and have z axes and labels for z axes
4. subgraphs in the right column of the whole graph are all 2D
5. In each subgraph, x-axis label is...
2009 Oct 15
0
[LLVMdev] strace for whole-program bitcodes (was: RE: building whole-program bitcode with LLVM)
...re might still be problems with
build systems that call tools like ar/ld directly.
- Daniel
On Thu, Oct 8, 2009 at 3:26 PM, Kelly, Terence P (HP Labs Researcher)
<terence.p.kelly at hp.com> wrote:
>
> Hi,
>
> It would be nice if it were easier for relative
> novices to build whole-program bitcodes for
> large, complex applications with hairy build
> systems. Several readers of this list have
> been trying various approaches for a few months
> but as far as I know we haven't yet found a
> good general solution. Approaches that have
> been tried include...
2013 Jul 17
2
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...e the merged IR into small pieces,
>> step 2).and compile each of this pieces independendly.
>> step 3) the objects of each piece are fed back to linker to are linked
>> into an executable, or a dynamic lib.
> You seem to be describing GCC's strategy for whole program
> optimization (http://gcc.gnu.org/wiki/LinkTimeOptimization).
Hi, Diego:
Thank you for the comment. Quite honestly, I'm not very familiar with
gcc's LTO implementation, and now I'm not allowed to read any GPL V3 code.
What I'm describing here is somewhat similar t...
2009 Oct 08
5
[LLVMdev] strace for whole-program bitcodes (was: RE: building whole-program bitcode with LLVM)
Hi,
It would be nice if it were easier for relative
novices to build whole-program bitcodes for
large, complex applications with hairy build
systems. Several readers of this list have
been trying various approaches for a few months
but as far as I know we haven't yet found a
good general solution. Approaches that have
been tried include 1) placing wrappers for the
u...
2012 Dec 20
1
Rsync when using --whole-file
I have a question about what happens at the code level when I use
--whole-file. I know that it turns off the rolling checksum. I also
understand that it only checks the file's mtime and size to identify
whether there should be some transfer. Two questions:
1) Could anyone give me a pointer to the correct file so that I can read
what happens when --whole-file is u...
2009 Aug 05
1
How do I use fastercsv to just read the header row and not the whole file?
How do I use fastercsv to just read the header row and not the whole
file?
I need to read the header row first and not the whole csv file
initially in the web application so I can map the input csv columns to
the db columns. Once the mapping is complete, a rake task will than
process the whole file. I don’t want to read the whole file to save
processing time.
How...
2008 Aug 13
3
how to create whole image
Hello,
I am using Cent OS 5.2 . i want to create one master image of whole running
OS becoz i have to do same installation many times on different machines.
so any one suggest me to how create and run the image of whole OS at the
time of installation or , which escape me to install each and every thing
many times.
i would not like to create image using dd.
any suggestio...
2005 Oct 27
2
Rsync over NFS mount sending whole files
Hey all,
I'm not sure if anyone has experienced this, and I have searched for
it online, with no conclusive, err.. conclusions.
Basically, when rsyncing two \test1(local) and \mnt\test2\ (NFS mount)
it seems that when using rsync with --no-whole-file entire files
(instead of just updated blocks) are sent through.
I am using the following command
rsync -avtz --no-whole-file \test1\ \mnt\test2\
For example, if say a particular file was 30KB, IPTRAF reports just
over 31KB transferred while rsync itself reports just a few bytes
(i.e. 200 or...
2013 Jul 17
0
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...;>> step 2).and compile each of this pieces independendly.
>>> step 3) the objects of each piece are fed back to linker to are
>>> linked
>>> into an executable, or a dynamic lib.
>>
>> You seem to be describing GCC's strategy for whole program
>> optimization (http://gcc.gnu.org/wiki/LinkTimeOptimization).
>
>
> Hi, Diego:
>
> Thank you for the comment. Quite honestly, I'm not very familiar with
> gcc's LTO implementation, and now I'm not allowed to read any GPL V3 code.
>
> What I'...
2018 Mar 14
3
rsync of a reflink from OCFS2
--no-whole-file would only make it even worse. It would have to read
the remote file over the network in order to do the diff then it would
write the whole file over the network anyway (--inplace would help a
little). Local copies force --whole-file for a good reason.
On 03/14/2018 10:05 AM, Ben RUBSON via...
2019 Dec 03
0
[p2v PATCH 6/6] Remove whole-file.c
The only function in it, read_whole_file(), is not used anymore.
(And anyway, the GLib function g_file_get_contents() can be used
instead.)
---
Makefile.am | 3 +-
p2v.h | 3 --
whole-file.c | 94 ----------------------------------------------------
3 files changed, 1 insertion(+), 99 deletions(-)
delete mode 100644 whole...
2007 Mar 19
1
Realplayer
...is 1.4 and GLX_SGIX_fbconfig extension
is unsupp orted. Expect problems.
Got Request for zip://C:\Program
Files\Real\RealPlayer\normal.vs?file=datacachel ayout.xmb
Trying to open C:\Program Files\Real\RealPlayer\normal.vs
Trying to open datacachelayout.xmbSUCCESS
datacachelayout.xmb transmitted in whole
datacachelayout.xmb transmitted in whole
Got Request for zip://C:\Program Files\Real\RealPlayer\normal.vs?file=
normal.xmb
Trying to open C:\Program Files\Real\RealPlayer\normal.vs
Trying to open normal.xmbSUCCESS
normal.xmb transmitted in whole
normal.xmb transmitted in whole
Got Request for image...
2009 Oct 15
0
[LLVMdev] strace for whole-program bitcodes (was: RE: building whole-program bitcode with LLVM)
...ill
have a try later. Does anyone have a good solution for this problem?
Thanks.
Tianwei
On Fri, Oct 9, 2009 at 6:26 AM, Kelly, Terence P (HP Labs Researcher) <
terence.p.kelly at hp.com> wrote:
>
> Hi,
>
> It would be nice if it were easier for relative
> novices to build whole-program bitcodes for
> large, complex applications with hairy build
> systems. Several readers of this list have
> been trying various approaches for a few months
> but as far as I know we haven't yet found a
> good general solution. Approaches that have
> been tried include...
2009 Aug 01
3
[LLVMdev] building whole-program bitcode with LLVM
Hi,
Professor Adve suggested that we post this question to llvm-dev.
Thanks in advance for your advice.
My colleagues and I want to create whole-program bitcode for large
real programs like Apache, BIND, OpenLDAP, etc. We want the
whole-program bitcode to include every part of the program for which
we have source code. For example, in the case of Apache's "httpd"
server, we want to create a whole-program bitcode file "h...
2002 Mar 15
2
rsync: transmitting always whole files
...some remote files over a low
bandwidth line:
rsync -v -r -z -t -p <local dir> <user>@<host>:<dir on host>
After updating from rsync 2.5.2 to 2.5.4 I noticed that modified files are
always copied completely. The problem seems to be related to the new (in
2.5.3) option -no-whole-file. The global variable whole_file is initialized
to -1 in options.c. In server_options() (options.c) it is set to zero if the
original value has not been changed. A value of zero on whole_file is not
transmitted to the remote rsync however.
So the remote rsync has -1 instead of zero on its whole...
2009 Oct 18
3
[LLVMdev] strace for whole-program bitcodes
Hi,
I don't think just use gold-plugin even modified is enough for the task
of building a whole-program bc file.
When we want to build a whole-program bc file by a general solution(I
meant that we can use such a method for all kinds of build system),we
need not only a gold-plugin to do what llvm-ld does,but also some
mechanisms,not a simple trick to modify the env variables,to run
ar,ld,ranl...
2016 Jan 05
2
Whole program LLVM bitcode files
Hi all,
I'm trying to generate whole program bitcode files for linux kernel
and do interprocedural
analysis on kernel.
I use llvmlinux to compile kernel with clang and generate a bunch of
bitcode files successfully.
I need to link all these bitcode files together into a single bitcode file,
so that I can run whole program analysis....