pytorch/test/cpp/api/test.cpp
Peter Goldsborough af71fb882f
Merge autogradpp into PyTorch (#7074)
* Dump autogradpp into PyTorch

* Fixed up CMake for autogradpp/C++ API

* Made cereal a submodule

* Change search location of autogradpps mnist directory

* Add test_api to CI

* Download MNIST from the internet instead of storing in repo

* Fix warnings
2018-04-30 12:53:46 -07:00

11 lines
188 B
C++

#include "test.h"
lest::tests & specification() {
static lest::tests tests;
return tests;
}
int main( int argc, char * argv[] ) {
return lest::run( specification(), argc, argv);
}