TensorRT-LLMs/cpp/tests/runtime/worldConfigTest.cpp
Kaiyu Xie 5955b8afba
Update TensorRT-LLM Release branch (#1192)
* Update TensorRT-LLM

---------

Co-authored-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com>
2024-02-29 17:20:55 +08:00

59 lines
2.1 KiB
C++

/*
* Copyright (c) 2022-2024, NVIDIA CORPORATION. All rights reserved.
*
* 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.
*/
#include <gtest/gtest.h>
#include "tensorrt_llm/runtime/worldConfig.h"
#include "tensorrt_llm/common/tllmException.h"
namespace tr = tensorrt_llm::runtime;
namespace tc = tensorrt_llm::common;
TEST(WorldConfig, DeviceIds)
{
auto constexpr tensorParallelism = 2;
auto constexpr pipelineParallelism = 3;
auto constexpr rank = 1;
auto constexpr gpusPerNode = 8;
EXPECT_NO_THROW(tr::WorldConfig(tensorParallelism, pipelineParallelism, rank, gpusPerNode));
EXPECT_NO_THROW(
tr::WorldConfig(tensorParallelism, pipelineParallelism, rank, gpusPerNode, std::vector{0, 1, 2, 3, 4, 5}));
// Too many GPUs
EXPECT_THROW(tr::WorldConfig(
tensorParallelism, pipelineParallelism, rank, gpusPerNode, std::vector{0, 1, 2, 3, 4, 5, 6, 7, 7}),
tc::TllmException);
// GPUs out of range
EXPECT_THROW(
tr::WorldConfig(tensorParallelism, pipelineParallelism, rank, gpusPerNode, std::vector{0, 1, 2, 3, 4, -1}),
tc::TllmException);
EXPECT_THROW(
tr::WorldConfig(tensorParallelism, pipelineParallelism, rank, gpusPerNode, std::vector{0, 1, 2, 3, 4, 8}),
tc::TllmException);
// duplicated GPUs
EXPECT_THROW(
tr::WorldConfig(tensorParallelism, pipelineParallelism, rank, gpusPerNode, std::vector{0, 1, 5, 3, 4, 5}),
tc::TllmException);
// non-contiguous GPUs generate just a warning
EXPECT_NO_THROW(
tr::WorldConfig(tensorParallelism, pipelineParallelism, rank, gpusPerNode, std::vector{0, 1, 2, 3, 4, 6}));
}