Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python311Packages.ffcv: fix tests #322042

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 65 additions & 15 deletions pkgs/development/python-modules/ffcv/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
buildPythonPackage,
pythonAtLeast,
fetchFromGitHub,
setuptools,
lib,
libjpeg,
numba,
Expand All @@ -10,12 +12,20 @@
pytorch-pfn-extras,
terminaltables,
tqdm,
pytestCheckHook,
assertpy,
psutil,
torchvision,
webdataset,
}:

buildPythonPackage rec {
pname = "ffcv";
version = "1.0.0";
format = "setuptools";
pyproject = true;

# version 1.0.0 uses distutils which was removed in Python 3.12
disabled = pythonAtLeast "3.12";

src = fetchFromGitHub {
owner = "libffcv";
Expand All @@ -27,15 +37,13 @@ buildPythonPackage rec {
# See https://github.com/libffcv/ffcv/issues/159.
postPatch = ''
substituteInPlace setup.py \
SomeoneSerge marked this conversation as resolved.
Show resolved Hide resolved
--replace "'assertpy'," "" \
--replace "'fastargs'," "" \
--replace "'imgcat'," "" \
--replace "'matplotlib'," "" \
--replace "'psutil'," "" \
--replace "'sklearn'," "" \
--replace "'webdataset'," ""
--replace-fail "'assertpy'," "" \
--replace-fail "'fastargs'," "" \
--replace-fail "'opencv-python'," "" \
--replace-fail "'psutil'," "" \
'';

build-system = [ setuptools ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libjpeg ];
propagatedBuildInputs = [
Expand All @@ -47,16 +55,58 @@ buildPythonPackage rec {
tqdm
];

# `ffcv._libffcv*.so` cannot be loaded in the nix build environment for some
# reason. See https://github.com/NixOS/nixpkgs/pull/160441#issuecomment-1045204722.
doCheck = false;

pythonImportsCheck = [ "ffcv" ];

meta = with lib; {
# C/C++ python modules are only in the installed output and not in the build
# directory. Since tests are run from the build directory python prefers to
# import the local module first which does not contain the C/C++ python
# modules and results in an import error. By changing the directory to
# 'tests' the build directory is no long available and python will import
# from the installed output in the nix store which does contain the C/C++
# python modules.
preCheck = ''
cd tests
'';

djacu marked this conversation as resolved.
Show resolved Hide resolved
nativeCheckInputs = [
assertpy
psutil
pytestCheckHook
torchvision
webdataset
];

disabledTestPaths = [
# Tests require network access and do not work in the sandbox
"test_augmentations.py"
# Occasionally causes the testing phase to hang
"test_basic_pipeline.py"
];

disabledTests = [
# Tests require network access and do not work in the sandbox
"test_cifar_subset"
# Requires CUDA which is unfree and unfree packages are not built by Hydra
"test_cuda"
"test_gpu_normalization"
# torch.multiprocessing.spawn.ProcessRaisedException
"test_traversal_sequential_2"
"test_traversal_sequential_3"
"test_traversal_sequential_4"
"test_traversal_random_2"
"test_traversal_random_3"
"test_traversal_random_4"
"test_traversal_sequential_distributed_with_indices"
"test_traversal_random_distributed_with_indices"
];

meta = {
description = "FFCV: Fast Forward Computer Vision";
homepage = "https://ffcv.io";
license = licenses.asl20;
maintainers = with maintainers; [ samuela ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
samuela
djacu
];
};
}