#!/bin.sh
#
#Usage: gputest.sh
#$ -N theano
#$ -S /bin/sh
#$ -cwd
#$ -j y
#$-m be
#$ -M pp232@njit.edu
#$ -l gpu=1

/bin/echo Running on host: 'hostname'.
/bin/echo In directory: 'pwd'
/bin/echo Starting on: 'date'

. /opt/modules/init/bash
module load cuda
module load anaconda
module loda blas-gnu4
module load lapack-gnu4
module load openblas
module load gsl-gnu4
module load atlas

THEANO_FLAGS='floatX=float32,device=gpu0,nvcc.fastmath=True' python /home/p/pp232/project_Theano/mlpTest.py > output
















