Skip to content

Commit

Permalink
buildbot includes theano.gpuarray
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Lefrancois committed May 5, 2017
1 parent e302237 commit e7b2dc8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Binary file removed .DS_Store
Binary file not shown.
10 changes: 8 additions & 2 deletions .jenkins/jenkins_buildbot_dlt.sh
Expand Up @@ -66,11 +66,17 @@ echo "git version for Theano:" `git rev-parse HEAD`
cd ${WORKSPACE}/code
echo "git version:" `git rev-parse HEAD`

echo "executing nosetests speed with mode=FAST_RUN"
echo "==== Executing nosetests speed with mode=FAST_RUN"
NAME=dlt_speed
FILE=${BUILDBOT_DIR}/${NAME}_tests.xml
THEANO_FLAGS=${FLAGS},mode=FAST_RUN ${NOSETESTS} ${XUNIT}${FILE} ${SUITE}${NAME} test.py:speed
echo "executing nosetests with mode=FAST_RUN,floatX=float32"

echo "==== Executing nosetests with mode=FAST_RUN,floatX=float32"
NAME=dlt_float32
FILE=${BUILDBOT_DIR}/${NAME}_tests.xml
THEANO_FLAGS=${FLAGS},mode=FAST_RUN,floatX=float32 ${NOSETESTS} ${XUNIT}${FILE} ${SUITE}${NAME}

echo "==== Executing nosetests with mode=FAST_RUN,floatX=float32,device=cuda"
NAME=dlt_float32_cuda
FILE=${BUILDBOT_DIR}/${NAME}_tests.xml
PYTHONPATH=${BUILDBOT_DIR}/Theano:${BUILDBOT_DIR}/DeepLearningTutorials/code:${PYTHONPATH} THEANO_FLAGS=${FLAGS},mode=FAST_RUN,floatX=float32,device=cuda nosetests-2.7 test.py ${XUNIT}${FILE} ${SUITE}${NAME}

0 comments on commit e7b2dc8

Please sign in to comment.