python3Packages.holistic-trace-analysis: drop (#495250)
This commit is contained in:
@@ -1,83 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build system
|
||||
setuptools,
|
||||
|
||||
# dependencies
|
||||
jupyterlab,
|
||||
numpy,
|
||||
pandas,
|
||||
plotly,
|
||||
pydot,
|
||||
torch,
|
||||
|
||||
# tests
|
||||
pytestCheckHook,
|
||||
writableTmpDirAsHomeHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "HolisticTraceAnalysis";
|
||||
version = "0.5.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "facebookresearch";
|
||||
repo = "HolisticTraceAnalysis";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-3DuoP9gQ0vLlAAJ2uWw/oOEH/DTbn2xulzvqk4W3BiY=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
jupyterlab
|
||||
numpy
|
||||
pandas
|
||||
plotly
|
||||
pydot
|
||||
torch
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
writableTmpDirAsHomeHook
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# Permission denied: '/tmp/my_saved_cp_graph/trace_data.csv'
|
||||
"test_critical_path_breakdown_and_save_restore"
|
||||
# Fails under Python 3.12 on Darwin with I/O errors
|
||||
# Permission denied: '/tmp/path_does_not_exist/...'
|
||||
"test_critical_path_overlaid_trace"
|
||||
# Permission error: [Errno 1] Operation not permitted
|
||||
"test_get_mtia_aten_op_kernels_and_delay_inference_single_rank"
|
||||
# No cuda on Darwin, can cause hangs in nixpkgs-review
|
||||
"test_frequent_cuda_kernel_sequences"
|
||||
"test_get_cuda_kernel_launch_stats_for_h100"
|
||||
"test_get_cuda_kernel_launch_stats_inference_single_rank"
|
||||
"test_get_cuda_kernel_launch_stats_training_multiple_ranks"
|
||||
];
|
||||
|
||||
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# Makes assumptions about the filesystem layout
|
||||
"tests/test_config.py"
|
||||
# EOFError -- makes assumptions about file I/O under Python 3.12
|
||||
# https://github.com/facebookresearch/HolisticTraceAnalysis/issues/300
|
||||
"tests/test_symbol_table.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "hta" ];
|
||||
|
||||
meta = {
|
||||
description = "Performance analysis tool to identify bottlenecks in distributed training workloads";
|
||||
homepage = "https://github.com/facebookresearch/HolisticTraceAnalysis";
|
||||
changelog = "https://github.com/facebookresearch/HolisticTraceAnalysis/releases/tag/v${version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jherland ];
|
||||
};
|
||||
}
|
||||
@@ -236,6 +236,7 @@ mapAliases {
|
||||
heif-image-plugin = throw "heif-image-plugin has been removed due to lack of upstream maintenance and breakage. Use `pillow-heif` instead."; # added 2025-09-17
|
||||
hglib = throw "'hglib' has been renamed to/replaced by 'python-hglib'"; # Converted to throw 2025-10-29
|
||||
hijri-converter = hijridate; # added 2025-08-07
|
||||
holistic-trace-analysis = throw "'holistic-trace-analysis' was removed because there is no such package on PyPI"; # added 2026-02-28
|
||||
homeassistant-bring-api = throw "'homeassistant-bring-api' has been renamed to/replaced by 'bring-api'"; # Converted to throw 2025-10-29
|
||||
HTSeq = throw "'HTSeq' has been renamed to/replaced by 'htseq'"; # Converted to throw 2025-10-29
|
||||
IMAPClient = throw "'IMAPClient' has been renamed to/replaced by 'imapclient'"; # Converted to throw 2025-10-29
|
||||
|
||||
@@ -7054,8 +7054,6 @@ self: super: with self; {
|
||||
|
||||
holidays = callPackage ../development/python-modules/holidays { };
|
||||
|
||||
holistic-trace-analysis = callPackage ../development/python-modules/holistic-trace-analysis { };
|
||||
|
||||
hologram = callPackage ../development/python-modules/hologram { };
|
||||
|
||||
holoviews = callPackage ../development/python-modules/holoviews { };
|
||||
|
||||
Reference in New Issue
Block a user