From owner-svn-ports-head@freebsd.org Sat Oct 5 09:49:41 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8115612E104; Sat, 5 Oct 2019 09:49:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46lhmP2pX7z4XcB; Sat, 5 Oct 2019 09:49:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4384EAFD9; Sat, 5 Oct 2019 09:49:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x959nfRN091601; Sat, 5 Oct 2019 09:49:41 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x959ne2i091596; Sat, 5 Oct 2019 09:49:40 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201910050949.x959ne2i091596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 5 Oct 2019 09:49:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513824 - in head/math: . gemmlowp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . gemmlowp X-SVN-Commit-Revision: 513824 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Oct 2019 09:49:41 -0000 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 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