17 lines
261 B
C++
17 lines
261 B
C++
/**
|
|
This is the core header of the library, it should be used only this
|
|
*/
|
|
#include "Network.h"
|
|
#include "Layer.h"
|
|
#include "NetworkRT.h"
|
|
|
|
namespace tkDNN {
|
|
|
|
/**
|
|
Return the tkDNN version
|
|
*/
|
|
int getVersion() {
|
|
|
|
return 100;
|
|
}
|
|
} |