2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-02-12 12:22:07 +00:00
Files
odeint/Jamroot
Pascal Germroth fd5a419d51 1D-chain performance test. #3
Based on <9792ca4f33/osc_chain_1d/openmp2>

Use osc_chain_speedup.{sh,gnu} to compute and plot speedup.
"split" uses openmp_state/openmp_algebra;
"simple" uses vector/openmp_range_algebra
2013-07-19 02:33:58 +02:00

51 lines
1.6 KiB
Plaintext

# Copyright 2009 Karsten Ahnert and Mario Mulansky.
# Distributed under the Boost Software License, Version 1.0. (See
# accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
import os ;
import modules ;
import path ;
path-constant BOOST_ROOT : [ os.environ BOOST_ROOT ] ;
project
: requirements
<include>$(BOOST_ROOT)
<toolset>gcc:<cxxflags>"-Werror -Wall -Wno-unused-parameter -Wno-unused-variable -Wno-unknown-pragmas"
<toolset>clang:<cxxflags>"-Werror -Wall -Wextra -Wno-unused-function -Wno-unused-parameter -Wno-unknown-pragmas"
;
# tests, regression tests and examples
build-project libs/numeric/odeint/test ;
build-project libs/numeric/odeint/examples ;
build-project libs/numeric/odeint/performance/openmp ;
# additional tests with external libraries :
# build-project libs/numeric/odeint/test_external/eigen ;
# build-project libs/numeric/odeint/test_external/gmp ;
# build-project libs/numeric/odeint/test_external/gsl ;
# build-project libs/numeric/odeint/test_external/mkl ;
# build-project libs/numeric/odeint/test_external/mtl4 ;
# build-project libs/numeric/odeint/test_external/thrust ;
# build-project libs/numeric/odeint/test_external/vexcl ;
# docs:
# build-project libs/numeric/odeint/doc ;
###### The following is copied from another sandbox project #####
###### to get the quickbook and boostbook working ... #####
# local boost-root = [ modules.peek : BOOST_ROOT ] ;
# local explore-header-include = $(top)/../.. ;
# use-project /boost/regex : $(boost-root)/libs/regex/build ;
##################################################################