Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Oct 2019 09:49:40 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r513824 - in head/math: . gemmlowp
Message-ID:  <201910050949.x959ne2i091596@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Oct  5 09:49:39 2019
New Revision: 513824
URL: https://svnweb.freebsd.org/changeset/ports/513824

Log:
  New port: math/gemmlowp: Low-precision matrix multiplication library

Added:
  head/math/gemmlowp/
  head/math/gemmlowp/Makefile   (contents, props changed)
  head/math/gemmlowp/distinfo   (contents, props changed)
  head/math/gemmlowp/pkg-descr   (contents, props changed)
  head/math/gemmlowp/pkg-plist   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sat Oct  5 09:38:54 2019	(r513823)
+++ head/math/Makefile	Sat Oct  5 09:49:39 2019	(r513824)
@@ -245,6 +245,7 @@
     SUBDIR += gambit
     SUBDIR += gap
     SUBDIR += gau2grid
+    SUBDIR += gemmlowp
     SUBDIR += geogebra
     SUBDIR += geogram
     SUBDIR += geonext

Added: head/math/gemmlowp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gemmlowp/Makefile	Sat Oct  5 09:49:39 2019	(r513824)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	gemmlowp
+DISTVERSION=	g20190812
+CATEGORIES=	math
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Low-precision matrix multiplication library
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	google
+GH_TAGNAME=	dc69acd
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+do-install:
+.for dir in public fixedpoint eight_bit_int_gemm internal profiling meta
+	@cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${PREFIX}/include/${PORTNAME}
+.endfor
+	@${FIND} ${STAGEDIR} -name "*.cc" -delete
+
+.include <bsd.port.mk>

Added: head/math/gemmlowp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gemmlowp/distinfo	Sat Oct  5 09:49:39 2019	(r513824)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1570233373
+SHA256 (google-gemmlowp-g20190812-dc69acd_GH0.tar.gz) = 601015945fe8f80d7f5fe06f6f6ca32aab17bec6fbce1ddec52ccef0dbda06e2
+SIZE (google-gemmlowp-g20190812-dc69acd_GH0.tar.gz) = 838075

Added: head/math/gemmlowp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gemmlowp/pkg-descr	Sat Oct  5 09:49:39 2019	(r513824)
@@ -0,0 +1,4 @@
+Small, self-contained, headers-only low-precision GEMM (general matrix
+multiplication) library.
+
+WWW: https://github.com/google/gemmlowp

Added: head/math/gemmlowp/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gemmlowp/pkg-plist	Sat Oct  5 09:49:39 2019	(r513824)
@@ -0,0 +1,80 @@
+include/gemmlowp/eight_bit_int_gemm/eight_bit_int_gemm.h
+include/gemmlowp/fixedpoint/fixedpoint.h
+include/gemmlowp/fixedpoint/fixedpoint_avx.h
+include/gemmlowp/fixedpoint/fixedpoint_msa.h
+include/gemmlowp/fixedpoint/fixedpoint_neon.h
+include/gemmlowp/fixedpoint/fixedpoint_sse.h
+include/gemmlowp/internal/allocator.h
+include/gemmlowp/internal/block_params.h
+include/gemmlowp/internal/common.h
+include/gemmlowp/internal/compute.h
+include/gemmlowp/internal/detect_platform.h
+include/gemmlowp/internal/dispatch_gemm_shape.h
+include/gemmlowp/internal/kernel.h
+include/gemmlowp/internal/kernel_avx.h
+include/gemmlowp/internal/kernel_default.h
+include/gemmlowp/internal/kernel_msa.h
+include/gemmlowp/internal/kernel_neon.h
+include/gemmlowp/internal/kernel_reference.h
+include/gemmlowp/internal/kernel_sse.h
+include/gemmlowp/internal/multi_thread_gemm.h
+include/gemmlowp/internal/output.h
+include/gemmlowp/internal/output_avx.h
+include/gemmlowp/internal/output_msa.h
+include/gemmlowp/internal/output_neon.h
+include/gemmlowp/internal/output_sse.h
+include/gemmlowp/internal/pack.h
+include/gemmlowp/internal/pack_avx.h
+include/gemmlowp/internal/pack_msa.h
+include/gemmlowp/internal/pack_neon.h
+include/gemmlowp/internal/pack_sse.h
+include/gemmlowp/internal/platform.h
+include/gemmlowp/internal/simd_wrappers.h
+include/gemmlowp/internal/simd_wrappers_common_neon_sse.h
+include/gemmlowp/internal/simd_wrappers_msa.h
+include/gemmlowp/internal/simd_wrappers_neon.h
+include/gemmlowp/internal/simd_wrappers_sse.h
+include/gemmlowp/internal/single_thread_gemm.h
+include/gemmlowp/internal/unpack.h
+include/gemmlowp/meta/README
+include/gemmlowp/meta/base.h
+include/gemmlowp/meta/generators/cc_emitter.py
+include/gemmlowp/meta/generators/common.py
+include/gemmlowp/meta/generators/metagemm_generate_headers.sh
+include/gemmlowp/meta/generators/neon_emitter.py
+include/gemmlowp/meta/generators/neon_emitter_64.py
+include/gemmlowp/meta/generators/quantized_mul_kernels_arm_32.py
+include/gemmlowp/meta/generators/quantized_mul_kernels_arm_64.py
+include/gemmlowp/meta/generators/quantized_mul_kernels_common.py
+include/gemmlowp/meta/generators/streams_arm_32.py
+include/gemmlowp/meta/generators/streams_arm_64.py
+include/gemmlowp/meta/generators/streams_common.py
+include/gemmlowp/meta/generators/transform_kernels_arm_32.py
+include/gemmlowp/meta/generators/transform_kernels_arm_64.py
+include/gemmlowp/meta/generators/transform_kernels_common.py
+include/gemmlowp/meta/legacy_multi_thread_common.h
+include/gemmlowp/meta/legacy_multi_thread_gemm.h
+include/gemmlowp/meta/legacy_multi_thread_gemv.h
+include/gemmlowp/meta/legacy_operations_common.h
+include/gemmlowp/meta/legacy_single_thread_gemm.h
+include/gemmlowp/meta/multi_thread_common.h
+include/gemmlowp/meta/multi_thread_gemm.h
+include/gemmlowp/meta/multi_thread_transform.h
+include/gemmlowp/meta/quantized_mul_kernels.h
+include/gemmlowp/meta/quantized_mul_kernels_arm_32.h
+include/gemmlowp/meta/quantized_mul_kernels_arm_64.h
+include/gemmlowp/meta/single_thread_gemm.h
+include/gemmlowp/meta/single_thread_transform.h
+include/gemmlowp/meta/streams.h
+include/gemmlowp/meta/streams_arm_32.h
+include/gemmlowp/meta/streams_arm_64.h
+include/gemmlowp/meta/transform_kernels.h
+include/gemmlowp/meta/transform_kernels_arm_32.h
+include/gemmlowp/meta/transform_kernels_arm_64.h
+include/gemmlowp/profiling/instrumentation.h
+include/gemmlowp/profiling/profiler.h
+include/gemmlowp/profiling/pthread_everywhere.h
+include/gemmlowp/public/bit_depth.h
+include/gemmlowp/public/gemmlowp.h
+include/gemmlowp/public/map.h
+include/gemmlowp/public/output_stages.h



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910050949.x959ne2i091596>