Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/integration/test_lists/test-db/l0_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ l0_cpu:
- unittest/_torch/ray_orchestrator/single_gpu/test_cache_transceiver_comm.py
- unittest/_torch/speculative/hw_agnostic
- unittest/_torch/test_model_config.py
- unittest/_torch/thop/parallel_hw_agnostic/test_custom_ops.py
- unittest/bindings
- unittest/disaggregated
- unittest/executor/test_base_worker.py ISOLATION
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest
import torch
import torch._library.utils as library_utils

import tensorrt_llm # noqa: F401

pytestmark = pytest.mark.cpu_only

Comment thread
coderabbitai[bot] marked this conversation as resolved.

def discover_namespace_ops(namespace: str, prefix: str = ""):
"""Discover custom ops in a specific namespace."""
Expand Down
Loading