Displaying 20 results from an estimated 500 matches similar to: "[LLVMdev] alpha assembler with llc"
2001 Jun 01
1
Installing Rstreams lib
Dear R-helpers,
I am trying to install Rstreams library on the following platform:
----------------------------
platform alphaev67-dec-osf5.0
arch alphaev67
os osf5.0
system alphaev67, osf5.0
status
major 1
minor 2.3
year 2001
month 04
day 26
language R
---------------------------
Unfortunately, I get these error messages:
---------------------------
> [557] R
2011 Jun 29
2
[LLVMdev] hello world error
Hi All,
I am using llvm-2.9 to cross compile to alpha. I know that alpha is in
experimental stage, but i can not get even the "Hello World" program to run
on it.
Here is what happens, the bitcode file for the hello world program is as
follow:
; ModuleID = 'hello.bc'
target datalayout =
2011 Jun 29
0
[LLVMdev] hello world error
Hi,
I found that machine dead code elimination, does not respect the calling
convention of alpha and eliminates r16, which was set correctly during code
generation. I verified it with -print-after-all.
Does anybody have a patch for this?
On Wed, Jun 29, 2011 at 11:12 AM, Ankit Sethia <asethia at eecs.umich.edu>wrote:
> Hi All,
>
> I am using llvm-2.9 to cross compile to alpha. I
2003 Jan 28
2
rsync 2.5.6 fails on Tru64 v5.0 with rsync://<hostname>/
I've just compiled 2.5.6 release on Tru64 V5.0A (configure detects
alphaev67-dec-osf5.0, gcc release is a 3.1.1).
rsync fails using rsync://<hostname>/ syntax.
> lct@goliath(32) [rsync-2.5.6]$ ./rsync rsync://stitch/
> rsync: getaddrinfo: stitch 873: servname not supported for ai_socktype
> rsync error: error in socket IO (code 10) at clientserver.c(83)
Is there anyone else
2006 Jul 06
4
LVM Input/output error
Hi,
I recently installed centos for the first time and I like it!
Also, I just started working with lvm. The following warnings
are genertated whenever I run one of lvm commands on the external
usb disk (MyBook by Western Digital).
* What could be the source for those messages?
* Should I worry about them (writing into the created LV's
seems to work)?
* If yes, how to fix them?
[root
2001 Jun 26
1
compiling R-1.3.0 under Tru64 Unix
Dear all-
I get the same problem in compiling R-1.3.0 on
Tru64 Unix (OSF 5.0). Here is the final output of
the ./configure
R is now configured for alphaev67-dec-osf5.0
Source directory: .
Installation directory: /usr/local
C compiler: gcc -mieee -g -O2
C++ compiler: c++ -g -O2
FORTRAN compiler: f77 -fpe3 -g
X11 support:
2011 Jul 14
1
[LLVMdev] code generation for variadic function
Hi All,
I am trying to understand how a back-end generates code for a function that
has variable number of arguments. I would also to like to know what changes
do i have to do to the corresponding ISAs InstrInfo.td when a call to such a
function is made? Any pointers or documentation in this regard is greatly
appreciated.
--
Ankit
-------------- next part --------------
An HTML attachment
2009 Mar 13
6
please help me PLEASEEEEEEEE
Dear ALL
Please tell me how to configure Openldap in rhel 5
Please send me links & document
Thanks in advance
Ankit Jariwala
9725655020
2020 Sep 17
3
[NPM] Register target specific pass with opt
Hello LLVM community,
I was trying to port a target specific loop transformation pass (HexagonVectorLoopCarriedReusePass) to the New Pass Manager. However, I could not figure out a way to register this pass with opt. I can see that llvm/lib/Passes/PassRegistry.def is the registry for target independent passes. Can anyone point me to an example/API which can help me in registering this pass so
2011 Jun 25
3
[LLVMdev] dump a module from inside GDB to a file
Hi All,
I changed the CFG of a big function using a pass that runs on a function, I
am having trouble debugging it. Is there someway to dump a module to a file
from inside gdb? I have access to the Module pointer. Let me know if
anything else is needed.
--
*Ankit*
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2001 May 03
0
addition to Index vectors get overwriten ?!
sorry I forgot:
platform alphaev67-dec-osf4.0f
arch alphaev67
os osf4.0f
system alphaev67, osf4.0f
status
major 1
minor 2.1
year 2001
month 01
day 15
language R
--
-------------------------------------------------------
Dr. Thomas Bruns <thomas.bruns at ptb.de>
Physikalisch-Technische Bundesanstalt
2006 Apr 26
0
R Installation problem
Dear R users,
I was trying to install "R" on an ALPHA running OSF1/V5.1 for individual
use, but warning messages came out when I run "./configure" and "make".
The following is part of output:
% ./configure --prefix=$home/r
checking build system type... alphaev67-dec-osf5.1b
checking host system type... alphaev67-dec-osf5.1b
loading site script
2011 Jun 25
2
[LLVMdev] dump a module from inside GDB to a file
Ankit,
>From within GDB you can run the following command:
"call m->dump()"
This will print the module in the bitcode in a textual format.
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Ankit Sethia
Sent: Saturday, June 25, 2011 20:56
To: llvmdev at cs.uiuc.edu
Subject: [LLVMdev] dump a module from inside GDB to a file
Hi All,
I
2014 Feb 26
2
Test errors on fresh installation
Hi all,
I installed xapian smoothly as per the guidelines mentioned in
the HACKING file. However, I am getting test errors on tests related to
python3 bindings after running them using `make check` on this fresh
installation. The log can be seen here <http://pastebin.com/bnsTFG2e>. Can
anyone here help me out to figure out why they are failing? Please let me
know if any more
2001 Jun 11
1
R-devel on alpha Tru64: cxml/dxml problem (PR#977)
Hi,
I just run a ./configure --enable-R-shlib; make; make check; with a recent
(11.6.2001) R-devel snapshot on Tru64 4.0F (with libcxml):
make check stops in base-Ex.R at:
> ###--- >>> `plot.window' <<<----- Set up World Coordinates for Graphics
Window>
> ## alias help(plot.window)
>
> ##___ Examples ___:
>
> ##--- An example for the use
2011 Jun 25
0
[LLVMdev] dump a module from inside GDB to a file
Hi All,
I changed the CFG of a big function using a pass that runs on a function, I
am having trouble debugging it. Is there someway to dump a module to a file
from inside gdb? I have access to the Module pointer. Let me know if
anything else is needed.
--
Ankit
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2014 Feb 26
2
Test errors on fresh installation
Hi Olly,
I updated my local repo and built it again, but still getting the
error. I took a look at python3/test-suite.log file, but I could not locate
the source of test failure. Please find attached the log file with this
email. I am available on IRC(nick : ankit_agrawal) if that seems a
convenient medium for you to help me out with this issue. Thanks.
Regards,
Ankit Agrawal,
2009 Feb 23
6
background process
Hi all
I am working on a heavy engineering project. And the requirement is that
I needto do a lot of process before I store the data to the db.
Now the question is that I want to do the process that I am doing but I
want to do it in the background. What I actually mean to say is that..I
just want the user to get a msg that Records Saved. But in real I want
the process to go on in background.
2003 Dec 02
2
Reading transction log
I need to maintain a log that contains information on files that
are read / modified . I was suggested losf, but using lsof does
not solve the problem as files opened/closed between two
successive runs will always be missed. With reference to the
stated need I have 2 Questions.
1) can data in the journal file be of any help to me ? if yes
how, ?
2) can kjournald be used in some way ?
2012 May 07
1
Topic Modeling- package lda
Hello,
I have been using 'lda' package for topic modeling and wish to predict
new topics using a fitted model by giving new dataset as input. While
doing this, I came across the function predictive.distribution(). But
I am not able to apply it on a new dataset as the input parameter asks
for document_sums which is an output of the result from fitting the
model. Is there any way in which I