Repository Analysis

ai-dynamo/dynamo

A Datacenter Scale Distributed Inference Serving Framework

12.6 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of ai-dynamo/dynamo, a Rust project with 7,895 GitHub stars. SynthScan v2.0 examined 1,595,487 lines of code across 4851 source files, recording 15027 pattern matches distributed across 26 syntactic categories. The overall adjusted score of 12.6 places this repository in the Low AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

12.6
Adjusted Score
12.6
Raw Score
100%
Time Factor
2026-08-28
Last Push
7.9K
Stars
Rust
Language
1.6M
Lines of Code
4.9K
Files
15.0K
Pattern Hits
2026-08-29
Scan Date
0.03
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 9HIGH 122MEDIUM 1909LOW 12987

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 15027 distinct pattern matches across 26 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Hyper-Verbose Identifiers6722 hits · 6268 pts
SeverityFileLineSnippetContext
LOWconftest.py65 def _patched_get_preparation_data(name):CODE
LOWdeploy/power-agent/power_agent.py130def _extract_pod_uid_from_cgroup(pid: int) -> Optional[str]:CODE
LOWdeploy/power-agent/power_agent.py1010def _restore_orphaned_gpus_on_startup(actuator: Actuator) -> None:CODE
LOWdeploy/power-agent/power_agent.py252def _load_previously_managed_gpus() -> set[str]:CODE
LOWdeploy/power-agent/power_agent.py299def _record_managed_gpu_by_uuid(uuid: str) -> None:CODE
LOWdeploy/power-agent/power_agent.py339def _flush_pending_acquisitions() -> None:CODE
LOWdeploy/power-agent/power_agent.py521def _retire_actuator_ownership(actuator: Actuator, uuid: str) -> None:CODE
LOWdeploy/power-agent/power_agent.py582def _flush_pending_retirements() -> None:CODE
LOWdeploy/power-agent/actuator.py1170 def _coerce_power_limit_watts(value: Any, field_name: str, gpu_idx: int) -> int:CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py59 def safe_default_applied_total(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py77 def test_single_pod_apply_annotation(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py101 def test_no_parseable_annotation(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py113 def test_invalid_annotation_value(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py121 def test_three_pods_all_agree(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py131 def test_multipod_missing_annotation_on_one_pod_is_conflict(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py153 def test_multipod_invalid_annotation_on_one_pod_is_conflict(self):CODE
LOWdeploy/power-agent/tests/test_multi_pod_policy.py167 def test_multipod_all_missing_is_conflict(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py107 def test_unmanaged_uuid_is_skipped(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py161 def test_gpu_with_running_pids_is_skipped(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py236 def test_one_gpu_failure_does_not_abort_others(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py275 def test_successful_restore_discards_uuid(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py560 def test_inconclusive_read_skips_recovery_and_does_not_rewrite(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py590 def test_persist_failure_queues_retirements_and_does_not_raise(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py140 def test_no_managed_uuids_means_no_writes(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py195 def test_idle_managed_gpu_delegates_to_restore_by_uuid(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py211 def test_caller_does_not_read_current_or_default(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py291 def test_at_default_gpu_retires_ownership(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py319 def test_retired_uuid_is_not_clobbered_on_next_startup(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py381 def test_true_return_discards_uuid(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py391 def test_none_return_retires_ownership(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py405 def test_false_return_retains_uuid(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py436 def test_absent_uuid_is_pruned_on_complete_scan_without_hardware_write(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py462 def test_absent_uuid_pruned_when_no_devices_present(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py474 def test_incomplete_scan_retains_unobserved_uuid_and_skips_hardware(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py495 def test_busy_gpu_behind_inconclusive_scan_keeps_its_cap(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py521 def test_uuid_moved_to_new_index_after_growth_is_not_pruned(self):CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py609 def test_reconcile_flush_persists_queued_startup_retirement(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py34 def test_fresh_module_copy_shares_managed_state(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py71 def test_handler_sets_shutdown_event(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py76 def test_handler_does_no_cleanup_work(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py96 def test_cleanup_runs_once_on_normal_shutdown(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py108 def test_cleanup_still_runs_when_reconcile_raises(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py128 def test_restores_default_via_actuator_for_each_managed_gpu(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py141 def test_dcgm_actuator_routes_restore_through_dcgm(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py154 def test_per_gpu_restore_failure_does_not_prevent_shutdown(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py167 def test_actuator_shutdown_failure_is_logged_not_raised(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py181 def test_no_managed_gpus_still_shuts_actuator_down(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py210 def test_successful_restore_prunes_uuid_and_persists(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py226 def test_successful_restore_prunes_actuator_managed_uuid_when_available(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py253 def test_skipped_restore_does_not_prune(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py270 def test_failed_restore_does_not_prune(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py291 def test_uuid_lookup_failure_is_logged_but_not_fatal(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py309 def test_persist_failure_does_not_prevent_shutdown(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py382 def test_sweep_restores_leaked_uuid_not_in_index_set(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py399 def test_sweep_ignores_unowned_persisted_uuid(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py416 def test_sweep_retires_owned_uuid_already_at_default(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py430 def test_sweep_keeps_uuid_on_inconclusive_scan(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py444 def test_sweep_exception_keeps_uuid_and_still_shuts_down(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py458 def test_indexed_restore_retires_uuid_before_sweep(self):CODE
LOWdeploy/power-agent/tests/test_shutdown.py507 def test_sweep_does_not_run_on_nvml_actuator(self):CODE
6662 more matches not shown…
Decorative Section Separators1599 hits · 5628 pts
SeverityFileLineSnippetContext
MEDIUMdeploy/power-agent/power_agent.py116# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py120# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1005# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1007# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1680# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1682# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py76# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py78# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py154# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py156# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py368# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py370# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py451# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py453# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py824# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py826# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py852# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py854# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1162# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1164# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1260# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/power_agent.py1262# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py764 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py766 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py2043 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py2045 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py640 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py642 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py833 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py835 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py1200 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/actuator.py1202 # ------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py101# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py103# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py155# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py157# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py230# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py232# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py269# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py271# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py549# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py551# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py579# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py581# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py41# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py43# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py182# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py184# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py359# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py361# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py419# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/test_orphan_recovery.py421# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py62# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py66# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py93# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py97# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py141# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py143# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py223# ---------------------------------------------------------------------------COMMENT
MEDIUMdeploy/power-agent/tests/e2e_actuator_parity.py226# ---------------------------------------------------------------------------COMMENT
1539 more matches not shown…
Over-Commented Block2464 hits · 2378 pts
SeverityFileLineSnippetContext
LOWdeny.toml1# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOW.pre-commit-config.yaml1# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/__init__.py1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/power-agent/pytest.ini1# Standalone pytest config for the power-agent deployable unit.COMMENT
LOWdeploy/power-agent/managed_state.py61# currently OWNS a below-default cap on — added on a successful cap write andCOMMENT
LOWdeploy/power-agent/power_agent.py81RECONCILE_INTERVAL_S = 15COMMENT
LOWdeploy/power-agent/power_agent.py101# client (see `_build_k8s_core_v1`) — the 15s reconcile loop is the only retryCOMMENT
LOWdeploy/power-agent/power_agent.py281 return uuid.decode("ascii") if isinstance(uuid, bytes) else uuidCOMMENT
LOWdeploy/power-agent/power_agent.py701 # that fallback would make managed_uuid == uuid, silently pass theCOMMENT
LOWdeploy/power-agent/power_agent.py1061COMMENT
LOWdeploy/power-agent/power_agent.py1081 # Bind the idle check to `uuid` (same reason as the reconcile path):COMMENT
LOWdeploy/power-agent/power_agent.py1101 # index's identity could not be confirmed at write time / a midCOMMENT
LOWdeploy/power-agent/power_agent.py1281 raise RuntimeError("pynvml is required — install pynvml or nvidia-ml-py")COMMENT
LOWdeploy/power-agent/power_agent.py1341 # TODO(#9682 follow-up): this polls a full pod LIST per agent everyCOMMENT
LOWdeploy/power-agent/power_agent.py1441 if _shutdown.is_set():COMMENT
LOWdeploy/power-agent/power_agent.py1621COMMENT
LOWdeploy/power-agent/power_agent.py1781if __name__ == "__main__":COMMENT
LOWdeploy/power-agent/actuator.py601 # init() would leak one refcount per reconnect and leave NVMLCOMMENT
LOWdeploy/power-agent/actuator.py621 # In-process restore identity snapshot. `_managed_gpu_indices` storesCOMMENT
LOWdeploy/power-agent/actuator.py821COMMENT
LOWdeploy/power-agent/actuator.py1241 # establish which physical GPU that is, we cannot guarantee the capCOMMENT
LOWdeploy/power-agent/actuator.py1261 gpu_idx,COMMENT
LOWdeploy/power-agent/actuator.py1421 # the Set, and no post-Set reconnect-capable re-read that aCOMMENT
LOWdeploy/power-agent/actuator.py1501COMMENT
LOWdeploy/power-agent/actuator.py1581 # Guard the write with the UUID we intend to restore so a reconnectCOMMENT
LOWdeploy/power-agent/tests/test_dcgm_actuator.py901 nvml = MagicMock()COMMENT
LOWdeploy/utils/dynamo_deployment.py1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/utils/__init__.py1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/utils/kubernetes.py1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/utils/convert_api_version.py1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/utils/tests/__init__.py1# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/utils/tests/test_convert_api_version.py1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/pre-deployment/pre-deployment-check.sh1#!/usr/bin/env bashCOMMENT
LOWdeploy/inference-gateway/epp/cmd/epp/main.go21//COMMENT
LOW…ploy/inference-gateway/ext-proc/tests/ext_proc_test.rs1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOW…oy/inference-gateway/ext-proc/examples/onramp/agg.yaml1# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOW…oy/inference-gateway/ext-proc/examples/onramp/agg.yaml21# The EPP runs the runtime-free selection service in-process, so there is NOCOMMENT
LOW…oy/inference-gateway/ext-proc/examples/onramp/agg.yaml41# - A secret `hf-token-secret` with key `HF_TOKEN` for the vLLM worker.COMMENT
LOWdeploy/inference-gateway/ext-proc/src/envoy_helpers.rs41 "content-length",COMMENT
LOWdeploy/inference-gateway/ext-proc/src/epp.rs81 .map(str::to_owned)COMMENT
LOWdeploy/inference-gateway/ext-proc/src/epp.rs481 &self.runtimeCOMMENT
LOWdeploy/inference-gateway/ext-proc/src/epp.rs661/// container spec.COMMENT
LOWdeploy/inference-gateway/ext-proc/src/lib.rs1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOW…nference-gateway/ext-proc/src/epp_standalone_config.rs101}COMMENT
LOW…nference-gateway/ext-proc/src/epp_standalone_config.rs121 #[validate(length(min = 1, message = "DYN_EPP_TOKENIZER_SERVICE_URL is required"))]COMMENT
LOWdeploy/inference-gateway/ext-proc/src/server.rs761COMMENT
LOWdeploy/inference-gateway/ext-proc/src/server.rs781/// mode Envoy waits for our header response before sending body chunks whileCOMMENT
LOWdeploy/inference-gateway/ext-proc/src/server.rs1201 ///COMMENT
LOWdeploy/inference-gateway/ext-proc/src/runner.rs21COMMENT
LOWdeploy/inference-gateway/ext-proc/src/picker.rs1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/inference-gateway/ext-proc/src/picker.rs41 pub request_id: String,COMMENT
LOWdeploy/inference-gateway/ext-proc/src/picker.rs61 pub endpoint: String,COMMENT
LOWdeploy/inference-gateway/ext-proc/src/picker.rs81///COMMENT
LOWdeploy/inference-gateway/ext-proc/src/picker.rs121 pub completion_tokens: Option<u64>,COMMENT
LOWdeploy/inference-gateway/ext-proc/src/picker.rs141 #[error("tokenization service unavailable")]COMMENT
LOWdeploy/inference-gateway/ext-proc/src/metrics.rs1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/inference-gateway/ext-proc/src/epp_router.rs1// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.COMMENT
LOWdeploy/inference-gateway/ext-proc/src/epp_router.rs201 // multiplexing lets one connection carry unbounded concurrent requests.COMMENT
LOW…rence-gateway/scripts/install_gaie_crd_agentgateway.sh1#!/usr/bin/env bashCOMMENT
LOW…rence-gateway/scripts/install_gaie_crd_agentgateway.sh41AGW_VERSION=v1.0.0COMMENT
2404 more matches not shown…
Excessive Try-Catch Wrapping934 hits · 918 pts
SeverityFileLineSnippetContext
LOWconftest.py70except Exception:CODE
LOWdeploy/power-agent/power_agent.py989 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py997 except Exception:CODE
LOWdeploy/power-agent/power_agent.py1671 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py322 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py353 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py439 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py571 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py595 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py662 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py698 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py789 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py919 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py928 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py944 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py968 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py1120 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py1150 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py1387 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py1481 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py1504 except Exception as e:CODE
LOWdeploy/power-agent/power_agent.py1565 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py756 except Exception:CODE
LOWdeploy/power-agent/actuator.py2034 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py302 except Exception:CODE
LOWdeploy/power-agent/actuator.py329 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py342 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py489 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py726 except Exception:CODE
LOWdeploy/power-agent/actuator.py735 except Exception:CODE
LOWdeploy/power-agent/actuator.py806 except Exception:CODE
LOWdeploy/power-agent/actuator.py871 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py1254 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py1438 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py1560 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py1739 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py1851 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py1954 except Exception as e:CODE
LOWdeploy/power-agent/actuator.py2022 except Exception as e:CODE
LOWdeploy/power-agent/tests/e2e_actuator_parity.py480 except Exception as e:CODE
LOWdeploy/power-agent/tests/e2e_actuator_parity.py509 except Exception:CODE
LOWdeploy/utils/dynamo_deployment.py156 except Exception:CODE
LOWdeploy/utils/dynamo_deployment.py336 except Exception:CODE
LOWdeploy/utils/dynamo_deployment.py512 except Exception as e:CODE
MEDIUMdeploy/utils/dynamo_deployment.py616 print(f"Error getting logs for pod {pod.metadata.name}: {e}")CODE
LOWdeploy/utils/dynamo_deployment.py659 except Exception as e:CODE
LOWdeploy/utils/kubernetes.py98 except Exception:CODE
LOWdeploy/utils/kubernetes.py103 except Exception as e:CODE
LOWdeploy/utils/kubernetes.py134 except Exception:CODE
LOWdeploy/utils/kubernetes.py184 except Exception as e:CODE
LOWdeploy/operator/internal/dynamo/backend_vllm.go196 except Exception as e:CODE
LOWdeploy/operator/internal/dynamo/backend_vllm.go214 except Exception as e:CODE
MEDIUMdeploy/operator/internal/dynamo/backend_vllm.go171def leader_pod_is_healthy():CODE
MEDIUM…ploy/operator/api/scripts/generate_pydantic_from_go.py643 print(f"Error: Input file not found: {args.input}")CODE
MEDIUMtests/conftest.py893def check():CODE
LOWtests/conftest.py503 except Exception as exc:CODE
LOWtests/conftest.py647 except Exception as exc:CODE
LOWtests/conftest.py848 except Exception as e:CODE
LOWtests/conftest.py907 except Exception:CODE
LOWtests/conftest.py928 except Exception as e:CODE
874 more matches not shown…
Unused Imports955 hits · 904 pts
SeverityFileLineSnippetContext
LOWconftest.py11CODE
LOWdeploy/power-agent/actuator.py39CODE
LOWdeploy/power-agent/tests/test_orphan_recovery.py33CODE
LOWdeploy/power-agent/tests/e2e_actuator_parity.py43CODE
LOWdeploy/power-agent/tests/test_managed_state_parser.py35CODE
LOWdeploy/power-agent/tests/test_reconcile_wiring.py27CODE
LOWdeploy/power-agent/tests/test_multi_dgd_topology.py37CODE
LOWdeploy/power-agent/tests/test_dcgm_actuator.py34CODE
LOWtests/report_pytest_markers.py14CODE
LOWtests/frontend/realtime_omni_mock_worker.py14CODE
LOWtests/frontend/test_vllm_prepost_integration.py4CODE
LOWtests/frontend/test_completion_mocker_engine.py11CODE
LOWtests/frontend/test_vllm.py12CODE
LOWtests/frontend/test_request_tracing_logs.py14CODE
LOWtests/frontend/realtime_echo_worker.py13CODE
LOWtests/frontend/test_realtime_python_bridge.py18CODE
LOWtests/frontend/test_unified_worker_otlp_export.py14CODE
LOWtests/frontend/vllm_prepost_worker.py6CODE
LOWtests/frontend/test_anthropic_messages_stream_usage.py30CODE
LOWtests/frontend/test_frontend_route_construction.py11CODE
LOWtests/frontend/test_realtime_omni_bridge.py19CODE
LOWtests/frontend/test_self_host_metadata.py17CODE
LOWtests/frontend/http_status_propagation_worker.py18CODE
LOWtests/frontend/test_prompt_embeds.py20CODE
LOWtests/frontend/route_extension_provider.py17CODE
LOWtests/frontend/test_http_status_propagation.py11CODE
LOWtests/frontend/test_frontend_route_extension.py19CODE
LOWtests/frontend/test_unified_worker_tracing_smoke.py17CODE
LOWtests/frontend/test_tool_calling_sglang.py16CODE
LOWtests/frontend/router_aic_image_smoke.py6CODE
LOWtests/frontend/grpc/test_tensor_mocker_engine.py13CODE
LOW…s/gpu_memory_service/test_restored_engine_reconnect.py18CODE
LOWtests/gpu_memory_service/conftest.py11CODE
LOWtests/gpu_memory_service/test_shadow_failover.py4CODE
LOWtests/gpu_memory_service/flow_assertions.py4CODE
LOWtests/gpu_memory_service/test_pause_resume.py4CODE
LOWtests/gpu_memory_service/common/runtime.py6CODE
LOWtests/gpu_memory_service/common/_gms_server_runner.py12CODE
LOWtests/gpu_memory_service/common/gms.py6CODE
LOWtests/deploy/test_dgdr_h100.py6CODE
LOWtests/deploy/test_dgdr.py6CODE
LOWtests/deploy/dgdr_utils.py6CODE
LOWtests/runtime/test_sample_multimodal_smoke.py6CODE
LOWtests/dependencies/test_aiconfigurator_consistency.py6CODE
LOWtests/dependencies/test_no_software_video_codecs.py33CODE
LOWtests/dependencies/test_aisimulate_consistency.py6CODE
LOWtests/utils/gpu_args.py6CODE
LOWtests/utils/vram_utils.py21CODE
LOWtests/utils/collection_env_guard.py6CODE
LOWtests/utils/pytest_parallel_gpu.py26CODE
LOWtests/utils/router_logs.py6CODE
LOWtests/utils/test_pytest_parallel_gpu.py12CODE
LOWtests/utils/network_canary.py6CODE
LOWtests/utils/otel.py6CODE
LOWtests/wheels/smoke_install.py4CODE
LOWtests/wheels/test_dynamo_wheel_smoke.py17CODE
LOWtests/fault_tolerance/test_unified_canary.py6CODE
LOWtests/fault_tolerance/test_canary_rank_pause.py11CODE
LOW…e/hardware/fault_injection_service/helpers/__init__.py26CODE
LOW…e/hardware/fault_injection_service/helpers/__init__.py26CODE
895 more matches not shown…
Structural Annotation Overuse425 hits · 752 pts
SeverityFileLineSnippetContext
LOWdeploy/pre-deployment/nixl/README.md97### Step 1: Build nixlbench Docker ImageCOMMENT
LOWdeploy/pre-deployment/nixl/README.md104### Step 2: Update Deployment YAML FileCOMMENT
LOWdeploy/pre-deployment/nixl/README.md110### Step 3: Deploy to KubernetesCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh18# Step 1: Delete Grafana dashboard ConfigMapCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh23# Step 2: Revert DCGM custom metrics configurationCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh43# Step 3: Revert Dynamo operator Prometheus endpointCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh64# Step 4: Uninstall kube-prometheus-stackCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh72# Step 5: Delete monitoring namespace (optional)COMMENT
LOWdeploy/observability/setup-monitoring.sh20# Step 1: Add Helm repositoriesCOMMENT
LOWdeploy/observability/setup-monitoring.sh27# Step 2: Update Helm repositoriesCOMMENT
LOWdeploy/observability/setup-monitoring.sh32# Step 3: Install kube-prometheus-stackCOMMENT
LOWdeploy/observability/setup-monitoring.sh67# Step 4: Wait for pods to be readyCOMMENT
LOWdeploy/observability/setup-monitoring.sh73# Step 5: Verify installationCOMMENT
LOWdeploy/observability/setup-monitoring.sh78# Step 6: Update Dynamo operator with Prometheus endpointCOMMENT
LOWdeploy/observability/setup-monitoring.sh102# Step 7: Configure DCGM custom metrics for NVLink profilingCOMMENT
LOWdeploy/observability/setup-monitoring.sh123# Step 8: Verify DCGM ServiceMonitor exists (created by GPU operator during cluster setup)COMMENT
LOWdeploy/observability/setup-monitoring.sh136# Step 9: Deploy Grafana dashboard ConfigMapCOMMENT
LOWdeploy/observability/setup-monitoring.sh142# Step 10: Get Grafana credentialsCOMMENT
LOWdeploy/operator/internal/dynamo/backend_vllm.go359 // Step 1: Check explicit overrideCOMMENT
LOWdeploy/operator/internal/dynamo/backend_vllm.go374 // Step 2: Check operator origin version gateCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1719 // Step 1: Create the deployment with 1 replicaCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1733 // Step 2: Manually update the deployment to 2 replicas (simulating manual edit)COMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1751 // Step 3: Call createOrUpdateOrDeleteDeployments again - it should reconcile back to 1 replicaCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1757 // Step 4: Verify the deployment was reconciled back to 1 replicaCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1764 // Step 5: Call createOrUpdateOrDeleteDeployments again - it should not be modifiedCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1891 // Step 1: first apply. Server ConvertsFrom the user's v1beta1 toCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1906 // Step 2: second apply. Server reads stored, converts to v1beta1 soCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1917 // Step 3: apply JSON merge patch. Arrays are replaced wholesale.COMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1927 // Step 4: server converts back to v1alpha1 for storage. This isCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1934 // Step 5: apiserver generation-bump check.COMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1952 // Step 6: mimic the apiserver's unstructured-level comparison. TheCOMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go288 // Step 1: v1alpha1 → v1beta1COMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go294 // Step 2: v1beta1 → v1alpha1COMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go347 // Step 1: v1beta1 → v1alpha1COMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go353 // Step 2: v1alpha1 → v1beta1COMMENT
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py302 # Step 1: find the index just after the last non-comment line before the blockCOMMENT
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py310 # Step 2: forward scan — collect the first paragraph, skip markersCOMMENT
LOWtests/utils/managed_process.py585 # Step 3: poll for all process groups to exit.COMMENT
LOWtests/utils/managed_process.py546 # Step 1: Snapshot all process groups before signaling. Only self.proc runsCOMMENT
LOWtests/utils/managed_process.py566 # Step 2: SIGTERM all snapshotted process groups (graceful shutdown).COMMENT
LOWtests/utils/managed_process.py608 # Step 4: SIGKILL all snapshotted process groups to ensure nothingCOMMENT
LOWtests/utils/managed_process.py845 # WARNING: This method is NOT pytest-xdist safe! Kills ALL matching processes system-wide.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py151 # Step 1: Start the frontendCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py156 # Step 2: Start a workerCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py163 # Step 3: Send a test request to prove the worker is live.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py168 # Step 4: Find and kill vLLM engine processes to force the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py182 # Step 5: Send a request triggering the handler to shutdown everything.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py186 # Step 6: Ensure the worker process has been stopped as a result of the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py210 # Step 1: Start the frontendCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py215 # Step 2: Start a workerCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py222 # Step 3: Send a test request to prove the worker is live.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py227 # Step 4: Find and kill vLLM engine processes to force the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py241 # Step 5: Ensure the worker process has been stopped as a result of the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py298 # Step 1: Start the frontend (allocates its own frontend_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py308 # Step 2: Start a single worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py315 # Step 3: Test request cancellation with polling approachCOMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py403 # Step 1: Start the frontend (allocates its own frontend_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py407 # Step 2: Start the prefill worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py413 # Step 3: Start the decode worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py419 # Step 4: Test request cancellation for streaming scenarioCOMMENT
365 more matches not shown…
Verbosity Indicators327 hits · 600 pts
SeverityFileLineSnippetContext
LOWdeploy/observability/cleanup-monitoring.sh18# Step 1: Delete Grafana dashboard ConfigMapCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh23# Step 2: Revert DCGM custom metrics configurationCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh43# Step 3: Revert Dynamo operator Prometheus endpointCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh64# Step 4: Uninstall kube-prometheus-stackCOMMENT
LOWdeploy/observability/cleanup-monitoring.sh72# Step 5: Delete monitoring namespace (optional)COMMENT
LOWdeploy/observability/setup-monitoring.sh20# Step 1: Add Helm repositoriesCOMMENT
LOWdeploy/observability/setup-monitoring.sh27# Step 2: Update Helm repositoriesCOMMENT
LOWdeploy/observability/setup-monitoring.sh32# Step 3: Install kube-prometheus-stackCOMMENT
LOWdeploy/observability/setup-monitoring.sh67# Step 4: Wait for pods to be readyCOMMENT
LOWdeploy/observability/setup-monitoring.sh73# Step 5: Verify installationCOMMENT
LOWdeploy/observability/setup-monitoring.sh78# Step 6: Update Dynamo operator with Prometheus endpointCOMMENT
LOWdeploy/observability/setup-monitoring.sh102# Step 7: Configure DCGM custom metrics for NVLink profilingCOMMENT
LOWdeploy/observability/setup-monitoring.sh123# Step 8: Verify DCGM ServiceMonitor exists (created by GPU operator during cluster setup)COMMENT
LOWdeploy/observability/setup-monitoring.sh136# Step 9: Deploy Grafana dashboard ConfigMapCOMMENT
LOWdeploy/observability/setup-monitoring.sh142# Step 10: Get Grafana credentialsCOMMENT
LOWdeploy/operator/internal/dynamo/backend_vllm.go359 // Step 1: Check explicit overrideCOMMENT
LOWdeploy/operator/internal/dynamo/backend_vllm.go374 // Step 2: Check operator origin version gateCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1719 // Step 1: Create the deployment with 1 replicaCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1733 // Step 2: Manually update the deployment to 2 replicas (simulating manual edit)COMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1751 // Step 3: Call createOrUpdateOrDeleteDeployments again - it should reconcile back to 1 replicaCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1757 // Step 4: Verify the deployment was reconciled back to 1 replicaCOMMENT
LOW…ontroller/dynamocomponentdeployment_controller_test.go1764 // Step 5: Call createOrUpdateOrDeleteDeployments again - it should not be modifiedCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1891 // Step 1: first apply. Server ConvertsFrom the user's v1beta1 toCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1906 // Step 2: second apply. Server reads stored, converts to v1beta1 soCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1917 // Step 3: apply JSON merge patch. Arrays are replaced wholesale.COMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1927 // Step 4: server converts back to v1alpha1 for storage. This isCOMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1934 // Step 5: apiserver generation-bump check.COMMENT
LOW…/api/v1alpha1/dynamographdeployment_conversion_test.go1952 // Step 6: mimic the apiserver's unstructured-level comparison. TheCOMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go288 // Step 1: v1alpha1 → v1beta1COMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go294 // Step 2: v1beta1 → v1alpha1COMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go347 // Step 1: v1beta1 → v1alpha1COMMENT
LOW…alpha1/dynamographdeploymentrequest_conversion_test.go353 // Step 2: v1alpha1 → v1beta1COMMENT
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py302 # Step 1: find the index just after the last non-comment line before the blockCOMMENT
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py310 # Step 2: forward scan — collect the first paragraph, skip markersCOMMENT
LOWtests/utils/managed_process.py585 # Step 3: poll for all process groups to exit.COMMENT
LOWtests/utils/managed_process.py546 # Step 1: Snapshot all process groups before signaling. Only self.proc runsCOMMENT
LOWtests/utils/managed_process.py566 # Step 2: SIGTERM all snapshotted process groups (graceful shutdown).COMMENT
LOWtests/utils/managed_process.py608 # Step 4: SIGKILL all snapshotted process groups to ensure nothingCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py151 # Step 1: Start the frontendCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py156 # Step 2: Start a workerCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py163 # Step 3: Send a test request to prove the worker is live.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py168 # Step 4: Find and kill vLLM engine processes to force the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py182 # Step 5: Send a request triggering the handler to shutdown everything.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py186 # Step 6: Ensure the worker process has been stopped as a result of the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py210 # Step 1: Start the frontendCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py215 # Step 2: Start a workerCOMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py222 # Step 3: Send a test request to prove the worker is live.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py227 # Step 4: Find and kill vLLM engine processes to force the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/test_vllm_health_check.py241 # Step 5: Ensure the worker process has been stopped as a result of the EngineDeadError condition.COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py298 # Step 1: Start the frontend (allocates its own frontend_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py308 # Step 2: Start a single worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py315 # Step 3: Test request cancellation with polling approachCOMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py403 # Step 1: Start the frontend (allocates its own frontend_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py407 # Step 2: Start the prefill worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py413 # Step 3: Start the decode worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py419 # Step 4: Test request cancellation for streaming scenarioCOMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py511 # Step 1: Start the frontend (allocates its own frontend_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py515 # Step 2: Start the prefill worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py521 # Step 3: Start the decode worker (allocates its own system_port)COMMENT
LOWtests/fault_tolerance/cancellation/test_vllm.py527 # Step 4: Test request cancellation during prefill phaseCOMMENT
267 more matches not shown…
Modern Structural Boilerplate501 hits · 513 pts
SeverityFileLineSnippetContext
LOWtests/frontend/test_vllm_prepost_integration.py20logger = logging.getLogger(__name__)CODE
LOWtests/frontend/conftest.py23logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_completion_mocker_engine.py22logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_vllm.py27logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_request_tracing_logs.py32logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_realtime_python_bridge.py32logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_anthropic_messages_stream_usage.py43logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_realtime_omni_bridge.py34logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_self_host_metadata.py28logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_prompt_embeds.py39logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_frontend_route_extension.py40logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_frontend_api_surface_compliance.py62logger = logging.getLogger(__name__)CODE
LOWtests/frontend/test_tool_calling_sglang.py41logger = logging.getLogger(__name__)CODE
LOWtests/frontend/grpc/test_tensor_parameters.py27logger = logging.getLogger(__name__)CODE
LOWtests/frontend/grpc/test_tensor_mocker_engine.py37logger = logging.getLogger(__name__)CODE
LOWtests/gpu_memory_service/conftest.py19logger = logging.getLogger(__name__)CODE
LOWtests/gpu_memory_service/test_shadow_failover.py43logger = logging.getLogger(__name__)CODE
LOWtests/gpu_memory_service/flow_assertions.py16logger = logging.getLogger(__name__)CODE
LOWtests/gpu_memory_service/common/runtime.py25logger = logging.getLogger(__name__)CODE
LOWtests/deploy/test_deploy_efa.py51logger = logging.getLogger(__name__)CODE
LOWtests/deploy/dgd_utils.py25logger = logging.getLogger(__name__)CODE
LOWtests/deploy/dgd_utils.py372 def _set_args(self, tokens: list[str]) -> None:CODE
LOWtests/deploy/test_dgdr_h100.py15logger = logging.getLogger(__name__)CODE
LOWtests/deploy/test_dynamocheckpoint.py22logger = logging.getLogger(__name__)CODE
LOWtests/deploy/test_dgd.py38logger = logging.getLogger(__name__)CODE
LOWtests/deploy/dgdr_utils.py23logger = logging.getLogger(__name__)CODE
LOWtests/basic/test_autodeploy_backend.py18logger = logging.getLogger(__name__)CODE
LOWtests/utils/device.py13logger = logging.getLogger(__name__)CODE
LOWtests/utils/client.py13logger = logging.getLogger(__name__)CODE
LOWtests/utils/profile_pytest.py68logger = logging.getLogger(__name__)CODE
LOWtests/utils/engine_process.py17logger = logging.getLogger(__name__)CODE
LOWtests/utils/test_mock_gpu_alloc.py26logger = logging.getLogger(__name__)CODE
LOWtests/utils/payloads.py35logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/test_vllm_health_check.py18logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/test_canary_rank_pause.py30logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/cancellation/test_vllm.py39logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/cancellation/test_trtllm.py33logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/cancellation/test_sglang.py31logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/cancellation/utils.py20logger = logging.getLogger(__name__)CODE
LOW…_service/agents/gpu_fault_injector/gpu_xid_injector.py76logger = logging.getLogger(__name__)CODE
LOW…t_injection_service/agents/gpu_fault_injector/agent.py41logger = logging.getLogger(__name__)CODE
LOW…e/hardware/fault_injection_service/api_service/main.py32logger = logging.getLogger(__name__)CODE
LOW…e/hardware/fault_injection_service/helpers/__init__.py11__all__ = [CODE
LOW…ware/fault_injection_service/helpers/k8s_operations.py19logger = logging.getLogger(__name__)CODE
LOW…dware/fault_injection_service/helpers/gpu_discovery.py17logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/deploy/scenarios.py32logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/deploy/k8s_utils.py28logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/deploy/checkers.py38logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/deploy/base_checker.py29logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/deploy/checker_factory.py39logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/deploy/validation_checks.py28logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/etcd_ha/test_vllm.py33logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/etcd_ha/test_trtllm.py23logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/etcd_ha/test_sglang.py27logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/etcd_ha/utils.py25logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/migration/test_vllm.py32logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/migration/test_trtllm.py26logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/migration/test_sglang.py26logger = logging.getLogger(__name__)CODE
LOWtests/fault_tolerance/migration/utils.py22logger = logging.getLogger(__name__)CODE
LOWtests/kvbm_integration/test_consolidator_router_e2e.py55logger = logging.getLogger(__name__)CODE
441 more matches not shown…
Deep Nesting482 hits · 404 pts
SeverityFileLineSnippetContext
LOWdeploy/power-agent/power_agent.py876CODE
LOWdeploy/power-agent/tests/e2e_actuator_parity.py146CODE
LOWdeploy/utils/dynamo_deployment.py310CODE
LOWdeploy/utils/dynamo_deployment.py369CODE
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py203CODE
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py265CODE
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py334CODE
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py460CODE
LOWtests/conftest.py661CODE
LOWtests/conftest.py1135CODE
LOWtests/conftest.py1162CODE
LOWtests/frontend/test_vllm_prepost_integration.py143CODE
LOWtests/frontend/conftest.py79CODE
LOWtests/frontend/test_request_tracing_logs.py242CODE
LOWtests/frontend/test_request_tracing_logs.py594CODE
LOWtests/frontend/test_realtime_python_bridge.py164CODE
LOWtests/frontend/test_unified_worker_otlp_export.py69CODE
LOWtests/frontend/test_unified_worker_otlp_export.py147CODE
LOWtests/frontend/test_unified_worker_otlp_export.py288CODE
LOWtests/frontend/test_prepost_mistral.py556CODE
LOWtests/frontend/test_anthropic_messages_stream_usage.py129CODE
LOWtests/frontend/test_realtime_omni_bridge.py131CODE
LOWtests/frontend/test_prepost.py1444CODE
LOWtests/frontend/test_frontend_route_extension.py94CODE
LOWtests/frontend/test_frontend_api_surface_compliance.py182CODE
LOWtests/frontend/test_unified_worker_tracing_smoke.py72CODE
LOWtests/frontend/test_tool_calling_sglang.py503CODE
LOWtests/frontend/grpc/test_tensor_mocker_engine.py174CODE
LOWtests/frontend/grpc/echo_tensor_worker.py57CODE
LOWtests/deploy/dgd_utils.py1010CODE
LOWtests/deploy/dgd_utils.py1129CODE
LOWtests/deploy/dgd_utils.py1199CODE
LOWtests/deploy/dgd_utils.py1630CODE
LOWtests/deploy/dgd_utils.py1725CODE
LOWtests/deploy/test_dynamocheckpoint.py225CODE
LOWtests/deploy/test_dgdr.py121CODE
LOWtests/basic/test_cuda_version_consistency.py156CODE
LOWtests/dependencies/test_no_software_video_codecs.py143CODE
LOWtests/utils/client.py26CODE
LOWtests/utils/client.py51CODE
LOWtests/utils/client.py157CODE
LOWtests/utils/profile_pytest.py118CODE
LOWtests/utils/profile_pytest.py832CODE
LOWtests/utils/test_managed_process_teardown.py164CODE
LOWtests/utils/pytest_parallel_gpu.py448CODE
LOWtests/utils/pytest_parallel_gpu.py681CODE
LOWtests/utils/managed_process.py261CODE
LOWtests/utils/managed_process.py339CODE
LOWtests/utils/managed_process.py512CODE
LOWtests/utils/managed_process.py634CODE
LOWtests/utils/managed_process.py697CODE
LOWtests/utils/managed_process.py844CODE
LOWtests/utils/payloads.py229CODE
LOWtests/utils/payloads.py739CODE
LOWtests/utils/payloads.py911CODE
LOWtests/utils/payloads.py1035CODE
LOWtests/utils/payloads.py1870CODE
LOWtests/utils/port_utils.py95CODE
LOWtests/utils/port_utils.py207CODE
LOWtests/utils/payload_builder.py306CODE
422 more matches not shown…
Modern AI Meta-Vocabulary108 hits · 310 pts
SeverityFileLineSnippetContext
MEDIUMdeploy/helm/charts/platform/README.md307 enabled: true # Enables multinode orchestration via PodCliqueSetsCODE
MEDIUMdeploy/helm/charts/platform/README.md317 enabled: true # Enables multinode orchestration via PodCliqueSetsCODE
MEDIUMdeploy/helm/charts/platform/values.yaml54 # -- Whether to enable Grove integration (multinode orchestration via PodCliqueSets).COMMENT
MEDIUMdeploy/helm/charts/platform/values.yaml288# Grove component - distributed inference orchestrationCOMMENT
MEDIUMdeploy/operator/cmd/main.go81 //+kubebuilder:scaffold:importsCOMMENT
MEDIUMdeploy/operator/cmd/main.go136 //+kubebuilder:scaffold:schemeCOMMENT
MEDIUMdeploy/operator/config/crd/kustomization.yaml24#+kubebuilder:scaffold:crdkustomizeresourceCOMMENT
MEDIUMdeploy/operator/config/crd/kustomization.yaml29#+kubebuilder:scaffold:crdkustomizewebhookpatchCOMMENT
MEDIUMdeploy/operator/config/crd/kustomization.yaml34#+kubebuilder:scaffold:crdkustomizecainjectionpatchCOMMENT
MEDIUMdeploy/operator/config/samples/kustomization.yaml24#+kubebuilder:scaffold:manifestskustomizesamplesCOMMENT
MEDIUMdeploy/operator/internal/AGENTS.md6# DGD workload orchestrationCOMMENT
MEDIUMtests/frontend/test_vllm.py99 "--max-model-len", # this reduced max context window and amount of GPU memory allocated for contextCODE
MEDIUMtests/frontend/test_frontend_api_surface_compliance.py566 # hallucination — it must actually invoke `ls` to discover it.COMMENT
MEDIUMtests/frontend/test_tool_calling_sglang.py726 # hallucinate values for optional fields. Validate only that theCOMMENT
MEDIUM…lerance/deploy/templates/sglang/sglang_elastic_ep.yaml35# The joining group is NOT launched by the operator yet (that orchestration isCOMMENT
MEDIUMtests/serve/test_vllm.py1049# 1. Load-balances across N workers serving the SAME embedding model.COMMENT
MEDIUMdocs/fern/components/RecipeStyles.tsx217#workload-agentic-coding:checked ~ .dynamo-recipe-browser label[for="workload-agentic-coding"],COMMENT
MEDIUMdocs/fern/components/RecipeStyles.tsx686#workload-agentic-coding:checked ~ .dynamo-model-grid [data-recipe-card]:not([data-workload~="agentic-coding"]),COMMENT
MEDIUMdocs/fern/components/publications.data.ts284 url: "https://www.digitalocean.com/blog/workato-nvidia-technical-deep-dive-agentic-inference-cloud",CODE
MEDIUMdocs/fern/components/BlogStyles.tsx609body:has(.dynamo-blog-home) #fern-sidebar .fern-sidebar-group-level-1 a[href$="/agentic-harnesses"]::before,CODE
MEDIUMdocs/fern/components/BlogStyles.tsx610body:has(.dynamo-blog-article) #fern-sidebar .fern-sidebar-group-level-1 a[href$="/agentic-harnesses"]::before { contentCODE
MEDIUMdocs/fern/components/BlogStyles.tsx612body:has(.dynamo-blog-home) #fern-sidebar .fern-sidebar-group-level-1 a[href$="/agentic-inference"]::before,CODE
MEDIUMdocs/fern/components/BlogStyles.tsx613body:has(.dynamo-blog-article) #fern-sidebar .fern-sidebar-group-level-1 a[href$="/agentic-inference"]::before { contentCODE
MEDIUMdocs/fern/components/BlogStyles.tsx987body:has(.dynamo-blog-home) #fern-sidebar a[href$="/agentic-harnesses"] .fern-sidebar-link-title-inner::before,CODE
MEDIUMdocs/fern/components/BlogStyles.tsx988body:has(.dynamo-blog-article) #fern-sidebar a[href$="/agentic-harnesses"] .fern-sidebar-link-title-inner::before { contCODE
MEDIUMdocs/fern/components/BlogStyles.tsx990body:has(.dynamo-blog-home) #fern-sidebar a[href$="/agentic-inference"] .fern-sidebar-link-title-inner::before,CODE
MEDIUMdocs/fern/components/BlogStyles.tsx991body:has(.dynamo-blog-article) #fern-sidebar a[href$="/agentic-inference"] .fern-sidebar-link-title-inner::before { contCODE
MEDIUM…-guide/advanced-customizations/developing-with-tilt.md103# enable_grove: false # PodClique-based multi-node orchestrationCOMMENT
MEDIUM…es/tensorrt-llm-details/building-a-custom-container.md87If your custom build places TRT-LLM's bundled NIXL at a different path (or uses a non-3.12 Python), edit the `LD_PRELOADCODE
MEDIUM…/fern/pages/developer-guide/knowledge-base/overview.md70### Control Plane (adaptation and orchestration path)COMMENT
MEDIUM…/modular-components/backends/sglang/reference-guide.md40| `--dyn-reasoning-parser` | `DYN_REASONING_PARSER` | `None` | [Reasoning](../../../../../use-cases/tool-calling-and-reaCODE
MEDIUM…s/fern/pages/kubernetes/installation/install-dynamo.md60**Grove + KAI Scheduler** — Grove is the default multinode orchestrator. The operator returns a hard error on multinode CODE
MEDIUM…s/fern/pages/kubernetes/installation/install-dynamo.md235See the [LWS docs](https://lws.sigs.k8s.io/docs/) and [Volcano docs](https://github.com/volcano-sh/volcano#quick-start-gCODE
MEDIUM…bernetes-api/additional-resources/api-reference-k8s.md976| `extraClientPods` _[GMSClientPodSpec](#gmsclientpodspec) array_ | ExtraClientPods declares additional GMS client pods CODE
MEDIUM…bernetes-api/additional-resources/api-reference-k8s.md2433| `extraClientPods` _[GMSClientPodSpec](#gmsclientpodspec) array_ | extraClientPods declares additional GMS client pods CODE
MEDIUM…ntainer/compliance/base_sboms/capture_baseline_sbom.py540# ---- main capture orchestration ----------------------------------------------COMMENT
MEDIUMcomponents/src/dynamo/frontend/tests/FRONTEND_CASES.md139## `FRONTEND.9` — Reasoning ↔ tool-call orchestrationCOMMENT
MEDIUM…rc/dynamo/frontend/tests/test_sglang_processor_unit.py3787class TestReasoningParsing: # FRONTEND.9 — reasoning ↔ tool-call orchestrationCODE
MEDIUMcomponents/src/dynamo/vllm/instrumented_scheduler.py4080 # scaffolding. A rank that reached the deadline with theCOMMENT
MEDIUMcomponents/src/dynamo/replay/api.py187 # offline planner run (matches the CLI's guardrails).COMMENT
MEDIUMagent-docs/rules/execution/user-workload.md37 type: chat # chat | agentic | customCODE
MEDIUMrecipes/gpt-oss-120b/vllm/agg-b200-agentic/deploy.yaml3# gpt-oss-120b — AGGREGATED, B200, agentic (64k/400) — Dynamo 1.3.0 / vLLM 0.23.COMMENT
MEDIUMrecipes/gpt-oss-120b/vllm/agg-h200-agentic/deploy.yaml3# gpt-oss-120b — AGGREGATED, H200, agentic (64k/400) — Dynamo 1.3.0 / vLLM 0.23.COMMENT
MEDIUMrecipes/gpt-oss-120b/vllm/agg-h200-agentic/deploy.yaml76 # agentic trace (2026-07-09 perf A/B) — the host tier relieves GPU KV eviction pressure — and itCOMMENT
MEDIUM…ipes/gpt-oss-120b/vllm/disagg-b200-agentic/deploy.yaml3# gpt-oss-120b -- DISAGGREGATED (DGD, single-node colocated), B200, agentic -- Dynamo 1.3.0 / vLLM 0.23.COMMENT
MEDIUM…ipes/gpt-oss-120b/vllm/disagg-b200-agentic/deploy.yaml8# fast path; EAGLE3 spec on both P and D. 2P6D is the best B200 split on the agentic trace -- see perf/README.md.COMMENT
MEDIUM…ipes/gpt-oss-120b/vllm/disagg-h200-agentic/deploy.yaml3# gpt-oss-120b -- DISAGGREGATED (DGD, single-node colocated), H200, agentic -- Dynamo 1.3.0 / vLLM 0.23.COMMENT
MEDIUM…ipes/gpt-oss-120b/vllm/disagg-h200-agentic/deploy.yaml8# fast path; EAGLE3 spec on both P and D. 4P4D is the best H200 split on the agentic trace -- see perf/README.md.COMMENT
MEDIUMrecipes/gpt-oss-120b/perf/README.md151# kubectl delete pods -n ${NAMESPACE} -l nvidia.com/dynamo-graph-deployment-name=turbo-gptoss-120b-disagg-b200-agentic,nCOMMENT
MEDIUMrecipes/gpt-oss-120b/perf/perf.yaml146 value: /model-cache/traces/64k_400_90kv_agent_new_noschedule_short_15perc.jsonl # agentic 15% trace (staged fCODE
MEDIUMrecipes/gpt-oss-120b/perf/perf.yaml148 value: "384" # B200 agentic ~50-tps floor; H200 ~128. Sweep by restarting DGD workers between runs.CODE
MEDIUM…s/qwen3.5-122b/nvfp4/vllm/agg-b200-agentic/deploy.yaml4# Qwen3.5-122B-A10B-NVFP4 — aggregated, 1x B200 per worker (TP1), agentic workload.COMMENT
MEDIUMrecipes/qwen3.5-122b/nvfp4/perf/README.md116DGD=qwen35-122b-agg-b200-agentic # or qwen35-122b-disagg-b200-agenticCODE
MEDIUMrecipes/qwen3.5-122b/nvfp4/perf/perf.yaml18# One Job covers the aggregate and disaggregated B200 agentic variants. EditCOMMENT
MEDIUMrecipes/qwen3.5-122b/fp8/perf/README.md121DGD=qwen35-122b-agg-h200-agentic # or qwen35-122b-disagg-h200-agenticCODE
MEDIUMrecipes/qwen3.5-122b/fp8/perf/perf.yaml18# One Job covers the aggregated and disaggregated H200 agentic variants. EditCOMMENT
MEDIUMrecipes/qwen3.5-122b/fp8/perf/perf.yaml189 # aggregated: qwen35-122b-agg-h200-agentic-frontend:8000 CONCURRENCY 64COMMENT
MEDIUMrecipes/qwen3.5-122b/fp8/perf/perf.yaml190 # disaggregated: qwen35-122b-disagg-h200-agentic-frontend:8000 CONCURRENCY 18COMMENT
MEDIUMrecipes/nemotron-3-super/README.md84USECASE=chat # or agenticCODE
MEDIUM…pes/nemotron-3-super/vllm/agg-b200-agentic/deploy.yaml5# B200x4 (TP=4) tuned for the agentic-coding workload: DeepEP low-latencyCOMMENT
48 more matches not shown…
Docstring Block Structure53 hits · 265 pts
SeverityFileLineSnippetContext
HIGHtests/frontend/conftest.py82Check if the gRPC server process is up and accepting connections. Uses KServe `server_live` rather than `server_reaSTRING
HIGHtests/deploy/dgd_utils.py59Validate the structure and content of a chat completion response. Args: response: HTTP response from the chSTRING
HIGHtests/utils/client.py59 Send an HTTP request to the engine with detailed logging. Args: url: The endpoint URL payload:STRING
HIGHtests/utils/test_output.py18Resolve a test output path to an absolute path. This function ensures test output is written to a dedicated locatioSTRING
HIGH…_service/agents/gpu_fault_injector/gpu_xid_injector.py157 Get PCI address for GPU by reading /host/proc/driver/nvidia/gpus/. This method works without nvidia-smSTRING
HIGHtests/fault_tolerance/deploy/parse_factory.py110Auto-detect and parse test results using the appropriate parser. This function automatically detects whether resultSTRING
HIGHtests/fault_tolerance/deploy/client_factory.py22Get the appropriate client function based on client type. This factory function returns the correct client implemenSTRING
HIGHtests/fault_tolerance/deploy/client_factory.py95Get a human-readable description of a client type. Args: client_type: Client type to describe Returns:STRING
HIGHtests/kvbm_integration/common.py1331Fetch and parse KVBM metrics from the metrics endpoint. Args: port: Metrics server port (required for dynamSTRING
HIGHtests/router/helper.py377Poll the endpoint's discovery client until the expected number of worker instances appear. Args: endpoint: STRING
HIGHtests/router/helper.py418Wait for workers to be ready and return their instance IDs. Supports mocker and vLLM workers. This function polSTRING
HIGHdocs/fern/scripts/tests/test_gen_python_api.py152\ """Fixture package exercising every docstring section the renderer maps.""" def documented(request_model: str, respoSTRING
HIGHcomponents/src/dynamo/planner/connectors/kubernetes.py384Get GPU counts from an already-fetched deployment. Args: deployment: Deployment dict to inspect STRING
HIGHcomponents/src/dynamo/planner/plugins/transport/base.py60Invoke a plugin RPC by method name. Args: method: RPC method name. One of ``"Predict"`` / ``"ProposSTRING
HIGHcomponents/src/dynamo/vllm/envs.py27 Resolve port from environment variable with validation. Args: env_var: Environment variable name STRING
HIGHcomponents/src/dynamo/vllm/handlers.py2748 Decode base64-encoded prompt embeddings in PyTorch format. Use vllm's safe loader to prevent out-of-boSTRING
HIGHcomponents/src/dynamo/vllm/handlers.py2791 Decode prompt embeddings and create EmbedsPrompt for vLLM. Args: prompt_embeds_base64: BasSTRING
HIGHcomponents/src/dynamo/vllm/handlers.py2824 Build a prompt from request, handling both prompt_embeds and token_ids. Args: request: TheSTRING
HIGHcomponents/src/dynamo/vllm/multimodal_utils/model.py106Return the multimodal model family for the given identifier, or `None` if no registered family matches. ResolutSTRING
HIGH…nents/src/dynamo/vllm/multimodal_utils/encode_utils.py47 Extract image features using Qwen-style vision encoder. Args: vision_encoder: The vision encoder modelSTRING
HIGH…nents/src/dynamo/vllm/multimodal_utils/encode_utils.py92 Encode image embeddings using the appropriate model-specific encoder. Args: model_name: The model idenSTRING
HIGH…nents/src/dynamo/vllm/multimodal_utils/encode_utils.py136 Get the appropriate vision encoder and projector components for a given model. Args: model_name: The mSTRING
HIGH…vllm/multimodal_utils/custom_encoder/adapter/linear.py56Build the mixed token-ids/embeds inputs for an aggregated request. Args: token_ids: The full prompt token ISTRING
HIGHcomponents/src/dynamo/common/storage.py76Build a public URL for a file stored in the media filesystem. Args: fs: The DirFileSystem returned by ``getSTRING
HIGH…mo/common/memory/multimodal_embedding_cache_manager.py79Calculate tensor size in bytes. Args: tensor: Must be a contiguous tensor. Returns: STRING
HIGHcomponents/src/dynamo/common/utils/endpoint_types.py10Parse comma-separated endpoint types into ModelType flags. Args: endpoint_types_str: Comma-separated list oSTRING
HIGHcomponents/src/dynamo/common/utils/image_utils.py20Encode numpy image to PNG bytes (in-memory). Args: image: Numpy image array of shape (H, W, 3) with uint8 vSTRING
HIGHcomponents/src/dynamo/common/utils/video_utils.py86Convert a list of video frames to a numpy array suitable for encoding. Accepts either PIL Images or numpy arrays. DSTRING
HIGHcomponents/src/dynamo/common/utils/video_utils.py135Encode numpy frames to MP4 file. Args: frames: Video frames as numpy array of shape (num_frames, height, wiSTRING
HIGHcomponents/src/dynamo/common/utils/video_utils.py198Encode numpy frames to video bytes (in-memory). Args: frames: Video frames as numpy array of shape (num_fraSTRING
HIGHcomponents/src/dynamo/common/utils/runtime.py22Parse a Dynamo endpoint string into its components. Args: endpoint: Endpoint string in format 'namespace.coSTRING
HIGHcomponents/src/dynamo/common/utils/topology.py118Read topology config from a file-backed source and env vars. The deployment environment injects env vars for topoloSTRING
HIGHcomponents/src/dynamo/common/config_dump/environment.py56 Get relevant environment variables based on prefixes. Args: prefixes: List of environment variable preSTRING
HIGH…ts/src/dynamo/common/multimodal/async_encoder_cache.py84 Get from cache or compute with request coalescing. If the key is in cache, returns immediately. STRING
HIGHcomponents/src/dynamo/common/multimodal/image_loader.py269 Load a batch of images from multimodal data items. Supports three paths: 1. Url variant: DownlSTRING
HIGHcomponents/src/dynamo/mocker/args.py56 Resolve --planner-profile-data to an NPZ file path. Handles backward compatibility by accepting either: 1.STRING
HIGHcomponents/src/dynamo/sglang/args.py339Parse CLI arguments and return combined configuration. Download the model if necessary. Args: args: ComSTRING
HIGH…c/dynamo/sglang/request_handlers/llm/decode_handler.py526Generate response in aggregated or disaggregated mode. Args: request: Request dict with input and sSTRING
HIGHcomponents/src/dynamo/profiler/utils/profile_common.py76Derive the backend worker image from the profiler image. Replaces the image name (the last ``/``-delimited componenSTRING
HIGH…src/dynamo/profiler/utils/config_modifiers/protocol.py177 Extract model name and path from worker args. Checks --served-model-name first (API name), then falls STRING
HIGH…src/dynamo/profiler/utils/config_modifiers/protocol.py473 Build a complete DynamoGraphDeployment config by loading a base YAML and injecting pre-computed CLI argSTRING
HIGHcomponents/src/dynamo/global_router/pool_selection.py699 Load Global Router configuration from JSON file. Args: config_path: Path to the JSON configuration filSTRING
HIGHcomponents/src/dynamo/trtllm/encode_helper.py147 Read embeddings from encode worker response using NIXL and reconstruct original format. Args: STRING
HIGH…amo/trtllm/request_handlers/base_generative_handler.py28Generate response from request. This is the main entry point called by Dynamo's endpoint.serve_endpoint(). STRING
HIGH…amo/trtllm/request_handlers/diffusion/video_handler.py76Parse 'WxH' string to (width, height) tuple. The API accepts size as a string (e.g., "832x480") to match the foSTRING
HIGH…amo/trtllm/request_handlers/diffusion/image_handler.py76Parse 'WxH' string to (width, height) tuple. The API accepts size as a string (e.g., "832x480") to match the foSTRING
HIGHcomponents/src/dynamo/trtllm/multimodal/cuda_ipc.py17 Extract all embedding tensors from CUDA IPC handles and move to CPU. Runs extraction in a worker thread to avoSTRING
HIGH…ents/src/dynamo/trtllm/multimodal/embedding_fetcher.py34 Fetch embeddings from remote encode worker. Args: image_urls: List of image URLs to encode (must not bSTRING
HIGH…ents/src/dynamo/trtllm/multimodal/embedding_fetcher.py83 Call encode worker for full EPD flow. Args: request: Request dict encode_client: Client to calSTRING
HIGH…mponents/src/dynamo/trtllm/engines/diffusion_engine.py170Generate video/image frames from text prompt. This is a synchronous method that should be called from a thread STRING
HIGHlib/gpu_memory_service/integrations/sglang/__init__.py37Setup GPU Memory Service for SGLang. Validates config and returns the GMSModelLoader class. Patches are appliedSTRING
HIGHlib/bindings/python/src/dynamo/runtime/__init__.py57Decorator that can parse a request payload into a Pydantic model before the endpoint runs. Parsing applies only wheSTRING
HIGH…/trtllm_integration/connector/kvbm_connector_worker.py41Create a dedicated NCCL communicator for KVBM using MPI for bootstrap. This function creates an NCCL communicator tSTRING
AI Slop Vocabulary99 hits · 264 pts
SeverityFileLineSnippetContext
MEDIUMconftest.py29# examples/backends/sglang/test_sglang_profile.py assumes a server the harnessCOMMENT
MEDIUMdeploy/helm/charts/power-agent/templates/dev-pod.yaml7# In-cluster dev-iteration harness. Renders a single Pod that mountsCOMMENT
MEDIUM…perator/internal/namespace_scope/lease_manager_test.go263 // Poll for renewal with timeout (more robust than fixed sleep)COMMENT
MEDIUMtests/deploy/test_deploy_efa.py69# so request a larger budget here to keep this single-completion test robust.COMMENT
MEDIUMtests/utils/collection_env_guard.py46# Nothing should mutate a watched var during collection -- legitimate harnessCOMMENT
MEDIUMtests/utils/managed_process.py471 # Capture the child's process group id for robust cleanup even if parent shell exitsCOMMENT
MEDIUMtests/utils/managed_process.py498 # Capture the child's process group id for robust cleanup even if parent shell exitsCOMMENT
MEDIUMtests/utils/payloads.py1528 # by the harness). Each indexed worker must have observed >0 deltaCOMMENT
MEDIUMtests/utils/payloads.py1532 # config-construction time because the harness assigns dynamic ports.COMMENT
MEDIUMtests/fault_tolerance/deploy/scenarios.py489 """Log comprehensive pod diagnostics including process list, GPU info, and nvidia-smi."""STRING
MEDIUMtests/kvbm_integration/common.py359 """Perform comprehensive server warmup with all test prompts."""STRING
MEDIUMtests/kvbm_integration/common.py413 """Run the test iterations with comprehensive warmup."""STRING
MEDIUMtests/serve/test_vllm.py680 # Pooling models do not use a KV cache, but the test harness stillCOMMENT
MEDIUMtests/serve/test_vllm.py753 # Pooling models do not use a KV cache, but the harness requiresCOMMENT
MEDIUMtests/serve/common.py49# subclasses (e.g. ChatPayloadWithLogprobs) and is robust to ad-hoc `endpoint`COMMENT
MEDIUMtests/router/test_router_e2e_with_vllm.py190 # harness launches internal-LB DP (only --data-parallel-size, noCOMMENT
MEDIUMtests/router/test_router_e2e_with_vllm_xpu.py197 # health_check_ports=[kv_event_port]: the harness will pollCOMMENT
MEDIUM.agents/skills/dynamo-frontend-benchmark/scripts/env.sh5# Shared environment for the Dynamo frontend benchmark harness.COMMENT
MEDIUMdocs/fern/scripts/simulate_docs_website.sh5# simulate_docs_website.sh — local regression harness for the fern-docs.ymlCOMMENT
MEDIUMcontainer/compliance/generators/dpkg.py214# Detecting these references is the highest-leverage lever for cutting UNKNOWNs.COMMENT
MEDIUMcomponents/src/dynamo/frontend/sglang_prepost.py1010 # Full text accumulator for robust finish-time re-parse.COMMENT
LOWcomponents/src/dynamo/common/utils/output_modalities.py60 # For now, we ignore model repo and just use cli input to determine output modalities.COMMENT
MEDIUMexamples/custom_encoder/launch/agg_qwen3_5_native.sh49# test harness can replace this per run through the same override.COMMENT
MEDIUMexamples/custom_encoder/launch/agg_custom.sh45# Precedence: explicit DYN_WORKER_GPU/--gpu > harness-set CUDA_VISIBLE_DEVICESCOMMENT
MEDIUMexamples/custom_encoder/launch/agg_custom.sh91# VRAM sizing: honors the profiler/test-harness overrideCOMMENT
MEDIUM…ds/vllm/launch/agg_multimodal_router_chat_processor.sh37# Honor DYN_HTTP_PORT (set by the tests/serve harness for dynamicCOMMENT
MEDIUM…ds/vllm/launch/agg_multimodal_router_chat_processor.sh80# The serve-test harness invokes scripts as `bash <script> --model NAME ...`,COMMENT
MEDIUMexamples/backends/vllm/launch/disagg_same_gpu.sh27# Inherit GPU from parent (profiler/test harness sets CUDA_VISIBLE_DEVICES);COMMENT
MEDIUM…launch/xpu/agg_multimodal_router_chat_processor_xpu.sh37# Honor DYN_HTTP_PORT (set by the tests/serve harness for dynamicCOMMENT
MEDIUM…launch/xpu/agg_multimodal_router_chat_processor_xpu.sh80# The serve-test harness invokes scripts as `bash <script> --model NAME ...`,COMMENT
MEDIUM…ples/backends/sample/launch/multimodal_smoke_client.py175 # a fresh timeout that can exceed the outer test harness deadline.COMMENT
MEDIUMexamples/backends/sglang/launch/diffusion_llada.sh25# Manual HTTP_PORT override, else the harness-assigned DYN_HTTP_PORT, else the default.COMMENT
MEDIUMexamples/backends/sglang/launch/agg_vision.sh85# Profiler/test-harness override: when _PROFILE_OVERRIDE_SGLANG_MAX_TOTAL_TOKENS isCOMMENT
MEDIUM…amples/backends/sglang/launch/agg_multimodal_router.sh23# Honor DYN_HTTP_PORT (set by tests/serve harness for dynamic port allocation)COMMENT
MEDIUM…amples/backends/sglang/launch/agg_multimodal_router.sh176 # the harness may have applied (instead of the default formula).COMMENT
MEDIUMexamples/backends/trtllm/launch/disagg_e_pd.sh34# Profiler/test-harness override applied to the KV-cache-bearing PD worker.COMMENT
MEDIUM…s/trtllm/launch/epd_multimodal_image_and_embeddings.sh30# Profiler/test-harness override applied to KV-cache-bearing workers (prefill, decode).COMMENT
MEDIUMexamples/backends/trtllm/launch/disagg_multimodal.sh21# Profiler/test-harness override applied to KV-cache-bearing workers (prefill, decode).COMMENT
MEDIUMexamples/backends/trtllm/launch/agg_multimodal.sh18# Profiler/test-harness override: when _PROFILE_OVERRIDE_TRTLLM_MAX_TOTAL_TOKENS orCOMMENT
MEDIUMexamples/backends/trtllm/launch/agg_router_approx.sh18# Profiler/test-harness override applied to the KV-cache-bearing worker.COMMENT
MEDIUM…amples/backends/trtllm/launch/agg_multimodal_router.sh28# Profiler/test-harness override: KvCacheConfig JSON when env var is set, empty otherwise.COMMENT
MEDIUMexamples/common/launch_utils.sh59# harness signalling the process group) otherwise interrupts wait -n andCOMMENT
MEDIUMexamples/common/launch_utils.sh70# subreaper (pytest in CI), and the harness's pgid liveness checkCOMMENT
MEDIUM.github/filters.yaml254 # Standalone CRD apiVersion converter: not used by the deploy-test harness andCOMMENT
MEDIUM.github/actions/docker-remote-build/action.yml291 # Output single comprehensive JSON with all build stagesCOMMENT
MEDIUM.github/actions/docker-remote-build/action.yml339 # Upload comprehensive build metrics as artifactCOMMENT
LOW.github/actions/bootstrap-buildkit/action.yml89 # If the builder already exists, these commands will just set the right configurations to use itCOMMENT
MEDIUM.github/actions/docker-build/action.yml311 # Output single comprehensive JSON with all build stagesCOMMENT
MEDIUM.github/actions/docker-build/action.yml359 # Upload comprehensive build metrics as artifactCOMMENT
MEDIUMlib/llm/tests/kv_manager.rs203// /// and hold them until a RDMA GET COMPLETION notification is received. Essentially, the task whichCOMMENT
MEDIUM…ests/data/deepseek-v3.2/test_input_search_wo_date.json243 "content": "[4] www.annualreports.com (https://www.annualreports.com/HostedData/AnnualReportArchive/d/defendCODE
MEDIUM…ests/data/deepseek-v3.2/test_input_search_wo_date.json283 "content": "[6] www.annualreports.com (https://www.annualreports.com/HostedData/AnnualReportArchive/d/defendCODE
MEDIUM…ests/data/deepseek-v3.2/test_input_search_wo_date.json323 "content": "[8] www.annualreports.com (https://www.annualreports.com/HostedData/AnnualReportArchive/d/defendCODE
MEDIUM…ests/data/deepseek-v3.2/test_input_search_wo_date.json423 "content": "[13] As of December 5, 2021, Kenya had received a total of 16,201,670 vaccines (Search_Results/ACODE
MEDIUM…ests/data/deepseek-v3.2/test_input_search_wo_date.json443 "content": "[14] www.worldbank.org (https://www.worldbank.org/en/news/press-release/2021/12/14/kenya-s-econoCODE
MEDIUM…tests/data/deepseek-v3.2/test_input_search_w_date.json199 "content": "[2] (https://ar5iv.org/html/2510.19631v1)\n**viewing lines [0 - 119] of 983**\n\nL0: \nL1: URL:CODE
MEDIUM…tests/data/deepseek-v3.2/test_input_search_w_date.json199 "content": "[2] (https://ar5iv.org/html/2510.19631v1)\n**viewing lines [0 - 119] of 983**\n\nL0: \nL1: URL:CODE
MEDIUM…tests/data/deepseek-v3.2/test_input_search_w_date.json199 "content": "[2] (https://ar5iv.org/html/2510.19631v1)\n**viewing lines [0 - 119] of 983**\n\nL0: \nL1: URL:CODE
MEDIUM…tests/data/deepseek-v3.2/test_input_search_w_date.json431 "content": "[13] BEIR benchmark (Search_Results/BEIR benchmark)\n**viewing lines [0 - 37] of 37**\n\nL0: \nLCODE
MEDIUM…tests/data/deepseek-v3.2/test_input_search_w_date.json436 "content": "[14] MIRACL benchmark (Search_Results/MIRACL benchmark)\n**viewing lines [0 - 41] of 41**\n\nL0:CODE
39 more matches not shown…
Cross-File Repetition42 hits · 210 pts
SeverityFileLineSnippetContext
HIGHtests/fault_tolerance/etcd_ha/test_vllm.py0test etcd high availability with repeated node failures and recoveries for trt-llm in disaggregated mode. this test: 1. STRING
HIGHtests/fault_tolerance/etcd_ha/test_trtllm.py0test etcd high availability with repeated node failures and recoveries for trt-llm in disaggregated mode. this test: 1. STRING
HIGHtests/fault_tolerance/etcd_ha/test_sglang.py0test etcd high availability with repeated node failures and recoveries for trt-llm in disaggregated mode. this test: 1. STRING
HIGHtests/fault_tolerance/migration/test_vllm.py0end-to-end test for aggregated worker request migration. parameters: immediate_kill: true for abrupt kill (sigkill), falSTRING
HIGHtests/fault_tolerance/migration/test_trtllm.py0end-to-end test for aggregated worker request migration. parameters: immediate_kill: true for abrupt kill (sigkill), falSTRING
HIGHtests/fault_tolerance/migration/test_sglang.py0end-to-end test for aggregated worker request migration. parameters: immediate_kill: true for abrupt kill (sigkill), falSTRING
HIGHtests/fault_tolerance/migration/test_vllm.py0end-to-end test for decode worker request migration in disaggregated mode. setup: 1 prefill worker + 2 decode workers paSTRING
HIGHtests/fault_tolerance/migration/test_trtllm.py0end-to-end test for decode worker request migration in disaggregated mode. setup: 1 prefill worker + 2 decode workers paSTRING
HIGHtests/fault_tolerance/migration/test_sglang.py0end-to-end test for decode worker request migration in disaggregated mode. setup: 1 prefill worker + 2 decode workers paSTRING
HIGHtests/kvbm_integration/test_determinism_agg.py0create determinism tester bound to the running server's base url.STRING
HIGHtests/kvbm_integration/common.py0create determinism tester bound to the running server's base url.STRING
HIGHtests/kvbm_integration/test_determinism_disagg.py0create determinism tester bound to the running server's base url.STRING
HIGHtests/kvbm_integration/test_determinism_agg.py0test determinism across cache reset: run test with warmup, reset cache, run again without warmup.STRING
HIGHtests/kvbm_integration/common.py0test determinism across cache reset: run test with warmup, reset cache, run again without warmup.STRING
HIGHtests/kvbm_integration/test_determinism_disagg.py0test determinism across cache reset: run test with warmup, reset cache, run again without warmup.STRING
HIGHtests/serve/test_vllm.py0test lora inference with aggregated sglang deployment. this test: 1. uses minio fixture to provide s3-compatible storageSTRING
HIGHtests/serve/test_vllm_xpu.py0test lora inference with aggregated sglang deployment. this test: 1. uses minio fixture to provide s3-compatible storageSTRING
HIGHtests/serve/test_sglang.py0test lora inference with aggregated sglang deployment. this test: 1. uses minio fixture to provide s3-compatible storageSTRING
HIGHtests/router/test_router_e2e_with_sglang.py0validate kv cache prefix reuse with vllm by sending progressive requests with overlapping prefixes. same flow as test_roSTRING
HIGHtests/router/test_router_e2e_with_trtllm.py0validate kv cache prefix reuse with vllm by sending progressive requests with overlapping prefixes. same flow as test_roSTRING
HIGHtests/router/test_router_e2e_with_vllm.py0validate kv cache prefix reuse with vllm by sending progressive requests with overlapping prefixes. same flow as test_roSTRING
HIGHcomponents/src/dynamo/vllm/tests/test_vllm_unit.py0test that invalid file path raises filenotfounderror.STRING
HIGHcomponents/src/dynamo/sglang/tests/test_sglang_unit.py0test that invalid file path raises filenotfounderror.STRING
HIGHcomponents/src/dynamo/trtllm/tests/test_trtllm_unit.py0test that invalid file path raises filenotfounderror.STRING
HIGHcomponents/src/dynamo/vllm/tests/test_vllm_unit.py0test that environment variables in paths are expanded by python code.STRING
HIGHcomponents/src/dynamo/sglang/tests/test_sglang_unit.py0test that environment variables in paths are expanded by python code.STRING
HIGHcomponents/src/dynamo/trtllm/tests/test_trtllm_unit.py0test that environment variables in paths are expanded by python code.STRING
HIGH…s/src/dynamo/vllm/tests/omni/test_video_encode_real.py0return the video stream codec of encoded bytes, via the shipped ffmpeg.STRING
HIGH…ents/src/dynamo/sglang/tests/test_video_encode_real.py0return the video stream codec of encoded bytes, via the shipped ffmpeg.STRING
HIGH…ents/src/dynamo/trtllm/tests/test_video_encode_real.py0return the video stream codec of encoded bytes, via the shipped ffmpeg.STRING
HIGH…rc/dynamo/common/tests/multimodal/test_audio_loader.py0wiring smoke: videoloader plumbs ``url_policy`` to the validator. validator behavior is covered in ``test_url_validator.STRING
HIGH…rc/dynamo/common/tests/multimodal/test_image_loader.py0wiring smoke: videoloader plumbs ``url_policy`` to the validator. validator behavior is covered in ``test_url_validator.STRING
HIGH…rc/dynamo/common/tests/multimodal/test_video_loader.py0wiring smoke: videoloader plumbs ``url_policy`` to the validator. validator behavior is covered in ``test_url_validator.STRING
HIGH…c/dynamo/profiler/tests/unit/test_profiler_protocol.py0set dgdr_name so _validate_dgd_service_name_lengths runs in tests.STRING
HIGH…dynamo/profiler/tests/unit/test_helpers_profile_sla.py0set dgdr_name so _validate_dgd_service_name_lengths runs in tests.STRING
HIGH…mo/profiler/tests/integration/test_profile_sla_dgdr.py0set dgdr_name so _validate_dgd_service_name_lengths runs in tests.STRING
HIGHlib/bindings/python/examples/hello_world/server.py0create and serve the `generate` endpoint using the distributed runtime. multiple endpoints can be served from a single wSTRING
HIGHlib/bindings/python/examples/error_handling/server.py0create and serve the `generate` endpoint using the distributed runtime. multiple endpoints can be served from a single wSTRING
HIGHlib/bindings/python/examples/typed/server.py0create and serve the `generate` endpoint using the distributed runtime. multiple endpoints can be served from a single wSTRING
HIGHlib/bindings/python/examples/hello_world/client.py0instantiate a `backend` client and call the `generate` endpointSTRING
HIGHlib/bindings/python/examples/error_handling/client.py0instantiate a `backend` client and call the `generate` endpointSTRING
HIGHlib/bindings/python/examples/typed/client.py0instantiate a `backend` client and call the `generate` endpointSTRING
Redundant / Tautological Comments112 hits · 168 pts
SeverityFileLineSnippetContext
LOWdeploy/utils/dynamo_deployment.py477 # Check if deployment is readyCOMMENT
LOWdeploy/utils/kubernetes.py65 # Check if pod exists and delete it if it doesCOMMENT
LOWdeploy/utils/kubernetes.py114 # Check if pod already exists and is runningCOMMENT
LOWdeploy/utils/setup_benchmarking_resources.sh49# Check if namespace existsCOMMENT
LOWdeploy/utils/setup_benchmarking_resources.sh55# Check if Dynamo platform is installedCOMMENT
LOWdeploy/pre-deployment/pre-deployment-check.sh114 # Check if there are multiple default storage classes (which can cause issues)COMMENT
LOWdeploy/pre-deployment/nixl/build_and_deploy.sh257 # Check if at least one valid step was selectedCOMMENT
LOWdeploy/pre-deployment/nixl/build_and_deploy.sh387 # Check if deployment file existsCOMMENT
LOW…/controller/dynamographdeploymentrequest_controller.go212 # Check if profiler container terminatedCOMMENT
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py438 # Check if it's a known enumCOMMENT
LOW…ploy/operator/api/scripts/generate_pydantic_from_go.py445 # Check if it's a struct we're definingCOMMENT
LOWtests/conftest.py1026 # Check if a process is already running on the stored portCOMMENT
LOWtests/conftest.py912 asyncio.get_running_loop() # Check if we're in async contextCODE
LOWtests/deploy/dgd_utils.py1657 # Check if port is assignedCOMMENT
LOWtests/deploy/dgd_utils.py839 ) # Check if process existsCODE
LOWtests/utils/managed_process.py594 # Check if any signaled group is still aliveCOMMENT
LOWtests/utils/managed_process.py679 # Check if the main process is still aliveCOMMENT
LOWtests/utils/payloads.py96 # Check if content is emptyCOMMENT
LOWtests/utils/payloads.py103 # Check if ANY of the expected strings are found (OR logic) and count matchesCOMMENT
LOWtests/fault_tolerance/cancellation/utils.py127 # Set socket to non-blocking to avoid hangingCOMMENT
LOW…_service/agents/gpu_fault_injector/gpu_xid_injector.py181 # Check if proc path existsCOMMENT
LOW…e/hardware/fault_injection_service/api_service/main.py1006 # Check if it's a NetworkPolicyCOMMENT
LOW…e/hardware/fault_injection_service/api_service/main.py1009 # Check if it's a ChaosMesh resourceCOMMENT
LOW…ction_service/cuda_fault_injection/inject_into_pods.py798 # Check if we have the expected number of podsCOMMENT
LOW…ction_service/cuda_fault_injection/inject_into_pods.py800 # Check if all pods are runningCOMMENT
LOW…ction_service/cuda_fault_injection/inject_into_pods.py870 # Check if library exists (try both /tmp and /cuda-fault paths)COMMENT
LOW…ware/fault_injection_service/helpers/k8s_operations.py203 # Check if pod is readyCOMMENT
LOW…ware/fault_injection_service/helpers/k8s_operations.py365 # Check if ready (all containers must be ready)COMMENT
LOW…dware/fault_injection_service/helpers/gpu_discovery.py115 # Check if our PID is in the listCOMMENT
LOWtests/fault_tolerance/deploy/scenarios.py1127 # Check if this is an MoE deploymentCOMMENT
LOWtests/fault_tolerance/deploy/parse_results.py193 # Check if this is a token overflow testCOMMENT
LOWtests/fault_tolerance/deploy/parse_results.py261 # Check if this is a mixed token testCOMMENT
LOWtests/fault_tolerance/deploy/parse_results.py885 # Check if this is an overflow/recovery pair and show timing infoCOMMENT
LOWtests/fault_tolerance/deploy/legacy_parse_results.py104 # Check if request was successfulCOMMENT
LOWtests/fault_tolerance/deploy/test_deployment.py151 # Check if this is a continuous load test (rolling upgrade scenarios)COMMENT
LOWtests/fault_tolerance/deploy/test_deployment.py154 # Check if this is a mixed token test (overflow + recovery)COMMENT
LOWtests/fault_tolerance/etcd_ha/utils.py227 # Check if a leader is elected indicating cluster healthCOMMENT
LOWtests/fault_tolerance/migration/utils.py282 # Check if the worker logs contain the patternCOMMENT
LOWtests/kvbm_integration/common.py650 # Check if process is listening on our portCOMMENT
LOWtests/kvbm_integration/test_consolidator_router_e2e.py30# Check if engines are available and build list of available enginesCOMMENT
LOWtests/kvbm_integration/test_consolidator_router_e2e.py206 # Check if consolidator startedCOMMENT
LOWtests/serve/lora_utils.py149 # Check if MinIO is already runningCOMMENT
LOWtests/serve/launch/template_verifier.py30 # Check if the custom template marker is presentCOMMENT
LOWtests/lmcache/summarize_scores_dynamo.py185 # Check if this model passed consistency checkCOMMENT
LOWtests/lmcache/run_test.sh30# Check if data existsCOMMENT
LOWtests/lmcache/run_test.sh34 # Check if Python dependencies are installedCOMMENT
LOWtests/lmcache/run_test.sh63# Check if server is respondingCOMMENT
LOWtests/lmcache/run_test.sh104# Check if server is respondingCOMMENT
LOWtests/lmcache/run_test.sh141# Check if result files existCOMMENT
LOWtests/router/helper.py782 # Check if response has token_idsCOMMENT
LOWtests/router/helper.py812 # Verify if expected number of tokens are generated if max_tokens specified and ignore_eos is TrueCOMMENT
LOWcontainer/compliance/generate_go_deps.py260 # Check if the package path starts with the module pathCOMMENT
LOWcomponents/src/dynamo/frontend/vllm_processor.py338 # Set DYNAMO_MM_TRANSFER to choose transfer mode:COMMENT
LOWcomponents/src/dynamo/planner/core/load/predictors.py154 # Check if all values are the same (constant data)COMMENT
LOWcomponents/src/dynamo/planner/plugins/_proto_bridge.py269 # Check if THIS message has a oneof named "result"COMMENT
LOW…onents/src/dynamo/planner/tests/unit/load_generator.py381 # Print results summaryCOMMENT
LOWcomponents/src/dynamo/vllm/worker_factory.py1256 # Check if kv event consolidator is enabled (port was allocated in setup_vllm_engine)COMMENT
LOWcomponents/src/dynamo/vllm/worker_factory.py1547 # Check if kv event consolidator is enabled (port was allocated in setup_vllm_engine)COMMENT
LOWcomponents/src/dynamo/vllm/handlers.py2647 # Check if the LoRA exists *after* waiting for any in-progress load.COMMENT
LOWcomponents/src/dynamo/vllm/args.py564 # Check if --connector was explicitly provided via CLI or DYN_CONNECTOR env varCOMMENT
52 more matches not shown…
Self-Referential Comments53 hits · 158 pts
SeverityFileLineSnippetContext
MEDIUMhatch_build.py59 version_content = f'# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All righCODE
MEDIUM…rence-gateway/scripts/install_gaie_crd_agentgateway.sh50# Create an AgentgatewayParameters resource that excludes Istio sidecar injectionCOMMENT
MEDIUMdeploy/operator/config/crd/kustomizeconfig.yaml16# This file is for teaching kustomize how to substitute name and namespace reference in CRDCOMMENT
MEDIUMtests/conftest.py1059 # Create a log directory for session-scoped serversCOMMENT
MEDIUMtests/conftest.py1082 # Create a log directory for session-scoped serversCOMMENT
MEDIUMtests/frontend/grpc/triton_echo_client.py91 # Define the callback function. Note the last two parameters should beCOMMENT
MEDIUMtests/frontend/grpc/test_tensor_mocker_engine.py194 # Define the callback function. Note the last two parameters should beCOMMENT
MEDIUMtests/deploy/dgd_utils.py1693 # Create a fresh portforward object so local_port=0 picks a newCOMMENT
MEDIUM…e/hardware/fault_injection_service/api_service/main.py769 # Create the NetworkPolicyCOMMENT
MEDIUM…e/hardware/fault_injection_service/api_service/main.py966 # Create the NetworkChaos resourceCOMMENT
MEDIUMtests/fault_tolerance/deploy/scenarios.py819 # Define the yaml files for agg and disagg deploymentsCOMMENT
MEDIUMtests/fault_tolerance/deploy/scenarios.py825 # Define the different configurations to testCOMMENT
MEDIUMtests/fault_tolerance/deploy/test_deployment.py100 # Create a copy of the load config with overridden client typeCOMMENT
MEDIUMtests/lmcache/download_mmlu.py68 # Create the expected CSV format: question, A, B, C, D, answerCOMMENT
MEDIUM.devcontainer/gen_devcontainer_json.py17 # Define the frameworks to generateCOMMENT
MEDIUM.devcontainer/gen_devcontainer_json.py29 # Create the target directoryCOMMENT
MEDIUMcontainer/context.yaml4# This file represents the default ARG values of Dockerfiles generatedCOMMENT
MEDIUMcomponents/src/dynamo/vllm/publisher.py17# Create a dedicated registry for dynamo_component metricsCOMMENT
MEDIUM…ests/memory/test_multimodal_embedding_cache_manager.py262 # Create a non-contiguous tensor via transposeCOMMENT
MEDIUM…amo/common/tests/multimodal/test_mm_kwargs_transfer.py439 # Create a receiver with a mocked poolCOMMENT
MEDIUM…ponents/src/dynamo/common/config_dump/config_dumper.py243# Create a canonical JSON encoder with consistent formattingCOMMENT
MEDIUM…nts/src/dynamo/common/multimodal/embedding_transfer.py426 # Create a queue hinting whether the sender is expecting future transferCOMMENT
MEDIUMcomponents/src/dynamo/mocker/main.py174 # Create a separate DistributedRuntime for this worker (on same event loop)COMMENT
MEDIUMcomponents/src/dynamo/mocker/main.py227 # Create the engine with this worker's isolated runtimeCOMMENT
MEDIUMcomponents/src/dynamo/sglang/args.py575 # Create a minimal ServerArgs-like object that bypasses model config loadingCOMMENT
MEDIUM…mo/sglang/tests/test_sglang_image_diffusion_handler.py131 # Create a simple test imageCOMMENT
MEDIUM…mo/sglang/tests/test_sglang_image_diffusion_handler.py172 # Create a simple test imageCOMMENT
MEDIUM…mo/sglang/tests/test_sglang_image_diffusion_handler.py291 # Create a numpy array representing an imageCOMMENT
MEDIUMcomponents/src/dynamo/profiler/utils/plot.py242 # Create the surface plot with customizationsCOMMENT
MEDIUMcomponents/src/dynamo/profiler/utils/plot.py278 # Create the throughput surface plot with customizationsCOMMENT
MEDIUMcomponents/src/dynamo/trtllm/publisher.py47# Create a dedicated registry for dynamo_component metricsCOMMENT
MEDIUM…ts/src/dynamo/trtllm/workers/image_diffusion_worker.py76 # Create the request handlerCOMMENT
MEDIUM…ts/src/dynamo/trtllm/workers/video_diffusion_worker.py75 # Create the request handlerCOMMENT
MEDIUMexamples/backends/vllm/deploy/gms-failover.yaml13# This file contains variants you can use under .spec.components:COMMENT
MEDIUMbenchmarks/prefix_data_generator/cli.py29 # Create the parser for the "analyze" commandCOMMENT
MEDIUMbenchmarks/prefix_data_generator/cli.py32 # Create the parser for the "synthesize" commandCOMMENT
MEDIUM…hmarks/prefix_data_generator/tests/test_synthesizer.py76 # Create a temporary JSONL file with the specified dataCOMMENT
MEDIUM…hmarks/prefix_data_generator/tests/test_synthesizer.py85 # Create the Synthesizer with the temporary fileCOMMENT
MEDIUMbenchmarks/prefix_data_generator/tests/test_sampler.py23 # Create a test array with equal numbers of 1, 2, and 3COMMENT
MEDIUMbenchmarks/prefix_data_generator/tests/test_sampler.py26 # Create the samplerCOMMENT
MEDIUMbenchmarks/frontend/scripts/sweep_k8s/aiperf.py300 # Create a helper pod to access the PVCCOMMENT
MEDIUMbenchmarks/frontend/scripts/sweep_k8s/aiperf.py460 # Create the JobSTRING
MEDIUMbenchmarks/multimodal/image/aiperf_large_image.sh10# Create a JSONL file with 11 identical large image URLsCOMMENT
MEDIUM…ks/multimodal/image/aiperf_small_image_50_isl_ratio.sh12# Create a JSONL file with 30 identical small image URLsCOMMENT
MEDIUMbenchmarks/multimodal/image/aiperf_small_image.sh11# Create a JSONL file with 12 identical small image URLsCOMMENT
MEDIUM.github/codeowners/external_contributors.yaml14# This file is also the single source for CONTRIBUTORS.md. Do not hand-editCOMMENT
MEDIUM.github/workflows/detect_broken_links.py937 # Create a cleaned version of the report without resolved_path for JSON outputSTRING
MEDIUM.github/workflows/detect_broken_links.py942 # Create a copy of the link without resolved_pathSTRING
MEDIUM.github/actions/docker-remote-build/action.yml247 # Create the job metrics fileCOMMENT
MEDIUM.github/actions/docker-build/action.yml259 # Create the job metrics fileCOMMENT
MEDIUM…gpu_memory_service/integrations/sglang/model_loader.py38# This module is only imported when load_format="gms" is used.COMMENT
MEDIUMlib/bindings/python/tests/test_kv_bindings.py47 # Create a store event with parent_hash=None, block_hash=0COMMENT
MEDIUMlib/bindings/python/src/dynamo/nixl_connect/__init__.py686 # This method is a no-op for now, in the future it may be used to initialize the connection.COMMENT
Cross-Language Confusion23 hits · 120 pts
SeverityFileLineSnippetContext
HIGHdeploy/utils/convert_api_version.py309 misread as bool/null, so converted manifests round-trip through kubectl."""STRING
HIGH…ault_injection_service/helpers/cuda_fault_injection.py436 f'mkdir -p /host-fault && echo "{toggle_value}" > /host-fault/cuda_fault_enabled && cat /host-fault/CODE
HIGH…ault_injection_service/helpers/cuda_fault_injection.py543 'rm -f /host-fault/cuda_fault_enabled 2>/dev/null; echo "ok"',CODE
HIGHtests/kvbm_integration/test_determinism_disagg.py328 f"pip install hf_transfer && HF_HUB_ENABLE_HF_TRANSFER=1 hf download {model}",CODE
HIGH…ynamo-interconnect-check/scripts/check_interconnect.py285 "command -v nixlbench nixl_test 2>/dev/null; ls /usr/local/nixl 2>/dev/null",CODE
HIGHdocs/fern/scripts/gen_llms_tables.py63 numbers, true/false/null, and bare identifier references to previouslySTRING
HIGHdocs/fern/pages/recipes/_catalog/validate.py27mappings, block lists of scalars and of mappings, quoted/plain scalars, null,STRING
HIGH…/src/dynamo/frontend/tests/test_vllm_processor_unit.py328 text='[{"name":"get_weather","parameters":null}]',CODE
HIGHcomponents/src/dynamo/planner/plugins/scheduler.py191 # call (last_call_at == -inf) lag is undefined; pin atCOMMENT
HIGH…/src/dynamo/vllm/multimodal_utils/request_processor.py153 f"strings or null; got invalid entry at index {index}"CODE
HIGH…src/dynamo/common/configuration/groups/runtime_args.py237 help="[Deprecated for vLLM] Use --kv-transfer-config instead. For TRT-LLM, options: nixl, lmcache, kvbm, nulCODE
HIGH…namo/common/tests/configuration/test_kv_router_args.py533 '{"eff_isl_ratio_threshold":null}',CODE
HIGH…c/dynamo/profiler/tests/unit/test_profiler_protocol.py1531 "export FOO=bar && python3 -m vllm.entrypoints.openai.api_server "CODE
HIGH…namo/profiler/tests/unit/test_trtllm_override_merge.py152 "export READY=1 && python3 -m dynamo.trtllm "CODE
HIGH…namo/profiler/tests/unit/test_trtllm_override_merge.py154 "--trtllm.enable_chunked_prefill false && echo ready"CODE
HIGH…namo/profiler/tests/unit/test_trtllm_override_merge.py187 "export READY=1 && python3 -m dynamo.trtllm "CODE
HIGH…namo/profiler/tests/unit/test_trtllm_override_merge.py189 "--trtllm.enable_chunked_prefill true && echo ready"CODE
HIGH…onents/src/dynamo/profiler/utils/dgdr_v1beta1_types.py208 description="Planner contains the raw Planner configuration passed to the Planner service. Its schema is definedCODE
HIGH…/src/dynamo/trtllm/tests/test_trtllm_logits_runtime.py83 """When `stream_ptr` is non-null, the adapter wraps the processorSTRING
HIGHbenchmarks/frontend/scripts/sweep_k8s/aiperf.py63apt-get update -qq && apt-get install -y -qq curl jq git procps 2>/dev/nullCODE
HIGHbenchmarks/frontend/scripts/sweep_k8s/aiperf.py311 command: ["sh", "-c", "echo ready && sleep 300"]CODE
HIGHdev/sanity_check.py3972 print(" Runtime: (cd lib/bindings/python && maturin develop)")CODE
HIGHdev/sanity_check.py3986 " Runtime: (cd lib/bindings/python && maturin develop)",CODE
Hallucination Indicators9 hits · 105 pts
SeverityFileLineSnippetContext
CRITICALdeploy/power-agent/tests/test_apply_cap.py138 self.metrics.cap_clamped_total.labels.return_value.inc.assert_called_once()CODE
CRITICALdeploy/power-agent/tests/test_apply_cap.py146 self.metrics.cap_clamped_total.labels.return_value.inc.assert_called_once()CODE
CRITICALdeploy/power-agent/tests/test_apply_cap.py215 metrics.applied_limit_watts.labels.return_value.set.assert_called_once_with(450)CODE
CRITICALdeploy/power-agent/tests/test_actuator_protocol.py353 metrics.applied_limit_watts.labels.return_value.set.assert_called_with(410)CODE
CRITICALdeploy/power-agent/tests/test_actuator_protocol.py466 metrics.applied_limit_watts.labels.return_value.set.assert_called_with(700)CODE
CRITICALdeploy/power-agent/tests/test_dcgm_actuator.py299 handle.GetSystem.return_value.discovery.GetAllGpuIds.assert_called_once_with()CODE
CRITICALdeploy/power-agent/tests/test_dcgm_actuator.py1214 metrics.applied_limit_watts.labels.return_value.set.assert_called_with(300)CODE
CRITICALdeploy/power-agent/tests/test_dcgm_actuator.py2585 metrics.applied_limit_watts.labels.return_value.set.assert_called_with(410)CODE
CRITICALdeploy/power-agent/tests/test_dcgm_actuator.py2606 metrics.applied_limit_watts.labels.return_value.set.assert_called_with(700)CODE
Example Usage Blocks46 hits · 70 pts
SeverityFileLineSnippetContext
LOW…lates/vllm/run_bare_multinode_elastic_ep_scale_test.sh24# Usage:COMMENT
LOW…nce/deploy/templates/vllm/run_elastic_ep_scale_test.sh16# Usage:COMMENT
LOW…/templates/vllm/run_multinode_elastic_ep_scale_test.sh28# Usage:COMMENT
LOW…emplates/sglang/run_sglang_elastic_ep_scale_up_test.sh24# Usage:COMMENT
LOWdocs/fern/scripts/hero-demo/record-hero.sh8# Usage:COMMENT
LOW…s/fern/pages/blog/_assets/flash-indexer/tools/build.sh11# Usage:COMMENT
LOWrecipes/qwen3-vl-32b-fp8/benchmark/run-benchmark.sh9# Usage:COMMENT
LOW…qwen3-vl-30b/vllm/agg-embedding-cache/run-benchmark.sh5# Usage:COMMENT
LOWrecipes/inkling/cleanup.sh7# Usage:COMMENT
LOWrecipes/qwen3.6-35b/run-all-benchmarks.sh12# Usage:COMMENT
LOWrecipes/qwen3.6-35b/run-benchmark.sh12# Usage:COMMENT
LOWexamples/custom_encoder/launch/agg_custom.sh26# Usage:COMMENT
LOWexamples/backends/vllm/launch/agg_omni_i2v.sh7# Usage:COMMENT
LOWexamples/backends/vllm/launch/multi_node_tp.sh9# Usage:COMMENT
LOWexamples/backends/vllm/launch/agg_embed_multiworker.sh19# Usage:COMMENT
LOW…kends/vllm/launch/lora/multimodal/validate_lora_agg.sh13# Usage:COMMENT
LOW…mples/backends/vllm/launch/lora/multimodal/lora_agg.sh11# Usage:COMMENT
LOW…ckends/vllm/launch/lora/omni/validate_omni_lora_agg.sh13# Usage:COMMENT
LOWexamples/common/gpu_utils.sh7# Usage:COMMENT
LOWexamples/common/gpu_utils.sh22# Usage:COMMENT
LOWexamples/common/gpu_utils.sh88# Usage:COMMENT
LOWexamples/common/launch_utils.sh19# Usage:COMMENT
LOWexamples/common/launch_utils.sh63# Usage:COMMENT
LOWexamples/common/launch_utils.sh278# Usage:COMMENT
LOWexamples/global_planner/global-planner-gpu-budget.yaml27# Usage:COMMENT
LOWexamples/global_planner/global-planner-vllm-test.yaml19# Usage:COMMENT
LOWexamples/global_planner/global-planner-mocker-test.yaml15# Usage:COMMENT
LOW…s/global_planner/global-planner-vllm-test-xpu-dra.yaml21# Usage:COMMENT
LOWbenchmarks/frontend/dgd/templates/mocker.yaml19# Usage:COMMENT
LOWbenchmarks/frontend/dgd/templates/vllm-gpt-oss-20b.yaml32# Usage:COMMENT
LOWbenchmarks/frontend/dgd/templates/vllm.yaml17# Usage:COMMENT
LOWbenchmarks/frontend/scripts/run_perf.sh9# Usage:COMMENT
LOWbenchmarks/frontend/scripts/nsight/nsys_profile.sh13# Usage:COMMENT
LOW…marks/frontend/scripts/flamegraph/offcpu_flamegraph.sh8# Usage:COMMENT
LOW…chmarks/frontend/scripts/flamegraph/diff_flamegraph.sh8# Usage:COMMENT
LOW…nchmarks/frontend/scripts/flamegraph/cpu_flamegraph.sh8# Usage:COMMENT
LOWbenchmarks/frontend/scripts/bpf/setup.sh10# Usage:COMMENT
LOWbenchmarks/frontend/scripts/bpf/run.sh7# Usage:COMMENT
LOW…modal/sweep/experiments/embedding_cache/trtllm_e_pd.sh9# Usage:COMMENT
LOW…odal/sweep/experiments/embedding_cache/vllm_serve.yaml6# Usage:COMMENT
LOW…dal/sweep/experiments/embedding_cache/trtllm_e_pd.yaml6# Usage:COMMENT
LOW…modal/sweep/experiments/embedding_cache/vllm_e_pd.yaml6# Usage:COMMENT
LOW…dal/sweep/experiments/embedding_cache/sglang_e_pd.yaml6# Usage:COMMENT
LOWbenchmarks/omni/image/aiperf_image_gen.sh8# Usage:COMMENT
LOWlib/llm/tests/kv_manager.rs249// // Example usage:COMMENT
LOWdev/docker-observability.yml7# Usage:COMMENT
AI Structural Patterns44 hits · 34 pts
SeverityFileLineSnippetContext
LOWtests/frontend/test_completion_mocker_engine.py51CODE
LOWtests/frontend/test_vllm.py178CODE
LOWtests/utils/managed_process.py923CODE
LOWtests/utils/payloads.py403CODE
LOWtests/utils/payload_builder.py62CODE
LOWtests/utils/payload_builder.py104CODE
LOWtests/utils/payload_builder.py264CODE
LOWtests/utils/payload_builder.py390CODE
LOWtests/fault_tolerance/deploy/scenarios.py1011CODE
LOWtests/fault_tolerance/deploy/scenarios.py1052CODE
LOWtests/router/test_router_e2e_with_sglang.py71CODE
LOWtests/router/router_process.py42CODE
LOWtests/router/test_router_e2e_with_trtllm.py70CODE
LOWtests/router/test_router_e2e_with_vllm.py113CODE
LOWtests/router/common.py1882CODE
LOWtests/router/common.py2720CODE
LOWtests/router/helper.py702CODE
LOWtests/router/mocker_process.py138CODE
LOWtests/router/mocker_process.py544CODE
LOWdocs/fern/scripts/convert_callouts.py124CODE
LOWcomponents/src/dynamo/frontend/prepost.py444CODE
LOWcomponents/src/dynamo/frontend/prepost.py607CODE
LOW…rc/dynamo/planner/connectors/clients/kubernetes_api.py450CODE
LOW…c/dynamo/planner/tests/unit/test_load_based_scaling.py49CODE
LOWcomponents/src/dynamo/vllm/handlers.py1123CODE
LOWcomponents/src/dynamo/vllm/handlers.py3140CODE
LOWcomponents/src/dynamo/vllm/handlers.py3631CODE
LOW…/src/dynamo/vllm/multimodal_utils/request_processor.py269CODE
LOWcomponents/src/dynamo/common/utils/prometheus.py191CODE
LOWcomponents/src/dynamo/mocker/__init__.py42CODE
LOWcomponents/src/dynamo/sglang/tests/test_sglang_unit.py534CODE
LOW…ents/src/dynamo/profiler/tests/test_replay_optimize.py271CODE
LOW…ents/src/dynamo/profiler/tests/test_replay_optimize.py304CODE
LOWcomponents/src/dynamo/profiler/utils/aiperf.py75CODE
LOW…src/dynamo/profiler/utils/config_modifiers/protocol.py132CODE
LOW…src/dynamo/profiler/utils/config_modifiers/protocol.py450CODE
LOWcomponents/src/dynamo/replay/api.py117CODE
LOWcomponents/src/dynamo/replay/api.py274CODE
LOW…mponents/src/dynamo/trtllm/engines/diffusion_engine.py158CODE
LOWbenchmarks/frontend/scripts/sweep_k8s/aiperf.py382CODE
LOWlib/gpu_memory_service/snapshot/storage_client.py38CODE
LOWlib/bindings/python/src/dynamo/_internal/aic.py353CODE
LOWlib/bindings/python/src/dynamo/_internal/aic.py390CODE
LOWlib/bindings/python/src/dynamo/_internal/aic.py163CODE
Synthetic Comment Markers3 hits · 20 pts
SeverityFileLineSnippetContext
HIGH…pages/recipes/feature-benchmarks/benchmarking-guide.md303└── plots/ # Generated by aiperf plotCODE
HIGHlib/llm/src/kv_router/publisher/tests.rs2131 #[ignore] // Mark as ignored as requested, because CI's integrations still don't have NATSCOMMENT
HIGHlib/llm/src/kv_router/publisher/tests.rs2131 #[ignore] // Mark as ignored as requested, because CI's integrations still don't have NATSCOMMENT
Dead Code8 hits · 15 pts
SeverityFileLineSnippetContext
MEDIUMtests/frontend/http_status_propagation_worker.py51CODE
MEDIUMtests/frontend/http_status_propagation_worker.py64CODE
MEDIUM…ponents/src/dynamo/vllm/tests/test_vllm_legacy_lora.py356CODE
MEDIUM…s/src/dynamo/vllm/tests/omni/test_omni_stage_worker.py67CODE
MEDIUMcomponents/src/dynamo/vllm/omni/base_handler.py181CODE
MEDIUM…amo/trtllm/request_handlers/base_generative_handler.py46CODE
MEDIUMcomponents/src/dynamo/trtllm/tests/test_push_egress.py170CODE
MEDIUM…/bindings/python/tests/test_kv_router_stream_errors.py29CODE
Fake / Example Data12 hits · 14 pts
SeverityFileLineSnippetContext
LOWdeploy/operator/internal/webhook/common_test.go144 username: "admin@example.com",CODE
LOW…/tests/multimodal_utils/test_vllm_request_processor.py818 decode_mm_data = {"image": {"placeholder": object()}}CODE
LOW.github/codeowners/test_codeowners.py1021 "name": "Jane Doe",CODE
LOW.github/codeowners/test_codeowners.py1029 assert "Jane Doe" in mdCODE
LOWlib/bench/multiturn_bench.rs51 /// Approximate user-prompt token count per turn (lorem ipsum)COMMENT
LOWlib/bench/multiturn_bench.rs137// Lorem ipsum generatorCOMMENT
LOWlib/llm/tests/tokenizers.rs35 ("Tell me about the following text.", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempoCODE
LOWlib/llm/tests/tokenizers.rs35 ("Tell me about the following text.", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempoCODE
LOWlib/llm/tests/tokenizers.rs38 ("Tell me about the following text.", "Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur,CODE
LOWlib/llm/tests/tokenizers.rs38 ("Tell me about the following text.", "Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur,CODE
LOW…sts/data/replays/deepseek-r1-distill-llama-8b/notes.md10 "messages": [{"role": "user", "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod teCODE
LOW…sts/data/replays/deepseek-r1-distill-llama-8b/notes.md10 "messages": [{"role": "user", "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod teCODE
AI Response Leakage1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHexamples/global_planner/global-planner-gpu-budget.yaml12# --managed-namespaces), not to every DGD in the cluster. In this example theCOMMENT
Slop Phrases2 hits · 4 pts
SeverityFileLineSnippetContext
MEDIUMexamples/backends/vllm/deploy/gms-failover.yaml13# This file contains variants you can use under .spec.components:COMMENT
LOWlib/llm/tests/parallel_tool_call_integration.rs103 r#"<think>Okay, the user is asking two things: the weather in Dallas, Texas, and whether today is a holiday. I need CODE
Overly Generic Function Names2 hits · 2 pts
SeverityFileLineSnippetContext
LOWlib/gpu_memory_service/v1/server/rpc.py338 def handle_request(CODE
LOWlib/gpu_memory_service/server/gms.py252 async def handle_request(CODE
TODO Padding1 hit · 2 pts
SeverityFileLineSnippetContext
LOWlib/kvbm-engine/src/worker/coordinated.rs392 // TODO: Add tests with mock Worker implementationCOMMENT