File size: 471 Bytes
ef79ec1 | 1 2 3 4 5 6 7 8 9 10 | // Companion Forge experimental TensorRT sparse plugin registration scaffold.
// Production runtime intentionally does not load this library yet.
#include <NvInfer.h>
#include <NvInferPlugin.h>
extern "C" bool initCompanionSparsePlugins(void* logger, const char* libNamespace) {
// Plugin V3 implementations for SparseConv3D / SparseAttention are added here.
// Returning true keeps ABI probing possible without claiming an unvalidated kernel.
return true;
}
|