# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 import sys from pathlib import Path # benchmarks/ is not an installed package; add repo root so # ``from benchmarks.multimodal.sweep...`` resolves. _repo_root = str(Path(__file__).resolve().parents[2]) if _repo_root not in sys.path: sys.path.insert(0, _repo_root)