• <xmp id="om0om">
  • <table id="om0om"><noscript id="om0om"></noscript></table>
  • Compute Graph Framework SDK Reference  5.22
    All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
    PassDescriptor.hpp
    Go to the documentation of this file.
    1
    2//
    3// Notice
    4// ALL NVIDIA DESIGN SPECIFICATIONS AND CODE ("MATERIALS") ARE PROVIDED "AS IS" NVIDIA MAKES
    5// NO REPRESENTATIONS, WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO
    6// THE MATERIALS, AND EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTIES OF NONINFRINGEMENT,
    7// MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
    8//
    9// NVIDIA CORPORATION & AFFILIATES assumes no responsibility for the consequences of use of such
    10// information or for any infringement of patents or other rights of third parties that may
    11// result from its use. No license is granted by implication or otherwise under any patent
    12// or patent rights of NVIDIA CORPORATION & AFFILIATES. No third party distribution is allowed unless
    13// expressly authorized by NVIDIA. Details are subject to change without notice.
    14// This code supersedes and replaces all information previously supplied.
    15// NVIDIA CORPORATION & AFFILIATES products are not authorized for use as critical
    16// components in life support devices or systems without express written approval of
    17// NVIDIA CORPORATION & AFFILIATES.
    18//
    19// SPDX-FileCopyrightText: Copyright (c) 2021-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
    20// SPDX-License-Identifier: LicenseRef-NvidiaProprietary
    21//
    22// NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
    23// property and proprietary rights in and to this material, related
    24// documentation and any modifications thereto. Any use, reproduction,
    25// disclosure or distribution of this material and related documentation
    26// without an express license agreement from NVIDIA CORPORATION or
    27// its affiliates is strictly prohibited.
    28//
    30
    31#ifndef DW_FRAMEWORK_PASSDESCRIPTOR_HPP_
    32#define DW_FRAMEWORK_PASSDESCRIPTOR_HPP_
    33
    34#include <dw/core/base/Types.h>
    35#include <dwshared/dwfoundation/dw/core/container/StringView.hpp>
    36
    37#include <array>
    38#include <cstddef>
    39#include <tuple>
    40#include <type_traits>
    41#include <utility>
    42
    43namespace dw
    44{
    45namespace framework
    46{
    47
    54template <typename... Args>
    55// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    56constexpr auto describePassCollection(const Args&&... args) -> std::tuple<Args...>
    57{
    58 return std::make_tuple(std::forward<const Args>(args)...);
    59}
    60
    61template <size_t NumberOfDependencies>
    63{
    64 dw::core::StringView name;
    65 dwProcessorType processorType;
    67 std::array<dw::core::StringView, NumberOfDependencies> dependencies;
    68
    69 constexpr PassDescriptorT(dw::core::StringView&& name_, dwProcessorType processorType_)
    70 : name{std::move(name_)}
    71 , processorType{std::move(processorType_)}
    72 , hasDependencies{false}
    73 , dependencies{}
    74 {
    75 static_assert(NumberOfDependencies == 0, "PassDescriptorT constructor without dependencies only available with NumberOfDependencies == 0");
    76 }
    77
    78 constexpr PassDescriptorT(dw::core::StringView&& name_, dwProcessorType processorType_, std::array<dw::core::StringView, NumberOfDependencies>&& dependencies_)
    79 : name{std::move(name_)}
    80 , processorType{std::move(processorType_)}
    81 , hasDependencies{true}
    82 , dependencies{std::move(dependencies_)}
    83 {
    84 }
    85};
    86
    93 dw::core::StringView&& name, dwProcessorType processorType)
    94{
    95 return PassDescriptorT<0>(
    96 std::move(name),
    97 std::move(processorType));
    98}
    99
    106template <typename DependenciesT>
    107// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    109 dw::core::StringView&& name, dwProcessorType processorType, DependenciesT&& dependencies) -> PassDescriptorT<std::tuple_size<DependenciesT>::value>
    110{
    112 std::move(name),
    113 std::move(processorType),
    114 std::move(dependencies));
    115}
    116
    122template <typename... Args>
    123// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    124constexpr auto describePassDependencies(const Args&&... args) -> std::array<dw::core::StringView, sizeof...(Args)>
    125{
    126 return {std::forward<const Args>(args)...};
    127}
    128
    130template <typename Node>
    131// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    132// coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-2201
    133constexpr auto describeNodePasses()
    134{
    135 return Node::describePasses();
    136}
    137
    139template <typename Node>
    140// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    141constexpr std::size_t passSize()
    142{
    143 return std::tuple_size<decltype(describeNodePasses<Node>())>::value;
    144}
    145
    147// Overloaded functions provide the same functionality for different argument types
    148template <typename Node>
    149// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    150constexpr bool isValidPassIndex(std::size_t passID)
    151{
    152 return passID < passSize<Node>();
    153}
    154
    155namespace detail
    156{
    157
    158// LCOV_EXCL_START no coverage data for compile time evaluated function
    160template <
    161 typename Node, size_t Index,
    162 typename std::enable_if_t<Index == passSize<Node>(), void>* = nullptr>
    163// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    164constexpr std::size_t passIndex(dw::core::StringView identifier)
    165{
    166 static_cast<void>(identifier);
    167 // coverity[autosar_cpp14_a5_1_1_violation] RFD Accepted: TID-2056
    168 return 0U;
    169}
    170// LCOV_EXCL_STOP
    171
    173template <
    174 typename Node, size_t Index,
    175 typename std::enable_if_t<Index<passSize<Node>(), void>* = nullptr>
    176 // coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    177 constexpr std::size_t passIndex(dw::core::StringView identifier)
    178{
    179 constexpr dw::core::StringView name{std::get<Index>(describeNodePasses<Node>()).name};
    180 if (name == identifier)
    181 {
    182 // coverity[autosar_cpp14_a5_1_1_violation] RFD Accepted: TID-2056
    183 return 0U;
    184 }
    185 // coverity[autosar_cpp14_a5_1_1_violation] RFD Accepted: TID-2056
    186 return 1U + passIndex<Node, Index + 1>(identifier);
    187}
    188
    189} // namespace detail
    190
    192template <typename Node>
    193// coverity[autosar_cpp14_a2_10_5_violation]
    194constexpr size_t passIndex(dw::core::StringView identifier)
    195{
    196 return detail::passIndex<Node, 0>(identifier);
    197}
    198
    200template <typename Node>
    201// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    202constexpr bool isValidPass(dw::core::StringView identifier)
    203{
    204 return isValidPassIndex<Node>(passIndex<Node>(identifier));
    205}
    206
    208template <typename Node, size_t Index>
    209// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    210constexpr dw::core::StringView passName()
    211{
    212 return std::get<Index>(describeNodePasses<Node>()).name;
    213}
    214
    216template <typename Node, size_t Index>
    217// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    218constexpr dwProcessorType passProcessorType()
    219{
    220 return std::get<Index>(describeNodePasses<Node>()).processorType;
    221}
    222
    224template <typename Node, size_t Index>
    225// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    226constexpr bool hasPassDependencies()
    227{
    228 return std::get<Index>(describeNodePasses<Node>()).hasDependencies;
    229}
    230
    232template <typename Node, size_t Index>
    233// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    234// coverity[autosar_cpp14_a7_1_5_violation] RFD Accepted: TID-2201
    235constexpr auto passDependencies()
    236{
    237 return std::get<Index>(describeNodePasses<Node>()).dependencies;
    238}
    239
    240} // namespace framework
    241} // namespace dw
    242
    243#endif // DW_FRAMEWORK_PASSDESCRIPTOR_HPP_
    constexpr std::size_t passSize()
    Get the number of passes of the passed node.
    constexpr dwProcessorType passProcessorType()
    Get the processor type of a pass.
    constexpr auto describePassWithCustomDependencies(dw::core::StringView &&name, dwProcessorType processorType, DependenciesT &&dependencies) -> PassDescriptorT< std::tuple_size< DependenciesT >::value >
    constexpr bool isValidPassIndex(std::size_t passID)
    Check if pass index is valid.
    constexpr bool isValidPass(dw::core::StringView identifier)
    Check if given string is a valid pass name.
    constexpr dw::core::StringView passName()
    Get the name of a pass.
    constexpr size_t passIndex(dw::core::StringView identifier)
    Get the the pass index for a pass identified by name.
    constexpr PassDescriptorT< 0 > describePass(dw::core::StringView &&name, dwProcessorType processorType)
    constexpr bool hasPassDependencies()
    Check if a pass specifies explicit dependencies.
    constexpr auto describePassCollection(const Args &&... args) -> std::tuple< Args... >
    constexpr auto passDependencies()
    Get the dependencies of a pass (which returns an empty collection for passes without explicit depende...
    constexpr auto describeNodePasses()
    Get described passes for the passed node.
    constexpr auto describePassDependencies(const Args &&... args) -> std::array< dw::core::StringView, sizeof...(Args)>
    Definition: Buffer.hpp:41
    std::array< dw::core::StringView, NumberOfDependencies > dependencies
    constexpr PassDescriptorT(dw::core::StringView &&name_, dwProcessorType processorType_)
    constexpr PassDescriptorT(dw::core::StringView &&name_, dwProcessorType processorType_, std::array< dw::core::StringView, NumberOfDependencies > &&dependencies_)
    人人超碰97caoporen国产