https://github.com/Microsoft/CNTK
Raw File
Tip revision: 76ffa9eb7e4804887b3e89d58666e3222704a5cc authored by Dong Yu on 11 January 2017, 06:07:19 UTC
fix BlockMomentumSGD.h
Tip revision: 76ffa9e
test.bat
setlocal

cd "%~dp0"

set PATH=%CD%\..\..\x64\Release;%PATH%
set PYTHONPATH=%CD%;%CD%\examples;%PYTHONPATH%

pushd cntk\tests
echo RUNNING cntk unit tests...
pytest --deviceid gpu
echo(
popd

pushd cntk\ops\tests
echo RUNNING cntk\ops unit tests...
pytest
echo(
popd

pushd ..\..\Tests\EndToEndTests\CNTKv2Python\Examples
echo RUNNING cntk\Tests\EndToEndTests\CNTKv2Python\Examples tests
pytest
echo(
popd


endlocal
back to top