search for: sarath

Displaying 20 results from an estimated 21 matches for "sarath".

Did you mean: sarah
2011 Sep 22
2
[LLVMdev] Need help in converting int to double
On Thu, Sep 22, 2011 at 3:46 PM, sarath chandra <sarathcse19 at gmail.com>wrote: > Hi James, > > First i converted the void * to int* and then did FPToSI...then did SHL...( > because CreateShl only accepts integers... i pointer casted it to int64 type > first)... Below is the code snippet.... > > > lhs = mB...
2011 Sep 22
1
[LLVMdev] Need help in converting int to double
Yeah, that's the fault...got the answer...... Thanks James for the help... Struggling with this for so many days....... On Thu, Sep 22, 2011 at 4:02 PM, James Molloy <James.Molloy at arm.com> wrote: > Hi Sarath,**** > > ** ** > > It would have really helped if you had removed the commented out code and > inlined the calls to your homemade helper functions before sending it...** > ** > > ** ** > > You are doing this, in LLVM IR:**** > > ** ** > > %0 = getelementptr...
2011 Sep 22
3
[LLVMdev] Need help in converting int to double
..... i'm unable to store the value in my structure....(because my structure can hold Doubles,Strings). Is there any way to store the integer output in my structure( i used CreateSIToFP() to change int to double)........ Thanks in advance Regards, (¨`·.·´¨) `·.¸(¨`·.·´¨) (¨`·.·´¨)¸.·´ Sarath!!! `·.¸.·´ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110922/8d527324/attachment.html>
2011 Sep 22
0
[LLVMdev] Need help in converting int to double
Hi Sarath, It would have really helped if you had removed the commented out code and inlined the calls to your homemade helper functions before sending it... You are doing this, in LLVM IR: %0 = getelementptr %Value* %firstArg, i32 0 ; i8** %1 = load i8** %0 ; i8* %2 = bitcast i8* %1 to i64* %3 = getele...
2012 Jan 24
4
[LLVMdev] How to enable C as a target
Hi, How to enable C as a target while configuring LLVM... Can i do ' --enable-targets = x86,c ' to make it work? ´ Sarath!!! `·.¸.·´ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120124/b782e413/attachment.html>
2011 Sep 22
0
[LLVMdev] FW: Need help in converting int to double
Re-cc'ing list. Please direct all responses to the mailing list, so others can see it! Cheers, James -----Original Message----- From: James Molloy Sent: 22 September 2011 11:11 To: 'sarath chandra' Subject: RE: [LLVMdev] Need help in converting int to double Hi Sarath, Your example will break. If the values are held internally as doubles casted to void* (which incidentally will only work on 64-bit systems), just casting void* -> int* will not get you a valid integer value....
2011 Jul 22
2
Extracting components from a 'boot' class output in R
...I extract the std.error? > bootObj   ORDINARY NONPARAMETRIC BOOTSTRAP   Call: boot(data = DAT, statistic = Lp.est, R = 1000, x0 = 3)   Bootstrap Statistics :       original        bias              std. error t1*  794.9745 -0.6666341    4.042099 Any help is greatly appreciated. Thank you Sarath Banneheka [[alternative HTML version deleted]]
2012 Jan 24
1
[LLVMdev] Convert .ll file to .c file
Hi Nick, I need the module.ll file. Now how can i configure LLVM to enable "c" target? Is it that i need to build from the scratch? Is there any way to enable 'c' target also? On Tue, Jan 24, 2012 at 12:10 PM, Nick Lewycky <nicholas at mxc.ca> wrote: > Sarath Chandra wrote: > >> Hi, >> >> I wanted to convert .ll file to .c file (for the sake of debugging >> the c file). I used the command "llc" with "-march=c" option. But i'm >> getting the below error. >> >> * llc: error: invalid...
2009 Dec 17
8
how to import data from excel to R
...xcel Spread sheet to R for analyzing. I have done like this mydata<-read.table("C:\Documents and Settings\admin\Desktop\data.txt"); but its not working how can i do it regards Sarath Sankar V Spectrum Softtech Solution
2012 Jan 24
2
[LLVMdev] Convert .ll file to .c file
...dule.bc #gcc module.cbe.c -lstdc++ What i need to do to get the 'c' file generated. I build LLVM using '*enable-targets = x86*' . Can i use '*enable-targets = x86,c*' to clear the error? Thanks in advance...... * * -- Sairam, (¨`·.·´¨) `·.¸(¨`·.·´¨) (¨`·.·´¨)¸.·´ Sarath!!! `·.¸.·´ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120124/337fbdb5/attachment.html>
2012 Mar 02
4
[LLVMdev] How to use 'opt' command?
...apValue': Pass::print not implemented for pass: 'Memory Dependence Analysis'! Printing analysis 'Memory Dependence Analysis' for function 'ADD': Pass::print not implemented for pass: 'Memory Dependence Analysis'! -- (¨`·.·´¨) `·.¸(¨`·.·´¨) (¨`·.·´¨)¸.·´ Sarath!!! `·.¸.·´ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120302/851d88ef/attachment.html>
2012 Jan 24
0
[LLVMdev] Convert .ll file to .c file
Sarath Chandra wrote: > Hi, > > I wanted to convert .ll file to .c file (for the sake of debugging > the c file). I used the command "llc" with "-march=c" option. But i'm > getting the below error. > > * llc: error: invalid target 'c' * > * >...
2012 Jan 24
0
[LLVMdev] How to enable C as a target
On Tue, Jan 24, 2012 at 3:42 AM, Sarath Chandra <sarathcse19 at gmail.com> wrote: > Hi, > >     How to enable C as a target while configuring LLVM... > > Can i do ' --enable-targets = x86,c ' to make it work? use --enable-targets=x86,cbe (C BackEnd if I remember correctly) -- Eitan Adler
2012 Jan 18
2
Cloud Init
I want to start an instance using libvirt API. I want to provide ssh access for the user of the vm. Anyone know how to embed an ssh key into the instance. I came across cloud-init . but couldn't get a tutorial . Thanks in advance. -- Thank You Sarath P R | cell +91.999.502.4287 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20120118/d36a1052/attachment.htm>
2012 Mar 02
0
[LLVMdev] How to use 'opt' command?
Hi Sarah, I believe opt takes the bytecode file (.bc) not the human readable form, but i am just a learner... Sam. sarath chandra-5 wrote: > > Hi all, > > How to print the analysis results using 'opt' command? > > I tried using the below command for my *module.ll* file > > *opt -analyze -memdep module.ll* > * > * > But it's printing > > Printing analysis 'Me...
2011 Sep 23
0
[LLVMdev] Need help in converting int to double
...xamples are only between pointers and integers, not floats. Would it be worthwhile my updating the documentation to explicitly state that or is it just me? Cheers, James -----Original Message----- From: John McCall [mailto:rjmccall at apple.com] Sent: 23 September 2011 00:06 To: James Molloy Cc: sarath chandra; llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Need help in converting int to double On Sep 22, 2011, at 3:32 AM, James Molloy wrote: > It's in trouble by this point because it needs to do a fptosi on a double operand, but you've got an i64 operand and you can't reinterpret-...
2011 Sep 22
2
[LLVMdev] Need help in converting int to double
On Sep 22, 2011, at 3:32 AM, James Molloy wrote: > It’s in trouble by this point because it needs to do a fptosi on a double operand, but you’ve got an i64 operand and you can’t reinterpret-cast ints to floats in LLVM IR (AFAIK) You can bitcast ints to floats and vice-versa if they're the same size — for example, i32 to float and i64 to double. John.
2011 Sep 23
1
[LLVMdev] Need help in converting int to double
...Duncan. Would it be worthwhile my updating the documentation to explicitly state that or is it just me? > > Cheers, > > James > > -----Original Message----- > From: John McCall [mailto:rjmccall at apple.com] > Sent: 23 September 2011 00:06 > To: James Molloy > Cc: sarath chandra; llvmdev at cs.uiuc.edu > Subject: Re: [LLVMdev] Need help in converting int to double > > On Sep 22, 2011, at 3:32 AM, James Molloy wrote: >> It's in trouble by this point because it needs to do a fptosi on a double operand, but you've got an i64 operand and you can&...
2015 Nov 12
1
(no subject)
Hi, I have implemented print server using samba 4.1 & CUPS 1.7 by following steps provided at https://wiki.samba.org/index.php/Setup_a_Samba_print_server I have granted seprinteroperator rights to my domain group. While adding printer or driver am getting "access denied" error. My configurations as follows, workgroup = MYGROUP realm = MYGROUP security = ADS encrypt passwords =
2012 Jan 21
0
Kickstart file doesn't work
..." <graphics type='vnc' port='5900' autoport='yes' keymap='en-us'/>" + " <sound model='es1370'/>" + " </devices>" + "</domain>"; -- Thank You Sarath P R | cell +91.999.502.4287 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20120121/4a1a4db3/attachment.htm>