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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
{
lib,
stdenv,
torch,
buildPythonPackage,
darwinMinVersionHook,
fetchFromGitHub,
# nativeBuildInputs
libpng,
ninja,
which,
# buildInputs
libjpeg_turbo,
# dependencies
numpy,
pillow,
scipy,
# tests
pytest,
writableTmpDirAsHomeHook,
}:
let
inherit (torch) cudaCapabilities cudaPackages cudaSupport;
pname = "torchvision";
version = "0.24.1";
in
buildPythonPackage.override { stdenv = torch.stdenv; } {
format = "setuptools";
inherit pname version;
src = fetchFromGitHub {
owner = "pytorch";
repo = "vision";
tag = "v${version}";
hash = "sha256-ddJWD2xjoNAuyZIaZD7ctcuSQZ9lSUGExWCq1W5prI8=";
};
nativeBuildInputs = [
libpng
ninja
which
]
++ lib.optionals cudaSupport [ cudaPackages.cuda_nvcc ];
buildInputs = [
libjpeg_turbo
libpng
torch.cxxdev
];
dependencies = [
numpy
pillow
torch
scipy
];
env = {
TORCHVISION_INCLUDE = "${libjpeg_turbo.dev}/include/";
TORCHVISION_LIBRARY = "${libjpeg_turbo}/lib/";
}
// lib.optionalAttrs cudaSupport {
TORCH_CUDA_ARCH_LIST = "${lib.concatStringsSep ";" cudaCapabilities}";
FORCE_CUDA = 1;
};
# tests download big datasets, models, require internet connection, etc.
doCheck = false;
pythonImportsCheck = [ "torchvision" ];
nativeCheckInputs = [
pytest
writableTmpDirAsHomeHook
];
checkPhase = ''
py.test test --ignore=test/test_datasets_download.py
'';
meta = {
description = "PyTorch vision library";
homepage = "https://pytorch.org/";
changelog = "https://github.com/pytorch/vision/releases/tag/v${version}";
license = lib.licenses.bsd3;
platforms = with lib.platforms; linux ++ lib.optionals (!cudaSupport) darwin;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|