Displaying 9 results from an estimated 9 matches similar to: "[LLVMdev] Fwd: OpenMPI and llvm-gcc"
2009 Apr 16
1
[LLVMdev] OpenMPI and llvm-gcc
Hi,
I was wondering whether or not MPI-libraries are expected to work with
llvm-gcc?
I tried to compile openmpi-1.3 using the llvm-gcc4.2-2.5-x86-darwin9
distribution on my MacBook Pro running OS 10.5.6.
Installation using the gcc (gcc version 4.0.1 (Apple Inc. build 5490))
worked well.
But for the llvm-gcc I get the following error message (during the
make):
> ....
> Making all
2007 Nov 29
2
[LLVMdev] LLVM and OpenMP
Wojciech,
I've just commited a patch to llvm-gcc 4.2, which moves openmp lowering
stuff to be run little bit earlier, so llvm-convert will catch its
result. It looks now gcc atomic & sync builtins should be introduced to
llvm as a remaining ingredient.
Example program from Diego's paper now compiles to:
@.str = internal constant [10 x i8] c"sum = %d\0A\00" ;
2010 Nov 10
2
[LLVMdev] Bug in DragonEgg or LLVM
The following code using OpenMP pragmas , when compiled with gcc 4.5 + LLVM 2.8 + DragonEgg 2.8 and ran, produces segmentation fault.
//-----------------------------------------------------------
#define LOOPCOUNT 10000
int main()
{
int bit_and = 1;
int logics[LOOPCOUNT];
int i;
for (i = 0; i < LOOPCOUNT; ++i)
{
logics[i] = 1;
}
#pragma omp parallel for schedule(dynamic,1)
2012 Sep 03
1
[LLVMdev] Accessing structure members of .omp_data_i
Hello,
I want to find out the member variable of the structure (.omp_data_i) being
accessed but the metadata and the use don't seem to be linked.
Here's is a portion of the IR generated for a function containing an OpenMP
pragma:
define internal void @bpnn_adjust_weights.omp_fn.0(i8* nocapture
%.omp_data_i) nounwind uwtable {
entry:
%0 = getelementptr inbounds i8* %.omp_data_i, i64
2009 Oct 02
1
[PATCH libguestfs] build: fix compile error
>From 3a09d409df89d72ca476ed829739b4aacf08735d Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Fri, 2 Oct 2009 16:09:19 +0200
Subject: [PATCH libguestfs] build: fix compile error
Link demo scripts with just-build library, not the installed one.
* ocaml/examples/Makefile.am (OCAMLFINDFLAGS): New variable.
(lvs, viewer): Use it.
This fix is based on a suggestion
2009 Mar 21
0
Problem running Rdoc from Rake in Rails 2.3
People,
I''m getting an error from Rake I''d like to debug. Here is a
screendump:
Fri Mar 20 23:28 /b/tmp/myfc23 maco$ rake doc:plugins:rspec
(in /b/tmp/myfc23)
rdoc -o doc/plugins/rspec --title ''Rspec Plugin Documentation'' --line-
numbers --inline-source --charset utf-8 -T html vendor/plugins/rspec/
lib/autotest/discover.rb
major-snip
95% [107/112]
2009 Mar 22
1
Problem running autotest in rails 2.3
People,
I''m trying to run autotest on rails 2.3
I get a NoMethodError.
Here is what I see:
Sat Mar 21 20:47 /b/tmp/myfc23 maco$
Sat Mar 21 20:47 /b/tmp/myfc23 maco$ autotest
loading autotest/rails_rspec
./vendor/plugins/rspec/lib/autotest/rspec.rb:24:in `initialize'': undefined
method `failed_results_re='' for #<Autotest::RailsRspec:0x1205b88>
(NoMethodError)
2017 Oct 08
0
[PATCH v2 3/4] common/mlstdutils: Introduce Option submodule.
Inspired by ocaml-extlib, introduce a module for handling option
types.
We already had the ‘may’ function (which becomes ‘Option.may’). This
adds also ‘Option.map’ (unused), and ‘Option.default’ functions.
Note this does *not* introduce the unsafe ‘Option.get’ function from
extlib.
---
builder/builder.ml | 6 ++---
builder/index.ml | 27 +++++++++------------
2011 Oct 19
4
Using SQL "IN" with RJDBC or RMySQL
Hello,
The code below works fine up until I try to use the "IN" statement in
the last line. The proper SQL format is:
SELECT * FROM this_table WHERE this_column IN (1,2,3,4,5)
But, I think I may be getting something like:
SELECT * FROM this_table WHERE this_column IN c(1,2,3,4,5)
Which makes no sense in SQL. I think it may be just a matter of string
massaging, but I'm not