Spaces:
Running on L40S
Running on L40S
File size: 553 Bytes
9f818c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: OpenMDW-1.1
from pathlib import Path
from cosmos_framework.inference.fixtures.script import ScriptConfig, script_test
_CURRENT_DIR = Path(__file__).parent.absolute()
_TEST_DIR = _CURRENT_DIR / "_test"
_script_configs = [
ScriptConfig(
script=_TEST_DIR / "inference.sh",
),
ScriptConfig(
script=_TEST_DIR / "inference_pipeline.sh",
),
]
@script_test(_script_configs)
class TestScript: ...
|