blob: 931fd5b355e32293a3db808ebffbfc107bb88f8e (
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
|
# Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
pkgname='python-optimum'
_pkgname=${pkgname#python-}
pkgver=1.23.3
pkgrel=1
pkgdesc='Accelerate training and inference of transformers and diffusers with easy to use hardware optimization tools'
arch=('any')
url='https://github.com/huggingface/optimum'
license=('Apache')
depends=(
'python-coloredlogs'
'python-datasets'
'python-huggingface-hub'
'python-numpy'
'python-packaging'
'python-pytorch'
'python-sentencepiece'
'python-sympy'
'python-transformers'
)
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
optdepends=(
'python-datasets'
'python-evaluate'
'python-onnx'
'python-onnxruntime'
)
groups=('huggingface')
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/huggingface/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('3de30fe8bf67f522aa2acd4a2be2bea9c1e92044dc91806276abfee4b2b3f703')
build() {
python -m build -nw $_pkgname-$pkgver
}
package() {
python -m installer \
--compile-bytecode 1 \
--destdir $pkgdir \
$_pkgname-$pkgver/dist/$_pkgname-$pkgver-*-*.whl
}
|