similar to: [LLVMdev] Google Summer of Code Project Idea

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Google Summer of Code Project Idea"

2016 Feb 11
0
attention all undergrads: BigDataX REU Site in Chicago IL -- applications due 02/29/2016
BigDataX REU Program -- Summer 2016 http://datasys.cs.iit.edu/grants/BigDataX/2016/index.html The BigDataX (from theory to practice in Big Data computing at eXtreme scales) is a Research Experiences for Undergraduates (REU) site in Chicago Illinois. The program has four mentors at two institutions, the Illinois Institute of Technology and University of Chicago, with a variety of complementing
2016 Feb 11
0
attention all undergrads: BigDataX REU Site in Chicago IL -- applications due 02/29/2016
BigDataX REU Program -- Summer 2016 http://datasys.cs.iit.edu/grants/BigDataX/2016/index.html The BigDataX (from theory to practice in Big Data computing at eXtreme scales) is a Research Experiences for Undergraduates (REU) site in Chicago Illinois. The program has four mentors at two institutions, the Illinois Institute of Technology and University of Chicago, with a variety of complementing
2000 May 27
0
Could somebody check-in my patch for "scp -L" please?
Hi! A month ago, I have submitted a simple patch for adding the missing "-L" option to scp. This option is quite useful for people behind a firewall. You can find the archived message containing the patch at: http://marc.theaimsgroup.com/?l=openssh-unix-dev&m=95685065722849&w=2 If there's any issue, please tell me about it. I am willing to help as much as I can. Thanks!
2000 Apr 27
0
Patch for supporting "-L" option in scp
Hi! I am running Debian with the following package version: Package: ssh Version: 1:1.2.3-1 Severity: normal The "-L" option, to use a non-privileged port, is missing in "scp". Here is a simple patch that implements this option. Etienne -- ---------------------------------------------------------------------- Etienne M. Gagnon, M.Sc. e-mail: egagnon at
2010 Nov 04
1
[LLVMdev] LLVM Cmake module?
Eli Gottlieb <eligottlieb at gmail.com> writes: > So you're saying that the default CMake build of LLVM creates static > libraries that got linked into my shared-object and now require me to > link in everything they require myself? Shouldn't the linker be able > to track down C++ runtime for this? You told CMake to manage your shared library as if it were a pure C
2010 Nov 03
6
[LLVMdev] LLVM Cmake module?
Eli Gottlieb <eligottlieb at gmail.com> writes: > I compiled and installed it to the prefix /usr, but that's not the > issue. Once I actually compile and install LLVM with CMake by hand, I > get the share/llvm/cmake stuff installed correctly (can those files be > included in "normal" builds, or will LLVM switch to CMake as its > primary build system?). Now
2013 Aug 28
2
netlogo r-extension loadlibrary() failures
Trying to access R from Netlogo5 (using the NetLogo R-Extension), running the configuration validation tests in NetLogo5/extensions/r/Systemcheck.nlogo, I get several loadlibrary() errors ... in rJava Check2, > library(rJava); .path.package('rJava') Error : .onLoad failed in loadNamespace() for 'rJava', details: call: inDL(x, as.logical(local), as.logical(now), ...)
2013 Feb 08
1
ClassNotFoundException when running distributed job using rJava package
Hi, I have a MapReduce Java code, which I am calling from R using rJava. I have prepared the R package and tested that successfully. But when I deployed the package in a cluster and executed it, I am getting ClassNotFoundException. If I run the same job directly without integrating with R, it runs perfectly. Here is my R code: library(rJava) muMstSpark <- function(mesosMaster = NULL, input =
2010 Nov 04
0
[LLVMdev] LLVM Cmake module?
After I actually get everything compiling, install the library, and load it from my Java program, I get the following: > Exception in thread "main" java.lang.UnsatisfiedLinkError: > /usr/lib/libjllvm.so: /usr/lib/libjllvm.so: undefined symbol: > _ZTVN10__cxxabiv120__si_class_type_infoE If I have to guess, this means that the CMake stuff given is linking to the C++ libraries
2015 Feb 28
0
[LLVMdev] Tool to convert scala to llvm-IR
Hi Vivek, At the moment there is only an unfinished prototype of LLVM backend by Geoff Reedy <http://greedy.github.io/scala-llvm/>. It's very much incomplete and is based on an outdated version of the Scala compiler. You might be glad to hear that we at LAMP/EPFL are starting a new research project in Scala <--> LLVM area soon. At the moment it's too early to provide any more
2010 Nov 04
0
[LLVMdev] LLVM Cmake module?
On Nov 4, 2010, at 11:48 AM, Óscar Fuentes wrote: > Eli Gottlieb <eligottlieb at gmail.com> writes: > >> So you're saying that the default CMake build of LLVM creates static >> libraries that got linked into my shared-object and now require me to >> link in everything they require myself? Shouldn't the linker be able >> to track down C++ runtime for
2012 Aug 03
1
[LLVMdev] Problem in LLVM CMake modules
Well for one thing, it gives one example of a CMakeLists.txt file that correctly uses LLVM, and nothing else. It gives no information on how to find out what set of components I need to map for what APIs. Neither does llvm-config list out the names of the actual components. I can use either the CMake modules or llvm-config to find the library names once I've got the component names, but
2010 Mar 30
3
[LLVMdev] Idea for Google Summer Code : C Compiler for EFI Byte Code implement in LLVM
On Mar 30, 2010, at 10:31 AM, 琬菁楊 wrote: > What do you mean by "variable sized pointers"? What does: > > struct S {void *X; }; > > return for sizeof(struct S); ? > > I have surveyed the UEFI spec2.3. > In my opinion, if the EBC VM is running on 32-bit processor, return value is 4 > if the EBC VM is running on 64-bit processor, return value is 8 > >
2010 Dec 15
3
my scala markdown implementation
Hi, I have written my own implementation of markdown in Scala. I only later realized there is already one ( <http://tristanhunt.com/projects/knockoff/> ), but I put quite some work into mine and I think it is never bad to have alternatives, so I wanted to release it anyway. I want to use the same BSD License as the original markdown, but before I put it out into the wild I wanted to ask
2010 Nov 03
2
[LLVMdev] LLVM Cmake module?
[Please CC the mailing list] Eli Gottlieb <eligottlieb at gmail.com> writes: > OK, I'm just going to paste in my CMakeLists.txt file. Like I said, > I'm building an LLVM install myself by untarring llvm, mkdir build in > the root dir of the source, cd build/, cmake .., make. > >> cmake_minimum_required (VERSION 2.6) >> project (libjllvm) >>
2010 Nov 03
0
[LLVMdev] LLVM Cmake module?
Eli Gottlieb <eligottlieb at gmail.com> writes: > The two lines >> set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} >> "${LLVM_ROOT}/share/llvm/cmake") >> include(LLVM) > don't seem to work. I'm checking with installing LLVM from source to > see if that makes it work, but the LLVM install from the Ubuntu repos > doesn't seem to have a
2012 Jul 07
0
[LLVMdev] Problem in LLVM CMake modules
Eli Gottlieb <eligottlieb at gmail.com> writes: > I'm trying to upgrade my LLVM bindings in Java from 2.9 to 3.1. To > do so, I regenerated the JNI bindings from fresh LLVM 3.1 headers, and > did a slight rewrite of my CMakeLists.txt file for building the C > code. > > Problem is, cmake no longer finishes at all. I receive the > following output, and then
2015 Feb 28
0
[LLVMdev] Tool to convert scala to llvm-IR
Hello all, I was looking into a tool / framework that will help me convert scala byte codes to llvm-IR. I have a few questions regarding the same : 1) Does such a tool exist ? If so, is it complete? 2) If so, is it complete? 3) If not, how would one proceed to create this tool ? Any pointers / links will be very helpful. Thanks -------------- next part -------------- An HTML attachment was
2009 Apr 02
0
[LLVMdev] GSOC Project Idea
Hi, My name's Eli Gottlieb, and I've got a proposal for GSOC. I've noticed that the LLVM IR-generation libraries currently only have bindings in C, C++, and OCaml. Would you like me to write bindings in Java for them? Sincerely, Eli Gottlieb UMass Amherst Computer Science, 2011
2017 Nov 15
1
unable to remove brick, pleas help
Hi, I am trying to remove a brick, from a server which is no longer part of the gluster pool, but I keep running into errors for which I cannot find answers on google. [root at virt2 ~]# gluster peer status Number of Peers: 3 Hostname: srv1 Uuid: 2bed7e51-430f-49f5-afbc-06f8cec9baeb State: Peer in Cluster (Disconnected) Hostname: srv3 Uuid: 0e78793c-deca-4e3b-a36f-2333c8f91825 State: Peer in