blob: d0bf065049d700bd44546e8f6ad635a6d7fa3f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit python-any-r1 flag-o-matic cmake
CommitId=03b2046676707da64504e898490ab46104d4682a
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"
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 )"
S="${WORKDIR}"/${PN}-${CommitId}
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}-2022.01.13-gentoo.patch
"${FILESDIR}"/${PN}-2022.07.16-gcc13.patch
)
src_prepare() {
# Bug #855668
filter-lto
rm test/RowWiseSparseAdagradFusedTest.cc || die
rm test/SparseAdagradTest.cc || die
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
}
|