Files
nvidia--tensorrt/plugin/clipPlugin/ClipPlugin_PluginConfig.yaml
Yuan Yao 2332a7191d 10.2 GA release update (#3998)
* 10.2 GA updates

Signed-off-by: Yuan Yao (yuanyao) <yuanyao@nvidia.com>

* update changelog

Signed-off-by: Yuan Yao (yuanyao) <yuanyao@nvidia.com>

* revert plugin README format changes

Signed-off-by: Yuan Yao (yuanyao) <yuanyao@nvidia.com>

---------

Signed-off-by: Yuan Yao (yuanyao) <yuanyao@nvidia.com>
2024-07-11 10:18:43 -07:00

42 lines
1.1 KiB
YAML

#
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 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.
#
---
name: Clip_TRT
interface: "IPluginV2"
versions:
"1":
attributes:
- clipMin
- clipMax
attribute_types:
clipMin: float32
clipMax: float32
attribute_length:
clipMin: 1
clipMax: 1
attribute_options:
clipMin:
min: "=ninf"
max: "=pinf"
clipMax:
min: "=ninf"
max: "=pinf"
attributes_required:
- clipMin
- clipMax
...