https://github.com/Microsoft/CNTK
Raw File
Tip revision: a3188a424ce9335241a14e231829b5e0d4176274 authored by Cheng Tang on 14 August 2017, 22:19:53 UTC
support splice with free dimension axis
Tip revision: a3188a4
run-test
#!/bin/bash

SCRIPTSDIR=$TEST_ROOT_DIR/../../Scripts

pushd $SCRIPTSDIR
echo Current dir: $SCRIPTSDIR

py.test

if [ "$?" -eq "0" ]; then
  echo "__COMPLETED__"
fi

popd

back to top