mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
144 lines
3.5 KiB
C++
144 lines
3.5 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 <limits>
|
|
#include <random>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace tensorrt_llm
|
|
{
|
|
namespace layers
|
|
{
|
|
|
|
class DefaultDecodingParams
|
|
{
|
|
public:
|
|
[[nodiscard]] __host__ __device__ static constexpr float getTemperature()
|
|
{
|
|
return 1.0f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getRepetitionPenalty()
|
|
{
|
|
return 1.0f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getPresencePenalty()
|
|
{
|
|
return 0.0f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getFrequencyPenalty()
|
|
{
|
|
return 0.0f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr runtime::SizeType32 getMinLength()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr runtime::SizeType32 getPromptIgnoreLength()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr uint64_t getSeed()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
[[nodiscard]] static uint64_t generateRandomSeed()
|
|
{
|
|
static std::mt19937_64 rng(0);
|
|
static std::uniform_int_distribution<uint64_t> dist(
|
|
std::numeric_limits<uint64_t>::min(), std::numeric_limits<uint64_t>::max());
|
|
return dist(rng);
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr runtime::SizeType32 getTopK()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getTopP()
|
|
{
|
|
return 0.0f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getTopPDecay()
|
|
{
|
|
return 1.0f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getTopPMin()
|
|
{
|
|
return 1.0e-6f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr runtime::TokenIdType getTopPResetId()
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getBeamSearchDiversity()
|
|
{
|
|
return 0.f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getLengthPenalty()
|
|
{
|
|
return 0.f;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr runtime::SizeType32 getEarlyStopping()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr bool getNormalizeLogProbs()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
[[nodiscard]] static std::vector<runtime::SizeType32> getTopKMedusaHeads()
|
|
{
|
|
return {};
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr runtime::SizeType32 getNoRepeatNgramSize()
|
|
{
|
|
return 1 << 30;
|
|
}
|
|
|
|
[[nodiscard]] __host__ __device__ static constexpr float getMinP()
|
|
{
|
|
return 0.0f;
|
|
}
|
|
|
|
[[nodiscard]] static std::vector<runtime::SizeType32> getBeamWidthArray()
|
|
{
|
|
return std::vector<runtime::SizeType32>{1};
|
|
}
|
|
};
|
|
} // namespace layers
|
|
} // namespace tensorrt_llm
|