diff --git a/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_gpt_oss.py b/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_gpt_oss.py index 5d57369399f8..1c98b9378cec 100644 --- a/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_gpt_oss.py +++ b/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_gpt_oss.py @@ -2,8 +2,7 @@ # Licensed under the Apache License, Version 2.0. # Original source: https://github.com/huggingface/transformers # -# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. -# All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 """Slimmed-down PyTorch GPT-OSS model for AutoDeploy export (prefill only). diff --git a/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_minimax_m2.py b/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_minimax_m2.py index 18e509ebd91d..c14c1a8fedaf 100644 --- a/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_minimax_m2.py +++ b/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_minimax_m2.py @@ -2,8 +2,7 @@ # Licensed under the Apache License, Version 2.0. # Original source: https://github.com/huggingface/transformers # -# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. -# All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 """Slimmed-down PyTorch MiniMax-M2 model for AutoDeploy export (prefill only). diff --git a/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_nemotron_flash.py b/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_nemotron_flash.py index 68c10400266a..52524940ec20 100644 --- a/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_nemotron_flash.py +++ b/tensorrt_llm/_torch/auto_deploy/models/custom/modeling_nemotron_flash.py @@ -16,7 +16,7 @@ # 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. -# Adapted from NVIDIA's Nemotron-Flash-3B-Instruct model (Apache-2.0, NVIDIA CORPORATION): +# Adapted from NVIDIA's Nemotron-Flash-3B-Instruct model (Apache-2.0, NVIDIA CORPORATION & AFFILIATES.): # https://huggingface.co/nvidia/Nemotron-Flash-3B-Instruct/tree/main import copy import math diff --git a/tests/unittest/auto_deploy/singlegpu/models/test_minimax_m2_modeling.py b/tests/unittest/auto_deploy/singlegpu/models/test_minimax_m2_modeling.py index 67059133cfa7..891c07cb5edd 100644 --- a/tests/unittest/auto_deploy/singlegpu/models/test_minimax_m2_modeling.py +++ b/tests/unittest/auto_deploy/singlegpu/models/test_minimax_m2_modeling.py @@ -1,5 +1,4 @@ -# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. -# All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 """Hierarchical equivalence tests for MiniMax-M2 AutoDeploy custom model.