CMSIS-NN  Version 3.0.0
CMSIS NN Software Library
 All Data Structures Files Functions Variables Enumerations Enumerator Macros Groups Pages
CMakeLists.txt File Reference

Functions

 SET (ROOT ${CMSIS_PATH}) option(CONCATENATION"Concatenation"ON) option(FULLYCONNECTED"Fully Connected"ON) option(CONVOLUTION"Convolutions"ON) option(ACTIVATION"Activations"ON) option(POOLING"Pooling"ON) option(SOFTMAX"Softmax"ON) option(BASICMATHSNN"Basic Maths for NN"ON) option(RESHAPE"Reshape"ON) option(SVDF"SVDF"ON) option(NNSUPPORT"NN Support"ON) SET(NN $
 
CMSIS NN list (APPEND CMAKE_MODULE_PATH ${NN}/Source) add_library(CMSISNN INTERFACE) if(BASICMATHSNN) add_subdirectory(BasicMathFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNBasicMaths) endif() if(CONCATENATION) add_subdirectory(ConcatenationFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNConcatenation) endif() if(FULLYCONNECTED) add_subdirectory(FullyConnectedFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNFullyConnected) endif() if(CONVOLUTION) add_subdirectory(ConvolutionFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNConvolutions) endif() if(ACTIVATION) add_subdirectory(ActivationFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNActivation) endif() if(POOLING) add_subdirectory(PoolingFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNPooling) endif() if(SOFTMAX) add_subdirectory(SoftmaxFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNSoftmax) endif() if(SVDF) add_subdirectory(SVDFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNSVDF) endif() if(RESHAPE) add_subdirectory(ReshapeFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNReshape) endif() if(NNSUPPORT) add_subdirectory(NNSupportFunctions) target_link_libraries(CMSISNN INTERFACE CMSISNNSupport) endif() target_include_directories(CMSISNN INTERFACE"$
 

Function Documentation

CMSIS NN list ( APPEND CMAKE_MODULE_PATH ${NN}/  Source)
SET ( ROOT ${CMSIS_PATH}  )