blob: 16970f4f0a6cdb141264b83cb6c0cd2928b44a2d (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
# dependencies
torch,
scipy,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "torchdiffeq";
version = "0.2.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-tQ03YNE/0TjczqxlH0uAOW9E/vzr0DegM/7P6qnMEuc=";
};
propagatedBuildInputs = [
torch
scipy
];
pythonImportsCheck = [ "torchdiffeq" ];
# no tests in sdist, no tags on git
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Differentiable ODE solvers with full GPU support and O(1)-memory backpropagation";
homepage = "https://github.com/rtqichen/torchdiffeq";
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
}
|