2025-08-01 11:15:10 +00:00

49 lines
902 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
numpy,
torch,
torchvision,
}:
buildPythonPackage rec {
pname = "torchprofile";
version = "0.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "zhijian-liu";
repo = "torchprofile";
tag = "v${version}";
hash = "sha256-ynRrGHzroyv8T8fggJAag7u6XBOx+uN49HSIe46Bcek=";
};
build-system = [
setuptools
];
pythonRelaxDeps = [
"torchvision"
];
dependencies = [
numpy
torch
torchvision
];
pythonImportsCheck = [
"torchprofile"
];
meta = {
changelog = "https://github.com/zhijian-liu/torchprofile/releases/tag/${src.tag}";
description = "General and accurate MACs / FLOPs profiler for PyTorch models";
homepage = "https://github.com/zhijian-liu/torchprofile";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};
}