mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
33 lines
755 B
YAML
33 lines
755 B
YAML
# Ubuntu 14.04 Trusty support
|
|
sudo: required
|
|
dist: trusty
|
|
# Enable C++ support
|
|
language: cpp
|
|
# Compiler selection
|
|
compiler:
|
|
- gcc-4.9
|
|
# Build steps
|
|
script:
|
|
- ./scripts/reconfigure_script
|
|
- mkdir build
|
|
- cd build
|
|
- ../configure CXXFLAGS="-mavx2 -mfma -fopenmp -O3 -std=c++11" LIBS="-fopenmp -lmpfr -lgmp" --enable-precision=single --enable-simd=AVX2 --enable-comms=none
|
|
- env
|
|
- cat config.log
|
|
- make
|
|
- ./benchmarks/Benchmark_dwf --threads 1
|
|
matrix:
|
|
include:
|
|
- compiler: gcc-4.9
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.9
|
|
- libmpfr-dev
|
|
- libgmp-dev
|
|
- libmpc-dev
|
|
- binutils-dev
|
|
env: CXX=g++-4.9
|