tkDNN library version 0.1

This commit is contained in:
Francesco Gatti
2017-06-29 12:50:27 +00:00
parent d80ec7f6ee
commit 743c2dbfa4
+16
View File
@@ -0,0 +1,16 @@
/**
This is the core header of the library, it should be used only this
*/
#include "Network.h"
#include "Layer.h"
namespace tkDNN {
/**
Return the tkDNN version
*/
int getVersion() {
return 100;
}
}