Displaying 20 results from an estimated 10000 matches similar to: "writing/appending a text file"
2009 Aug 25
1
Appending strings at the beginning of a text file
Dear All,
I have a piece of text that I want to append to a text file at the
beginning of the text file.
I have thought about using cat() with the option 'append=T', but the
appending, in this case, is done at the bottom of the text file. Any
ideas?
Thanks in advance,
Paul
2006 May 18
1
write.csv + appending output (FILE I/O)
Hi,
How can I write the output to an excel (csv) file without printing row names (i.e without breaks). Here is my code:
library(
fn <- function()
{
q <- c(1,2,3)
write.csv(q,"C:/Temp/op.xls", append = TRUE, row.names = FALSE,quote = FALSE)
}
# Function Call
for(i in 1:3)
{
fn()
}
Present Output :
x 1 2 3 x 1 2
2009 Dec 03
1
[LLVMdev] Appending linkage and DGE
Sorry if this question is a repeat, I never got an answer the last time I
asked :)
How does appending linkage interact with dead global elimination? From what
I understand, appending linkage arrays are stitched together by the linker.
Dead global elimination usually happens after linking, so if any of those
arrays are "live", then any globals that they point to will be live as well.
My
2014 May 14
2
Virtualising legacy CentOS 4.x servers
Dear all,
I look after a number of CentOS 4.x servers running legacy
applications that depend on ancient versions of various things (such
as MySQL 3.x) and which can't be upgraded without non-trivial
development effort.
I've been considering virtualising them and as a test have been
trialling with a company that uses Parallels Cloud Server 6.
However, I've run into a roadblock
2007 Sep 13
3
3Ware 9550SX and latency/system responsiveness
Dear list,
I thought I'd just share my experiences with this 3Ware card, and see
if anyone might have any suggestions.
System: Supermicro H8DA8 with 2 x Opteron 250 2.4GHz and 4GB RAM
installed. 9550SX-8LP hosting 4x Seagate ST3250820SV 250GB in a RAID
1 plus 2 hot spare config. The array is properly initialized, write
cache is on, as is queueing (and supported by the drives). StoreSave
2009 Sep 28
1
[LLVMdev] Appending linkage
This is an issue I raised a while ago, but I wanted to know if the situation
had improved at all recently.
The issue is determining the number of elements in an array that has
appending linkage.
The obvious course would be to use a constant GEP. Suppose we have N
modules, each containing a global variable with appending linkage whose
initializer is an array of size M containing elements of type
2014 Aug 01
2
[LLVMdev] Create "appending" section that can be partially dead stripped
Hi,
Is there a way in llvm IR to emit multiple data elements within a
single compilation unit that
a) are guaranteed to appear sequentially in the final binary (in the
order they appear in the llvm IR), and
b) will be removed on an individual basis by the optimizers and/or
linker in case they are not referenced from anywhere
?
Defining them as "appending" puts them all into a
2009 Dec 10
2
[LLVMdev] Appending linkage
On Thu, Dec 10, 2009 at 12:26 AM, Robin Sommer <robinsommer at web.de> wrote:
>
> On Sat, Dec 05, 2009 at 22:56 -0800, I wrote:
>
>> the LLVM documentation lists the 'appending' linkage for having the
>> linker combine two arrays. I'm wondering though if it's then
>> possible to get the size of the combined array, e.g., for iterating
>> over
2008 Oct 15
2
R: "in-place" appending to a matrix.
Hello fellow R sufferers,
Is there a way to perform an appending operation in place?
Currently, the way my pseudo-code goes is like this
for (i in 1:1000) {
if (some condition) {
newRow <- myFunction(myArguments)
X <- rbind(X, newRow) # <- this is the bottleneck!!
}
}
As you can see, it works but as the matrix X gets the size of a few million
rows, the
2009 Dec 10
0
[LLVMdev] Appending linkage
On Thu, Dec 10, 2009 at 2:05 AM, Eli Friedman <eli.friedman at gmail.com> wrote:
> On Thu, Dec 10, 2009 at 12:26 AM, Robin Sommer <robinsommer at web.de> wrote:
>>
>> On Sat, Dec 05, 2009 at 22:56 -0800, I wrote:
>>
>>> the LLVM documentation lists the 'appending' linkage for having the
>>> linker combine two arrays. I'm wondering
2009 Dec 02
5
Inquiry:How to compare two files but not in line-by-line basis?
Dear All
Can you please do me favor and let me know how can I compare two files but
not in line-by-line basis on my CentOS server ? I mean say row#1 in file1
has the same data as say row#5 in file2 , but the comm compares them in
line-by-line basis that is not intended . It seems that the diff cannot do
the job as well .
Thank you in advance
-------------- next part --------------
An HTML
2008 Apr 02
1
[LLVMdev] Question about appending linkage
John Criswell wrote:
> Talin wrote:
>
>> I'm trying to figure out how to do static initialization (like static
>> constructors in C++ or Java). I figured I would use appending linkage -
>> that is, for each module I'd generate a function that did all of the
>> static initialization for that module, and then I'd put a pointer to
>> that function in
2020 Feb 18
4
LLD doesn't handle globals with appending linkage
Hello.
I'm posting this question here, because there seem to be no LLD-specific
mailing list. Sorry in advance if this is wrong one.
I compile two C source with following command:
clang -flto -o %name.bc %name.c
LLVM is augmented with my custom pass, which amongst other things create a
global with appending linkage:
@myvar = appending constant [1 x [1 x i8]*] ...
I also have another pass
2008 Apr 02
0
[LLVMdev] Question about appending linkage
Talin wrote:
> I'm trying to figure out how to do static initialization (like static
> constructors in C++ or Java). I figured I would use appending linkage -
> that is, for each module I'd generate a function that did all of the
> static initialization for that module, and then I'd put a pointer to
> that function in an array with appending linkage. Then my
>
2020 Feb 18
2
LLD doesn't handle globals with appending linkage
On Tue, Feb 18, 2020 at 9:42 PM David Blaikie <dblaikie at gmail.com> wrote:
> I'm /guessing/ this might be related to the COFF support specifically
> (perhaps COFF has no appending linkage support - in some cases LLVM IR
> supports the union of all semantics so that different formats can be fully
> expressed - but it means when targeting certain formats, some features are
2011 Sep 14
1
Open file for reading and writing with APPEND
Hi,
I want to keep a running file of some statistics generated by a running process. Occasionally the process will be restarted.
On restart, I'd like to read the last line of the log file to set some variables to their last state, and then continue to append values to that same file.
I can't seem to get the appending part to work. I can read values form the file, but then upon the
2003 Nov 24
1
[LLVMdev] Getting The Resulting Size of Appending Linkage Array?
I think I finally understand how appending linkage type works and what
it can be used for. What isn't obvious to me is how one gets the size of
the resulting array.
I'm thinking about using this to store bits of source language
information and understand that it gets concatenated together by the
linker. At both compile time and runtime, I want to be able to load an
arbitrary bytecode
2010 Apr 11
1
[LLVMdev] llvm.global_ctors and other "appending linkage" global variables?
Can anyone explain how llc translates "appending linkage" global
variables like llvm.global_ctors into assembly? In the case I am
examining, the global_ctor variables are in multiple bitcode object
modules produced by the llvm compiler as arrays of pointers. As
documented, the arrays seem to be combined when the different bitcode
object modules are linked into one, so now there is one
2009 Dec 06
2
[LLVMdev] Appending linkage
Hi all,
the LLVM documentation lists the 'appending' linkage for having the
linker combine two arrays. I'm wondering though if it's then
possible to get the size of the combined array, e.g., for iterating
over its elements? Or how would I otherwise use the combined array?
Thanks,
Robin
--
Robin Sommer * Phone +1 (510) 666-2886 * robin at icir.org
ICSI/LBNL * Fax +1
2008 Apr 02
3
[LLVMdev] Question about appending linkage
I'm trying to figure out how to do static initialization (like static
constructors in C++ or Java). I figured I would use appending linkage -
that is, for each module I'd generate a function that did all of the
static initialization for that module, and then I'd put a pointer to
that function in an array with appending linkage. Then my
compiler-generated startup code would simply