9255eb39e6
* TensorRT 10.11 release updates Signed-off-by: Asfiya Baig <asfiyab@nvidia.com> * Update changelog date Signed-off-by: Asfiya Baig <asfiyab@nvidia.com> * Update ONNX parser Signed-off-by: Asfiya Baig <asfiyab@nvidia.com> * add shouldCompileKernel Signed-off-by: Asfiya Baig <asfiyab@nvidia.com> * changelog updates Signed-off-by: Asfiya Baig <asfiyab@nvidia.com> * Update changelog plugin Signed-off-by: Asfiya Baig <asfiyab@nvidia.com> --------- Signed-off-by: Asfiya Baig <asfiyab@nvidia.com>
140 lines
5.2 KiB
C++
140 lines
5.2 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: Copyright (c) 1993-2025 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.
|
|
*/
|
|
#define CUDA_LIB_NAME "cuda"
|
|
|
|
#if defined(_WIN32)
|
|
#if !defined(WIN32_LEAN_AND_MEAN)
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif // defined(WIN32_LEAN_AND_MEAN)
|
|
#include <windows.h>
|
|
#define dllOpen(name) (void*) LoadLibraryA("nv" name ".dll")
|
|
#define dllClose(handle) FreeLibrary(static_cast<HMODULE>(handle))
|
|
#define dllGetSym(handle, name) GetProcAddress(static_cast<HMODULE>(handle), name)
|
|
#else // defined(_WIN32)
|
|
#include <dlfcn.h>
|
|
#define dllOpen(name) dlopen("lib" name ".so.1", RTLD_LAZY)
|
|
#define dllClose(handle) dlclose(handle)
|
|
#define dllGetSym(handle, name) dlsym(handle, name)
|
|
#endif // defined(_WIN32)
|
|
|
|
#include "common/cudaDriverWrapper.h"
|
|
#include "common/plugin.h"
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <cuda.h>
|
|
|
|
using namespace nvinfer1;
|
|
|
|
CUDADriverWrapper::CUDADriverWrapper()
|
|
{
|
|
handle = dllOpen(CUDA_LIB_NAME);
|
|
PLUGIN_ASSERT(handle != nullptr);
|
|
|
|
auto load_sym = [](void* handle, char const* name) {
|
|
void* ret = dllGetSym(handle, name);
|
|
PLUGIN_ASSERT(ret != nullptr);
|
|
return ret;
|
|
};
|
|
|
|
*(void**) (&_cuGetErrorName) = load_sym(handle, "cuGetErrorName");
|
|
*(void**) (&_cuFuncSetAttribute) = load_sym(handle, "cuFuncSetAttribute");
|
|
*(void**) (&_cuLinkComplete) = load_sym(handle, "cuLinkComplete");
|
|
*(void**) (&_cuModuleUnload) = load_sym(handle, "cuModuleUnload");
|
|
*(void**) (&_cuLinkDestroy) = load_sym(handle, "cuLinkDestroy");
|
|
*(void**) (&_cuModuleLoadData) = load_sym(handle, "cuModuleLoadData");
|
|
*(void**) (&_cuLinkCreate) = load_sym(handle, "cuLinkCreate_v2");
|
|
*(void**) (&_cuModuleGetFunction) = load_sym(handle, "cuModuleGetFunction");
|
|
*(void**) (&_cuLinkAddFile) = load_sym(handle, "cuLinkAddFile_v2");
|
|
*(void**) (&_cuLinkAddData) = load_sym(handle, "cuLinkAddData_v2");
|
|
*(void**) (&_cuLaunchCooperativeKernel) = load_sym(handle, "cuLaunchCooperativeKernel");
|
|
*(void**) (&_cuLaunchKernel) = load_sym(handle, "cuLaunchKernel");
|
|
}
|
|
|
|
CUDADriverWrapper::~CUDADriverWrapper()
|
|
{
|
|
dllClose(handle);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuGetErrorName(CUresult error, char const** pStr) const
|
|
{
|
|
return (*_cuGetErrorName)(error, pStr);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuFuncSetAttribute(CUfunction hfunc, CUfunction_attribute attrib, int32_t value) const
|
|
{
|
|
return (*_cuFuncSetAttribute)(hfunc, attrib, value);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLinkComplete(CUlinkState state, void** cubinOut, size_t* sizeOut) const
|
|
{
|
|
return (*_cuLinkComplete)(state, cubinOut, sizeOut);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuModuleUnload(CUmodule hmod) const
|
|
{
|
|
return (*_cuModuleUnload)(hmod);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLinkDestroy(CUlinkState state) const
|
|
{
|
|
return (*_cuLinkDestroy)(state);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuModuleLoadData(CUmodule* module, void const* image) const
|
|
{
|
|
return (*_cuModuleLoadData)(module, image);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLinkCreate(
|
|
uint32_t numOptions, CUjit_option* options, void** optionValues, CUlinkState* stateOut) const
|
|
{
|
|
return (*_cuLinkCreate)(numOptions, options, optionValues, stateOut);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuModuleGetFunction(CUfunction* hfunc, CUmodule hmod, char const* name) const
|
|
{
|
|
return (*_cuModuleGetFunction)(hfunc, hmod, name);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLinkAddFile(CUlinkState state, CUjitInputType type, char const* path, uint32_t numOptions,
|
|
CUjit_option* options, void** optionValues) const
|
|
{
|
|
return (*_cuLinkAddFile)(state, type, path, numOptions, options, optionValues);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLinkAddData(CUlinkState state, CUjitInputType type, void* data, size_t size,
|
|
char const* name, uint32_t numOptions, CUjit_option* options, void** optionValues) const
|
|
{
|
|
return (*_cuLinkAddData)(state, type, data, size, name, numOptions, options, optionValues);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLaunchCooperativeKernel(CUfunction f, uint32_t gridDimX, uint32_t gridDimY,
|
|
uint32_t gridDimZ, uint32_t blockDimX, uint32_t blockDimY, uint32_t blockDimZ, uint32_t sharedMemBytes,
|
|
CUstream hStream, void** kernelParams) const
|
|
{
|
|
return (*_cuLaunchCooperativeKernel)(
|
|
f, gridDimX, gridDimY, gridDimZ, blockDimX, blockDimY, blockDimZ, sharedMemBytes, hStream, kernelParams);
|
|
}
|
|
|
|
CUresult CUDADriverWrapper::cuLaunchKernel(CUfunction f, uint32_t gridDimX, uint32_t gridDimY, uint32_t gridDimZ,
|
|
uint32_t blockDimX, uint32_t blockDimY, uint32_t blockDimZ, uint32_t sharedMemBytes, CUstream hStream,
|
|
void** kernelParams, void** extra) const
|
|
{
|
|
return (*_cuLaunchKernel)(
|
|
f, gridDimX, gridDimY, gridDimZ, blockDimX, blockDimY, blockDimZ, sharedMemBytes, hStream, kernelParams, extra);
|
|
}
|