Displaying 20 results from an estimated 900 matches similar to: "Strange behaviour when running R from within Emacs on Winddows"
2014 Jul 15
3
[LLVMdev] Does LLVM 3.5 works with IR from LLVM 3.0?
On Tue, Jul 15, 2014 at 10:46 AM, John Criswell <jtcriswel at gmail.com> wrote:
> On 7/15/14, 9:32 AM, Gaoyao Xiao wrote:
>
> Hi,
>
>
> I have some IR files which can be compiled using llc-3.0 and gcc-4.6.3.
> I want to instrument these IR files. My instrumentation pass is implemented
> under LLVM-3.5 and some data structures in LLVM-3.5 are not available on
>
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
On Thu, Jun 3, 2010 at 10:45 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote:
>> Hi Eli,
>>
>> Thanks for that. Rookie mistake on my side. It solves the linking issue.
>> However, it was not the main problem. The problem is when I execute the
>> linked file ( modified bitcode + file containing the function), I get an
>> assertion error - Assertion `Addr
2005 May 27
0
[LLVMdev] SSA in the Front End
Ricardo wrote:
> Hi,
>
> I have been looking into the code that generates the LLVM assembly in the LLVM front end, but I am
> not very sure if at the time that the llvm_c_expand_body_1 function is called, the SSA form was
> already constructed (each definition dominates all the uses). Can somebody please tell me?
The LLVM GCC frontend does not translate variables directly into
2005 May 28
1
[LLVMdev] SSA in the Front End
Thanks for the explanation. It's more clear now
The only thing that seems strange is that in the function llvm_expand_shortcircuit_truth_expr in
the front end, there is the creation of a PHI instruction. If there is no SSA yet, why do you do
that?
Thanks in advance
--- John Criswell <criswell at cs.uiuc.edu> wrote:
> Ricardo wrote:
> > Hi,
> >
> > I have been
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
On Fri, Jun 4, 2010 at 12:09 AM, Nehal Gandhi <nbg2k7 at gmail.com> wrote:
> On Thu, Jun 3, 2010 at 10:45 PM, Nehal Gandhi <nbg2k7 at gmail.com> wrote:
>>> Hi Eli,
>>>
>>> Thanks for that. Rookie mistake on my side. It solves the linking issue.
>>> However, it was not the main problem. The problem is when I execute the
>>> linked file (
2004 Aug 06
1
Relay of title info
Hi Icecast users!
I have a Debian box running with Icecast 1.3.11, installed from package
icecast-server 1:1.3.11-4.3 from the unstable tree.
It's purpose is to relay a bunch of stations using the alias
functionality. It all works like a charm except the title information.
When relaying stations like Groove Salad from soma.fm WinAMP doesn't show
the title info.
In my icecast.conf
2009 Jul 13
1
are new directories created inside the partial dir?
When --partial-dir is used rsync creates new or updated files inside a
temporary dir. For example the new version of some/path/file is
created in some/path/<partial-dir-name>/file and later moved.
What happens if a new directory is created? If
some/path/newdir/newfile is to be copied, is it done in
some/path/<partial-dir-name>/newdir/<partial-dir-name>/newfile? Or is
newdir
2010 Jun 04
2
[LLVMdev] Inserting a function call into bitcode
Hi Eli,
I have attached a tar file containing Pass (ConditionPass.cpp), External
function (PrintRes.cpp) and test program (try.c). I use command chain as
describe in previous mail.
Thanks,
Nehal.
-----Original Message-----
From: Eli Friedman [mailto:eli.friedman at gmail.com]
Sent: Friday, June 04, 2010 3:39 AM
To: Nehal Gandhi
Cc: llvmdev at cs.uiuc.edu
Subject: Re: [LLVMdev] Inserting a
2013 Jan 16
1
Read.dta and Write.dta Binary Data Error
Thanks in advance.
I pass data sets between R and Stata and think dta files would be the best
files for this. To do this I can use package foreign or package memisc. I
mostly use foreign, although have used memisc and this problem mostly didn't
happen, but created errors at other times.
I have a csv data set (and created a test case) with with at least one
column completely missing. This
2004 Apr 30
1
--backup requires remote connection?
Does the --backup, --backup-dir set require that either then source or
target be a remote connection?
Test folder hierarchy:
/Users/localskaiser/source/myfile.txt
/Users/localskaiser/source/a/b/c/newfile.txt
/Users/localskaiser/target
/Users/localskaiser/archive
I can not get the following command to work (after running it once, and
then modifying newfile.txt):
[skaiser-pbg4:~] localska%
2006 Jun 03
1
[LLVMdev] Help with pass ordering
Dear llvm guys,
I am trying to add the BreakCriticalEdges pass to my application. I
tried to add it to the PNE pass (e.g. PHIElimination.cpp -
AU.addRequiredID(BreakCriticalEdgesID); ), but I get this error:
llc -f -regalloc=simple Base1Sum.bc -o simple.s
-----------------------------------------------
llc: PassManagerT.h:387: void
llvm::PassManagerT<Trait>::markPassUsed(const
2000 Jul 06
1
R 1.1.0 dev.print()
Hi, I just upgraded to 1.1.0 from 1.0.1 this morning on my OSF/1
machine. I now have problems with the following code:
%E /tmp 43% R --vanilla
Version 1.1.0 (June 15, 2000)
...
> test2 <- function ()
{
plot(runif(30))
ofile <- "/tmp/newfile.ps"
dev.print(file = ofile)
}
+ + + + + > > test2()
Error in device(...) : Object "ofile" not found
However, if
2017 Jan 24
1
Samba shared folders: file permission bits issue
Dear Samba list,
I set up a samba server on debian. The samba version is 4.2.10, and the server configuration is as follows:
# Global parameters
[global]
server role = standalone server
security = USER
map to guest = Bad User
obey pam restrictions = Yes
syslog = 0
log file = /var/log/samba/log.%m
max log
2008 Apr 30
2
ordering a factor in boxplot output
I'm sure I'm missing something obvious in the documentation...
I'm generating a boxplot
boxplot(CleanValue~ApptCategory*ReportingCode,data=newfile)
where ApptCategory is a factor with possible values ("New","Established")
Problem is, the output orders those factors alphabetically, and I'd really
rather see New come first. I'm apparently confused by the
2010 Jun 04
5
[LLVMdev] Inserting a function call into bitcode
Hi All,
I am trying to write code for simple instrumentation. What I want to do is
to insert a call to an external function for result of each conditional
branch instruction. This external function simply print true or false based
on the result of condition. The modified code is then written into new file.
However when I try to link that file with another bitcode file (containing
external
2006 May 29
3
File.size() on Uploaded Images Fail
I am checking the file size of an uploaded file and storing it in a filesize
column. It will work just fine when the user uploads any files other than
images (jpg,png,gif).
Word, Excel, Powerpoint, .zip and more all work fine.
This is my model asset.rb that handles the file upload.
def newfile=(newfile_field)
self.filename = base_part_of(newfile_field.original_filename)
self.filetype
2010 Mar 09
1
sed help
Hi
Can I know how to use sed to substitue 2 instead of 1 at the same time?
eg:
sed 's/pchloe.com/abc.com/ ; /192.92.123.5/10.10.0.3/g' orgfile >> newfile
thank you
__________________________________________________________________
Be smarter than spam. See how smart SpamGuard is at giving junk email the boot with the All-new Yahoo! Mail. Click on Options in Mail and
2010 Jun 09
2
Question on trying to build R 2.11.1 on Tru64(aka OSF1)
First I tried 'setenv R_SHELL /usr/local/bin/bash', as bash is the weapon
of choice for the faculty wishing to use R, then ran ./configure as before.
The ./configure output line
using as R_SHELL for scripts ... /usr/local/bin/bash
would seem to indicate that the R_SHELL environment variable was recognized
and acknowledged. However, I got the same build error:
gnumake[2]: Entering
2010 Jul 08
5
No space left on device on not full filesystem
Hello,
We have running lustre 1.8.1 and have met "No space lest on device"
error when uploading 500 Gb small files (less then 100 Kb each).
The problem seems to depends on the number of files. If we remove one
file, we can create one new file, even with Gb size; but if we haven''t
remove something we can''t create even very little file, as an example
using touch
2008 Dec 17
1
using dvi with latex object: directory not correctly set, maybe due to error in shQuote()
Dear friends of R,
I want to produce a pdf file with the contents of a matrix. I employ the latex command in combination with dvi, both contained in the Hmisc package. It seems to me that the function does not correctly set the directory.
> tbl.loc <- matrix(1:4, nc=2)
> latex.obj <- latex(tbl.loc)
> dvi(latex.obj)
warning: extra args ignored after 'cd'
H:\PROJECTS\data