Skip to content

Commit

Permalink
Merge branch 'master' of bitbucket.org:bohrium/bohrium
Browse files Browse the repository at this point in the history
  • Loading branch information
safl committed Dec 17, 2013
2 parents 7847c83 + 29eb1bc commit 98ff718
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bridge/numpy
Submodule numpy updated from b2a91e to e356be
4 changes: 2 additions & 2 deletions doc/source/installation/linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Get it!

Download and extract the current version (v0.2)::

wget http://bohrium-v0.2.tgz
tar -xzf bohrium-v0.2.tg
wget https://bitbucket.org/bohrium/bohrium/downloads/bohrium-v0.2.tgz
tar -xzf bohrium-v0.2.tgz


.. _numpy_installation:
Expand Down
4 changes: 2 additions & 2 deletions doc/source/installation/osx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ If you also want to build the Mono libraries, you also need the Mono package::

Download and extract the current version (v0.2)::

wget http://bohrium-v0.2.tgz
tar -xzf bohrium-v0.2.tg
wget https://bitbucket.org/bohrium/bohrium/downloads/bohrium-v0.2.tgz
tar -xzf bohrium-v0.2.tgz

When building and install Bohrium we need to specify the newly installed Python interpreter. In this case we use Python version 2.7::

Expand Down
10 changes: 5 additions & 5 deletions ve/cpu/compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ class process: compiler {
std::string kernel_path,
bool do_preload
) :
process_str(process_str),
process_str(process_str),
object_path(object_path),
kernel_path(kernel_path)
{
// Create an identifier with low collision...
static const char alphanum[] =
static const char alphanum[] =
"0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
Expand Down Expand Up @@ -158,7 +158,7 @@ class process: compiler {
}
symbol_file.close();
}
std::cout << nloaded-prev << " from a single shared library." << std::endl;
// std::cout << nloaded-prev << " from a single shared library." << std::endl;

res = true; // Load a single function from shared library
prev = nloaded;
Expand All @@ -170,7 +170,7 @@ class process: compiler {
nloaded += res;
}
}
std::cout << nloaded-prev << " from multiple shared libraries." << std::endl;
// std::cout << nloaded-prev << " from multiple shared libraries." << std::endl;
return nloaded;
}

Expand All @@ -188,7 +188,7 @@ class process: compiler {
);

if (0==handles.count(library)) { // Open library
handles[library] = dlopen(
handles[library] = dlopen(
library_fn.c_str(),
RTLD_NOW
);
Expand Down
1 change: 1 addition & 0 deletions vem/cluster/exec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ If not, see <http://www.gnu.org/licenses/>.
#include <iostream>
#include <vector>
#include <set>
#include <map>
#include <bh.h>

#include "bh_vem_cluster.h"
Expand Down

0 comments on commit 98ff718

Please sign in to comment.