blob: 06fe7683fffb2b4d552c861fd01f67edc223d37a (
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
|
# Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
# Contributor: jzbor <zborof at posteo dot de>
pkgname=python-accelerate
_pkgname=${pkgname#python-}
pkgver=1.6.0
pkgrel=1
pkgdesc='A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision'
arch=('any')
url='https://github.com/huggingface/accelerate'
license=('Apache-2.0')
groups=('hugginface')
depends=(
'python-huggingface-hub'
'python-numpy'
'python-packaging'
'python-psutil'
'python-pytorch'
'python-safetensors'
'python-yaml'
)
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
checkdepends=('python-tokenizers' 'python-transformers')
optdepends=(
'python-deepspeed: DeepSpeed for easy and efficient ditributive training'
'python-rich: Rich output to console'
'python-torchao: Architecture optimization in PyTorch'
)
source=("$_pkgname-$pkgver.tar.gz::https://github.com/huggingface/$_pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('d3e14b37de09101ce2f858cbb9deaf672d21556141623f36135459e7a03546a7')
build() {
cd $_pkgname-$pkgver
python -m build -n -w
}
check() {
cd $_pkgname-$pkgver/src
python -c 'import accelerate'
}
package() {
cd $_pkgname-$pkgver
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
python -m installer --compile-bytecode=1 --destdir=$pkgdir \
dist/$_pkgname-$pkgver-py3-*-*.whl
}
|