mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* blossom-ci.yml: run vulnerability scan on blossom * open source efb18c1256f8c9c3d47b7d0c740b83e5d5ebe0ec --------- Co-authored-by: niukuo <6831097+niukuo@users.noreply.github.com> Co-authored-by: pei0033 <59505847+pei0033@users.noreply.github.com> Co-authored-by: Kyungmin Lee <30465912+lkm2835@users.noreply.github.com> Co-authored-by: Kaiyu Xie <26294424+kaiyux@users.noreply.github.com>
131 lines
3.7 KiB
C++
131 lines
3.7 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "tensorrt_llm/runtime/common.h"
|
|
#include "tensorrt_llm/runtime/modelConfig.h"
|
|
#include "tensorrt_llm/runtime/runtimeDefaults.h"
|
|
#include "tensorrt_llm/runtime/worldConfig.h"
|
|
|
|
#include <filesystem>
|
|
#include <istream>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
namespace tensorrt_llm::runtime
|
|
{
|
|
|
|
class GptJsonConfig
|
|
{
|
|
public:
|
|
GptJsonConfig(std::string name, std::string version, std::string precision, SizeType32 tensorParallelism,
|
|
SizeType32 pipelineParallelism, SizeType32 contextParallelism, SizeType32 gpusPerNode, ModelConfig modelConfig,
|
|
std::optional<RuntimeDefaults> runtimeDefaults = std::nullopt)
|
|
: mName(std::move(name))
|
|
, mVersion(std::move(version))
|
|
, mPrecision(std::move(precision))
|
|
, mTensorParallelism{tensorParallelism}
|
|
, mPipelineParallelism{pipelineParallelism}
|
|
, mContextParallelism{contextParallelism}
|
|
, mGpusPerNode{gpusPerNode}
|
|
, mModelConfig(std::move(modelConfig))
|
|
, mRuntimeDefaults(std::move(runtimeDefaults))
|
|
{
|
|
}
|
|
|
|
static GptJsonConfig parse(std::string const& json);
|
|
|
|
static GptJsonConfig parse(std::istream& json);
|
|
|
|
static GptJsonConfig parse(std::filesystem::path const& path);
|
|
|
|
[[nodiscard]] ModelConfig const& getModelConfig() const
|
|
{
|
|
return mModelConfig;
|
|
}
|
|
|
|
[[nodiscard]] ModelConfig& getModelConfigMutable()
|
|
{
|
|
return mModelConfig;
|
|
}
|
|
|
|
[[nodiscard]] std::string const& getName() const
|
|
{
|
|
return mName;
|
|
}
|
|
|
|
[[nodiscard]] std::string const& getVersion() const
|
|
{
|
|
return mVersion;
|
|
}
|
|
|
|
[[nodiscard]] std::string const& getPrecision() const
|
|
{
|
|
return mPrecision;
|
|
}
|
|
|
|
[[nodiscard]] SizeType32 constexpr getTensorParallelism() const
|
|
{
|
|
return mTensorParallelism;
|
|
}
|
|
|
|
[[nodiscard]] SizeType32 constexpr getPipelineParallelism() const
|
|
{
|
|
return mPipelineParallelism;
|
|
}
|
|
|
|
[[nodiscard]] SizeType32 constexpr getContextParallelism() const
|
|
{
|
|
return mContextParallelism;
|
|
}
|
|
|
|
[[nodiscard]] SizeType32 constexpr getGpusPerNode() const
|
|
{
|
|
return mGpusPerNode;
|
|
}
|
|
|
|
[[nodiscard]] SizeType32 constexpr getWorldSize() const
|
|
{
|
|
return mTensorParallelism * mPipelineParallelism * mContextParallelism;
|
|
}
|
|
|
|
[[nodiscard]] std::optional<RuntimeDefaults> getRuntimeDefaults() const
|
|
{
|
|
return mRuntimeDefaults;
|
|
}
|
|
|
|
[[nodiscard]] std::string engineFilename(WorldConfig const& worldConfig, std::string const& model) const;
|
|
|
|
[[nodiscard]] std::string engineFilename(WorldConfig const& worldConfig) const
|
|
{
|
|
return engineFilename(worldConfig, getName());
|
|
}
|
|
|
|
private:
|
|
std::string const mName;
|
|
std::string const mVersion;
|
|
std::string const mPrecision;
|
|
SizeType32 const mTensorParallelism;
|
|
SizeType32 const mPipelineParallelism;
|
|
SizeType32 const mContextParallelism;
|
|
SizeType32 const mGpusPerNode;
|
|
ModelConfig mModelConfig; // remove const qualifier because config has to mutable after json parsing
|
|
std::optional<RuntimeDefaults> mRuntimeDefaults;
|
|
};
|
|
|
|
} // namespace tensorrt_llm::runtime
|