search for: stonybrook

Displaying 20 results from an estimated 53 matches for "stonybrook".

2012 Nov 05
1
[LLVMdev] Unable to Run Inline Asm with MCJIT
...Varinder Singh Subject: Re: [LLVMdev] Unable to Run Inline Asm with MCJIT Hi Amit, You're not doing anything wrong. This is an error in 'lli' not properly initializing the native target libraries. Fixed in SVN trunk r167392. -Jim On Nov 4, 2012, at 4:09 PM, Amit Arya <aarya at cs.stonybrook.edu<mailto:aarya at cs.stonybrook.edu>> wrote: Hi, I am first year PhD student at Stony Brook University. For one of my projects I am trying to JIT compile and run a C program containing inline assembly using MCJIT but I am not able to. I have cloned and build LLVM-3.1. Below are more d...
2012 Nov 05
0
[LLVMdev] Unable to Run Inline Asm with MCJIT
Hi Amit, You're not doing anything wrong. This is an error in 'lli' not properly initializing the native target libraries. Fixed in SVN trunk r167392. -Jim On Nov 4, 2012, at 4:09 PM, Amit Arya <aarya at cs.stonybrook.edu> wrote: > Hi, > > I am first year PhD student at Stony Brook University. For one of my projects I am trying to JIT compile and run a C program containing inline assembly using MCJIT but I am not able to. > > I have cloned and build LLVM-3.1. Below are more details. > &g...
2020 Jun 09
2
[cfe-dev] Adding SYCL tests in test-suite
...tel.com> Cc: LLVM Developers <llvm-dev at lists.llvm.org>; bhomerding at anl.gov; Finkel, Hal J. <hfinkel at anl.gov>; Kruse, Michael <michael.kruse at anl.gov>; Malik,Abid <amalik at bnl.gov>; Clement, Valentin <clementv at ornl.gov>; Neeraj Ganu <neeraj.ganu at stonybrook.edu> Subject: Re: [cfe-dev] Adding SYCL tests in test-suite Sounds great. Did he also put in nobs to limit parallelism, make sure not to oversubscribe the system, etc. ? On 6/8/20 4:53 PM, Kaylor, Andrew wrote: Hi Johannes, The structure you suggested makes sense to me. Vladimir Lazar...
2012 Nov 05
2
[LLVMdev] Unable to Run Inline Asm with MCJIT
Hi, I am first year PhD student at Stony Brook University. For one of my projects I am trying to JIT compile and run a C program containing inline assembly using MCJIT but I am not able to. I have cloned and build LLVM-3.1. Below are more details. Arch : x86 OS : Linux ubuntu 2.6.35-22-generic Sample program : test_inline_asm.c ------------------- #include <stdio.h> int main(){ int
2013 Oct 12
2
[LLVMdev] Building for a specific target, corei7
...or clang, I was passing the "-march=corei7" flag. For gcc, I was passing the "-mcpu=corei7" flag. Am I passing the correct flags? Any help, comments or suggestions, would be helpful. Thanks, -- Varun Agrawal PhD Student Computer Science, Stony Brook University http://compas.cs.stonybrook.edu/~vagrawal/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131012/9aed7f2c/attachment.html>
2013 Oct 14
0
[LLVMdev] Building for a specific target, corei7
Hi Varun, I see the point of your question, but I'm not the best person to answer from that perspective. Nadav Rotem is the owner of the x86 backend, and he can probably give you a more complete answer than I could. Thanks, Andy From: Varun Agrawal [mailto:vagrawal at cs.stonybrook.edu] Sent: Friday, October 11, 2013 8:48 PM To: Kaylor, Andrew; llvmdev at cs.uiuc.edu Subject: RE: Building for a specific target, corei7 Hi Andrew, I think I diluted my question. My question was not related to MCJIT. I ran the following 4 scenarios: (1)gcc -mcpu=corei7 tetris.c -o tetris (2)gc...
2013 Oct 11
2
[LLVMdev] Building for a specific target, corei7
...or clang, I was passing the "-march=corei7" flag. For gcc, I was passing the "-mcpu=corei7" flag. Am I passing the correct flags? Any help, comments or suggestions, would be helpful. Thanks, -- Varun Agrawal PhD Student Computer Science, Stony Brook University http://compas.cs.stonybrook.edu/~vagrawal/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131011/a6c5c399/attachment.html>
2016 Jul 31
0
[Openmp-dev] How to get the function definition of a kmpc_micro call
...rings). > > > > Thanks in advance for any help, > > > > > > -- > > Dounia KHALDI > > Research Assistant Professor > > Institute for Advanced Computational Science > > Stony Brook University > > Stony Brook, NY 11794-5250 > > www.iacs.stonybrook.edu > > > > _______________________________________________ > > LLVM Developers mailing list > > llvm-dev at lists.llvm.org > > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev > > _______________________________________________ > > Openmp-dev mailin...
2016 Jul 26
2
[LLVMdev] Interprocedural use-def chains
...TargetIfPossible()) { > pushToWorklist(F->getArgument(ArgNo)->users()); // Or recurse > } > } > > -- Sanjoy > -- Dounia KHALDI Research Assistant Professor Institute for Advanced Computational Science Stony Brook University Stony Brook, NY 11794-5250 www.iacs.stonybrook.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160726/e33544a2/attachment.html>
2016 Jul 26
2
[LLVMdev] Interprocedural use-def chains
...ed function as well. Currently, what USE does is that it returns the call as a use and stops there. Any information or ideas would be appreciated. -- Dounia KHALDI Research Assistant Professor Institute for Advanced Computational Science Stony Brook University Stony Brook, NY 11794-5250 www.iacs.stonybrook.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160726/40900586/attachment.html>
2012 Aug 25
2
[LLVMdev] How to Check whether BasicBlock resides in a conditional branch
2012/8/25 Iaroslav Markov <ymarkov at cs.stonybrook.edu>: > Can't you do it by performing some analysis on CFG? You can traverse that structure with BFS. And after that for all the BB you have visited more than once, you try to find a parent that has a branch instruction as a terminator. Additionally you ensure that there are no BB with br...
2012 Jan 28
2
finding rows in a matrix that match a vector
Hi, Please excuse my ignorance, but I am just learning R (this is my very first day programming in R) and having a really hard time figuring out how to do the following: I have a matrix that is 1000 row by 6 columns (named 'table.combos') and a 1 row by 6 column vector (named 'mine'). I want to find every row in 'table.combos' that equals 'mine' and then count
2013 Oct 11
0
[LLVMdev] Building for a specific target, corei7
...or clang, I was passing the "-march=corei7" flag. For gcc, I was passing the "-mcpu=corei7" flag. Am I passing the correct flags? Any help, comments or suggestions, would be helpful. Thanks, -- Varun Agrawal PhD Student Computer Science, Stony Brook University http://compas.cs.stonybrook.edu/~vagrawal/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131011/449ec587/attachment.html>
2020 Jun 08
2
[cfe-dev] Adding SYCL tests in test-suite
...tel.com> Cc: LLVM Developers <llvm-dev at lists.llvm.org>; bhomerding at anl.gov; Finkel, Hal J. <hfinkel at anl.gov>; Kruse, Michael <michael.kruse at anl.gov>; Malik,Abid <amalik at bnl.gov>; Clement, Valentin <clementv at ornl.gov>; Neeraj Ganu <neeraj.ganu at stonybrook.edu> Subject: Re: [cfe-dev] Adding SYCL tests in test-suite Hi Andy, [-cfe-dev, llvm-dev seems sufficient for this] First, apologies for not responding earlier. I CC'ed a few people that might be interested in this (or at least in the path we'll take). On 4/16/20 5:44 PM, Kayl...
2016 Jul 30
0
How to get the function definition of a kmpc_micro call
...he call __kmpc_fork_call? By clean I mean where I can manipulate IR and LLVM methods (and not compare strings). Thanks in advance for any help, -- Dounia KHALDI Research Assistant Professor Institute for Advanced Computational Science Stony Brook University Stony Brook, NY 11794-5250 www.iacs.stonybrook.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160729/0681fd24/attachment.html>
2016 Aug 01
1
[LLVMdev] Interprocedural use-def chains
On Tue, Jul 26, 2016 at 3:05 PM Dounia Khaldi via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Thanks for your reply. > > Yes, I was about to recurse over the use list of the argument in the > called function. I did not want to pursue that because with this solution, > I am going to implement the interprocedural part myself and was wondering > if that was not already
2003 Apr 15
1
Installing RMySQL with MySQL-4.0.12 on Debian Linux
Hi, I got error messeges when I try to install RMySQL. The version of MySQL installed on my Debian is 4.0.12. Error messages were about the location of /include and /lib of MySQL distribution. Final error messages were; usr/bin/ld: cannot find -lz Any tips or advices? Thanks -- Sung-youn Kim -------------- Dept. of Political Science Stony Brook University (SUNY at Stony Brook) Office:
2001 Mar 07
1
mkString (PR#866)
Full_Name: Tim Keitt Version: 1.2x OS: Linux Submission from: (NULL) (129.49.19.70) The function "mkString" declared in "Rinternals.h" dumps core if passed a NULL pointer. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or
2015 Aug 18
2
NFSv4 delegation
Hi, Just out of curiosity what is in nfsv4 delegation that you think would give a benefit on your configuration? If I read back the thread you seem to have dovecot configured with director ring in front of the backends. In that case Dovecot already manages storage in a way that only one of the backends is accessing each users data at a time. So I can?t see anything but problems form enabling
2002 Apr 10
1
Layout of Fourier frequencies
I'm doing convolutions in the frequency domain and need to know the layout of the Fourier modes returned by fft. (This is leading up to a more involved question about moment generating functions, but I need to know if I've got this part correct first.) I think in 1D the pattern is: 0 1 2 3 -2 1 (even) 0 1 2 3 -3 2 1 (odd) In 2D is it simply (for a square matrix): 0 1 2 -1 (horizontal)