提交 c29dc8ef authored 作者: Jenkins's avatar Jenkins

jenkins mac use env paths

上级 c3f95140
...@@ -13,9 +13,9 @@ export THEANO_FLAGS=init_gpu_device=cuda ...@@ -13,9 +13,9 @@ export THEANO_FLAGS=init_gpu_device=cuda
export PATH="/Users/jenkins/miniconda2/bin:/usr/local/bin:$PATH" export PATH="/Users/jenkins/miniconda2/bin:/usr/local/bin:$PATH"
# CUDA # CUDA
export PATH=/usr/local/cuda/bin${PATH:+:${PATH}} export PATH=/usr/local/cuda/bin:${PATH}
export DYLD_LIBRARY_PATH=/usr/local/cuda/lib\ export DYLD_LIBRARY_PATH=/usr/local/cuda/lib:${DYLD_LIBRARY_PATH}
${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}} export CPLUS_INCLUDE_PATH=/usr/local/cuda/include:${HOME}/cuda/include:${CPLUS_INCLUDE_PATH}
# Build libgpuarray # Build libgpuarray
GPUARRAY_CONFIG="Release" GPUARRAY_CONFIG="Release"
...@@ -45,6 +45,9 @@ export PYTHONPATH=${PYTHONPATH}:$LIBDIR/lib/python ...@@ -45,6 +45,9 @@ export PYTHONPATH=${PYTHONPATH}:$LIBDIR/lib/python
# Then install # Then install
(cd libgpuarray && python setup.py install --home=$LIBDIR) (cd libgpuarray && python setup.py install --home=$LIBDIR)
export DYLD_LIBRARY_PATH=${LIBDIR}/lib:${DYLD_LIBRARY_PATH}
export CPLUS_INCLUDE_PATH=:${LIBDIR}/include:${CPLUS_INCLUDE_PATH}
python -c 'import pygpu; print(pygpu.__file__)' python -c 'import pygpu; print(pygpu.__file__)'
mkdir -p ${BUILDBOT_DIR} mkdir -p ${BUILDBOT_DIR}
...@@ -58,4 +61,4 @@ set -x ...@@ -58,4 +61,4 @@ set -x
# Fast run and float32 # Fast run and float32
FILE=${BUILDBOT_DIR}/theano_python_fastrun_f32_tests.xml FILE=${BUILDBOT_DIR}/theano_python_fastrun_f32_tests.xml
NAME=mac_fastrun_f32 NAME=mac_fastrun_f32
THEANO_FLAGS=$THEANO_FLAGS,base_compiledir=$BASECOMPILEDIR,mode=FAST_RUN,warn.ignore_bug_before=all,on_opt_error=raise,on_shape_error=raise,floatX=float32,dnn.library_path=$HOME/cuda/lib,dnn.include_path=$HOME/cuda/include,gcc.cxxflags="-I/usr/local/cuda/include -I$LIBDIR/include -rpath $HOME/cuda/lib -L$HOME/.local/lib" python bin/theano-nose ${THEANO_PARAM} ${XUNIT}${FILE} ${SUITE}${NAME} THEANO_FLAGS=$THEANO_FLAGS,base_compiledir=$BASECOMPILEDIR,mode=FAST_RUN,warn.ignore_bug_before=all,on_opt_error=raise,on_shape_error=raise,floatX=float32,dnn.library_path=${HOME}/cuda/lib,gcc.cxxflags="-L${LIBDIR}/lib" python bin/theano-nose ${THEANO_PARAM} ${XUNIT}${FILE} ${SUITE}${NAME}
\ No newline at end of file \ No newline at end of file
#!/bin/bash #!/bin/bash
# Script for Jenkins continuous integration testing on macOS # Script for Jenkins continuous integration testing on macOS
...@@ -13,9 +14,9 @@ rsync -a $HOME/.theano/buildbot_theano_mac/ $BASECOMPILEDIR ...@@ -13,9 +14,9 @@ rsync -a $HOME/.theano/buildbot_theano_mac/ $BASECOMPILEDIR
export PATH="/Users/jenkins/miniconda2/bin:/usr/local/bin:$PATH" export PATH="/Users/jenkins/miniconda2/bin:/usr/local/bin:$PATH"
# CUDA # CUDA
export PATH=/usr/local/cuda/bin${PATH:+:${PATH}} export PATH=/usr/local/cuda/bin:${PATH}
export DYLD_LIBRARY_PATH=/usr/local/cuda/lib\ export DYLD_LIBRARY_PATH=/usr/local/cuda/lib:${DYLD_LIBRARY_PATH}
${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}} export CPLUS_INCLUDE_PATH=/usr/local/cuda/include:${HOME}/cuda/include:${CPLUS_INCLUDE_PATH}
# Build libgpuarray # Build libgpuarray
GPUARRAY_CONFIG="Release" GPUARRAY_CONFIG="Release"
...@@ -45,9 +46,12 @@ export PYTHONPATH=${PYTHONPATH}:$LIBDIR/lib/python ...@@ -45,9 +46,12 @@ export PYTHONPATH=${PYTHONPATH}:$LIBDIR/lib/python
# Then install # Then install
(cd libgpuarray && python setup.py install --home=$LIBDIR) (cd libgpuarray && python setup.py install --home=$LIBDIR)
export DYLD_LIBRARY_PATH=${LIBDIR}/lib:${DYLD_LIBRARY_PATH}
export CPLUS_INCLUDE_PATH=:${LIBDIR}/include:${CPLUS_INCLUDE_PATH}
python -c 'import pygpu; print(pygpu.__file__)' python -c 'import pygpu; print(pygpu.__file__)'
# Testing theano # Testing theano
THEANO_PARAM="theano --with-timer --timer-top-n 10 --with-xunit --xunit-file=theano_mac_pr_tests.xml" THEANO_PARAM="theano --with-timer --timer-top-n 10 --with-xunit --xunit-file=theano_mac_pr_tests.xml"
FLAGS=init_gpu_device=$DEVICE,gpuarray.preallocate=1000,mode=FAST_RUN,on_opt_error=raise,on_shape_error=raise,cmodule.age_thresh_use=604800,base_compiledir=$BASECOMPILEDIR,dnn.library_path=$HOME/cuda/lib,dnn.include_path=$HOME/cuda/include,gcc.cxxflags="-I/usr/local/cuda/include -I$LIBDIR/include -rpath $HOME/cuda/lib -L$HOME/.local/lib" FLAGS=init_gpu_device=$DEVICE,gpuarray.preallocate=1000,mode=FAST_RUN,on_opt_error=raise,on_shape_error=raise,cmodule.age_thresh_use=604800,base_compiledir=$BASECOMPILEDIR,dnn.library_path=$HOME/cuda/lib,gcc.cxxflags="-L${LIBDIR}/lib"
THEANO_FLAGS=${FLAGS} python bin/theano-nose ${THEANO_PARAM} THEANO_FLAGS=${FLAGS} python bin/theano-nose ${THEANO_PARAM}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论