https://github.com/vitay/ANNarchy
Revision 080e9dd79cc29d74dff47f532cdf4e03b690f90d authored by Julien Vitay on 22 December 2018, 12:39:15 UTC, committed by Julien Vitay on 22 December 2018, 12:39:15 UTC
1 parent 125ba59
Raw File
Tip revision: 080e9dd79cc29d74dff47f532cdf4e03b690f90d authored by Julien Vitay on 22 December 2018, 12:39:15 UTC
first attempt to speedup spiking networks with variable delays. Speedup up impressive on COBA (1s instead of 50s...), but have to check validness
Tip revision: 080e9dd
.travis.yml
sudo: required
dist: trusty
language: python
python:
  - "2.7"
  - "3.5"
  - "3.6"
cache: apt
addons:
  apt:
    packages:
    - libatlas-dev
    - libatlas-base-dev
    - liblapack-dev
    - gfortran
before_install:
  - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
      wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
    else
      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
    fi
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

install:
  - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose sympy cython matplotlib
  - source activate test-environment
  - python setup.py install
# command to run tests
script: python tests/test_openMP.py
# Branches to build
branches:
  only:
    - master
    - develop
back to top