pkg: add support to gemmlowp library

This commit is contained in:
Alexandre Abadie 2019-11-27 22:17:50 +01:00
parent 4fc31b51f8
commit 2af88551e7
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
4 changed files with 26 additions and 0 deletions

9
pkg/gemmlowp/Makefile Normal file
View File

@ -0,0 +1,9 @@
PKG_NAME=gemmlowp
PKG_URL=https://github.com/google/gemmlowp
PKG_VERSION=dc69acdf61d7a64260ae0eb9c17421fef0488c02
PKG_LICENSE=Apache2.0
include $(RIOTBASE)/pkg/pkg.mk
all:
"$(MAKE)" -C $(PKG_BUILDDIR) -f $(CURDIR)/Makefile.$(PKG_NAME)

View File

@ -0,0 +1,5 @@
MODULE = gemmlowp
NO_AUTO_SRC = 1
include $(RIOTBASE)/Makefile.base

View File

@ -0,0 +1,3 @@
INCLUDES += -I$(PKGDIRBASE)/gemmlowp
CXXEXFLAGS += -Wno-sign-compare

9
pkg/gemmlowp/doc.txt Normal file
View File

@ -0,0 +1,9 @@
/**
* @defgroup pkg_gemmlowp GEMM (General Matrix Multiplication) library
* @ingroup pkg
* @brief Provides support for GEMM library from Google
*
* Only provided in RIOT as a dependency of the TensorFlow-Lite package.
*
* @see https://github.com/google/gemmlowp
*/