mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 13:44:38 +02:00
77 lines
1.5 KiB
Bash
77 lines
1.5 KiB
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
inherit python-any-r1 flag-o-matic cmake
|
|
|
|
CommitId=dbc3157bf256f1339b3fa1fef2be89ac4078be0e
|
|
|
|
DESCRIPTION="Facebook GEneral Matrix Multiplication"
|
|
HOMEPAGE="https://github.com/pytorch/FBGEMM"
|
|
SRC_URI="https://github.com/pytorch/${PN}/archive/${CommitId}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}"/${PN}-${CommitId}
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
IUSE="doc test"
|
|
|
|
DEPEND="
|
|
>=dev-libs/asmjit-2022.07.02
|
|
dev-libs/cpuinfo
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
test? ( dev-cpp/gtest )
|
|
doc? (
|
|
$(python_gen_any_dep '
|
|
dev-python/sphinx[${PYTHON_USEDEP}]
|
|
dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]
|
|
dev-python/breathe[${PYTHON_USEDEP}]
|
|
')
|
|
)
|
|
${PYTHON_DEPS}
|
|
"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
python_check_deps() {
|
|
if use doc; then
|
|
python_has_version \
|
|
"dev-python/sphinx[${PYTHON_USEDEP}]" \
|
|
"dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]" \
|
|
"dev-python/breathe[${PYTHON_USEDEP}]"
|
|
fi
|
|
}
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-2023.11.02-gentoo.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
# Bug #855668
|
|
filter-lto
|
|
|
|
sed -i \
|
|
-e "/-Werror/d" \
|
|
CMakeLists.txt \
|
|
|| die
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DFBGEMM_LIBRARY_TYPE=shared
|
|
-DFBGEMM_BUILD_BENCHMARKS=OFF
|
|
-DFBGEMM_BUILD_DOCS=$(usex doc ON OFF)
|
|
-DFBGEMM_BUILD_TESTS=$(usex test ON OFF)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
OMP_STACKSIZE=512k cmake_src_test
|
|
}
|