From 743c2dbfa48fd5b180cf4387a43cb980fc4c1046 Mon Sep 17 00:00:00 2001 From: Francesco Gatti Date: Thu, 29 Jun 2017 12:50:27 +0000 Subject: [PATCH] tkDNN library version 0.1 --- include/tkdnn.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/tkdnn.h diff --git a/include/tkdnn.h b/include/tkdnn.h new file mode 100644 index 0000000..a008d91 --- /dev/null +++ b/include/tkdnn.h @@ -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; + } +} \ No newline at end of file