Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] OpenMP support for compiled trees #26

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ MANIFEST
TARGETS
*.pyc
*.so
.pytest_cache/
25 changes: 18 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
sudo: false
language: python
python:
- "2.7"
- "3.5"
- "3.6"
language: c
# compiler:
# - gcc
# - clang
os:
- osx
- linux
env:
matrix:
- CONDA_PY=2.7
- CONDA_PY=3.5
- CONDA_PY=3.6
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- ulimit -n 2048
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CONDA_FLAVOUR='Linux'; else CONDA_FLAVOUR='MacOSX'; fi;
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-${CONDA_FLAVOUR}-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
- conda create --name test_env --yes python=$TRAVIS_PYTHON_VERSION
- conda create --name test_env --yes python=$CONDA_PY
- source activate test_env
# - if [[ "$CC" == "gcc" && "$TRAVIS_OS_NAME" == "osx" ]]; then conda install --yes gcc; fi;
- conda install --yes scipy nose scikit-learn joblib six
- pip install coverage codecov
- $CC --version
install:
- python setup.py build_ext --inplace
script:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ install:
- conda install -q six numpy scikit-learn joblib nose
- conda install -q -c msys2 m2w64-toolchain m2w64-dlfcn pywin32
- pip install coverage codecov
- set "CXX=gcc -pthread"
- set "CXX=g++ -pthread"
- python setup.py build_ext --inplace --compiler=mingw32 -llibdl

build: false
Expand Down
Loading