mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
* 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
11 lines
188 B
C++
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);
|
|
}
|