File size: 17,876 Bytes
1a0d68d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | /*
* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
*
* NVIDIA CORPORATION and its licensors retain all intellectual property
* and proprietary rights in and to this software, related documentation
* and any modifications thereto. Any use, reproduction, disclosure or
* distribution of this software and related documentation without an express
* license agreement from NVIDIA CORPORATION is strictly prohibited.
*/
#if !defined(CUSPARSELT_HEADER_)
#define CUSPARSELT_HEADER_
#include "cusparse.h" // cusparseStatus_t
#include <cstddef> // size_t
#include <driver_types.h> // cudaStream_t
#include <library_types.h> // cudaDataType
#include <stdint.h> // uint8_t
//##############################################################################
//# CUSPARSELT VERSION INFORMATION
//##############################################################################
#define CUSPARSELT_VER_MAJOR 0
#define CUSPARSELT_VER_MINOR 7
#define CUSPARSELT_VER_PATCH 1
#define CUSPARSELT_VER_BUILD 0
#define CUSPARSELT_VERSION (CUSPARSELT_VER_MAJOR * 1000 + \
CUSPARSELT_VER_MINOR * 100 + \
CUSPARSELT_VER_PATCH)
// #############################################################################
// # MACRO
// #############################################################################
#if !defined(CUSPARSELT_API)
# if defined(_WIN32)
# define CUSPARSELT_API __stdcall
# else
# define CUSPARSELT_API
# endif
#endif
//------------------------------------------------------------------------------
#if defined(__cplusplus)
extern "C" {
#endif // defined(__cplusplus)
//##############################################################################
//# OPAQUE DATA STRUCTURES
//##############################################################################
typedef struct { uint8_t data[1024]; } cusparseLtHandle_t;
typedef struct { uint8_t data[1024]; } cusparseLtMatDescriptor_t;
typedef struct { uint8_t data[1024]; } cusparseLtMatmulDescriptor_t;
typedef struct { uint8_t data[1024]; } cusparseLtMatmulAlgSelection_t;
typedef struct { uint8_t data[1024]; } cusparseLtMatmulPlan_t;
const char* CUSPARSELT_API
cusparseLtGetErrorName(cusparseStatus_t status);
const char* CUSPARSELT_API
cusparseLtGetErrorString(cusparseStatus_t status);
//##############################################################################
//# INITIALIZATION, DESTROY
//##############################################################################
cusparseStatus_t CUSPARSELT_API
cusparseLtInit(cusparseLtHandle_t* handle);
cusparseStatus_t CUSPARSELT_API
cusparseLtDestroy(const cusparseLtHandle_t* handle);
cusparseStatus_t CUSPARSELT_API
cusparseLtGetVersion(const cusparseLtHandle_t* handle,
int* version);
cusparseStatus_t CUSPARSELT_API
cusparseLtGetProperty(libraryPropertyType propertyType,
int* value);
//##############################################################################
//# MATRIX DESCRIPTOR
//##############################################################################
// Dense Matrix
cusparseStatus_t CUSPARSELT_API
cusparseLtDenseDescriptorInit(const cusparseLtHandle_t* handle,
cusparseLtMatDescriptor_t* matDescr,
int64_t rows,
int64_t cols,
int64_t ld,
uint32_t alignment,
cudaDataType valueType,
cusparseOrder_t order);
//------------------------------------------------------------------------------
// Structured Matrix
typedef enum {
CUSPARSELT_SPARSITY_50_PERCENT
} cusparseLtSparsity_t;
cusparseStatus_t CUSPARSELT_API
cusparseLtStructuredDescriptorInit(const cusparseLtHandle_t* handle,
cusparseLtMatDescriptor_t* matDescr,
int64_t rows,
int64_t cols,
int64_t ld,
uint32_t alignment,
cudaDataType valueType,
cusparseOrder_t order,
cusparseLtSparsity_t sparsity);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatDescriptorDestroy(const cusparseLtMatDescriptor_t* matDescr);
//------------------------------------------------------------------------------
typedef enum {
CUSPARSELT_MAT_NUM_BATCHES, // READ/WRITE
CUSPARSELT_MAT_BATCH_STRIDE // READ/WRITE
} cusparseLtMatDescAttribute_t;
cusparseStatus_t CUSPARSELT_API
cusparseLtMatDescSetAttribute(const cusparseLtHandle_t* handle,
cusparseLtMatDescriptor_t* matmulDescr,
cusparseLtMatDescAttribute_t matAttribute,
const void* data,
size_t dataSize);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatDescGetAttribute(const cusparseLtHandle_t* handle,
const cusparseLtMatDescriptor_t* matmulDescr,
cusparseLtMatDescAttribute_t matAttribute,
void* data,
size_t dataSize);
//##############################################################################
//# MATMUL DESCRIPTOR
//##############################################################################
typedef enum {
CUSPARSE_COMPUTE_32I,
CUSPARSE_COMPUTE_16F,
CUSPARSE_COMPUTE_32F
} cusparseComputeType;
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulDescriptorInit(const cusparseLtHandle_t* handle,
cusparseLtMatmulDescriptor_t* matmulDescr,
cusparseOperation_t opA,
cusparseOperation_t opB,
const cusparseLtMatDescriptor_t* matA,
const cusparseLtMatDescriptor_t* matB,
const cusparseLtMatDescriptor_t* matC,
const cusparseLtMatDescriptor_t* matD,
cusparseComputeType computeType);
//------------------------------------------------------------------------------
typedef enum {
CUSPARSELT_MATMUL_ACTIVATION_RELU, // READ/WRITE
CUSPARSELT_MATMUL_ACTIVATION_RELU_UPPERBOUND, // READ/WRITE
CUSPARSELT_MATMUL_ACTIVATION_RELU_THRESHOLD, // READ/WRITE
CUSPARSELT_MATMUL_ACTIVATION_GELU, // READ/WRITE
CUSPARSELT_MATMUL_ACTIVATION_GELU_SCALING, // READ/WRITE
CUSPARSELT_MATMUL_ALPHA_VECTOR_SCALING, // READ/WRITE
CUSPARSELT_MATMUL_BETA_VECTOR_SCALING, // READ/WRITE
CUSPARSELT_MATMUL_BIAS_STRIDE, // READ/WRITE
CUSPARSELT_MATMUL_BIAS_POINTER, // READ/WRITE
CUSPARSELT_MATMUL_SPARSE_MAT_POINTER, // READ/WRITE
//
CUSPARSELT_MATMUL_A_SCALE_MODE, // READ/WRITE
CUSPARSELT_MATMUL_B_SCALE_MODE, // READ/WRITE
CUSPARSELT_MATMUL_C_SCALE_MODE, // READ/WRITE
CUSPARSELT_MATMUL_D_SCALE_MODE, // READ/WRITE
CUSPARSELT_MATMUL_D_OUT_SCALE_MODE, // READ/WRITE
CUSPARSELT_MATMUL_A_SCALE_POINTER,
CUSPARSELT_MATMUL_B_SCALE_POINTER,
CUSPARSELT_MATMUL_C_SCALE_POINTER,
CUSPARSELT_MATMUL_D_SCALE_POINTER,
CUSPARSELT_MATMUL_D_OUT_SCALE_POINTER,
} cusparseLtMatmulDescAttribute_t;
typedef enum {
CUSPARSELT_MATMUL_SCALE_NONE,
CUSPARSELT_MATMUL_MATRIX_SCALE_SCALAR_32F,
CUSPARSELT_MATMUL_MATRIX_SCALE_VEC32_UE4M3,
CUSPARSELT_MATMUL_MATRIX_SCALE_VEC64_UE8M0,
} cusparseLtMatmulMatrixScale_t;
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulDescSetAttribute(const cusparseLtHandle_t* handle,
cusparseLtMatmulDescriptor_t* matmulDescr,
cusparseLtMatmulDescAttribute_t matmulAttribute,
const void* data,
size_t dataSize);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulDescGetAttribute(
const cusparseLtHandle_t* handle,
const cusparseLtMatmulDescriptor_t* matmulDescr,
cusparseLtMatmulDescAttribute_t matmulAttribute,
void* data,
size_t dataSize);
//##############################################################################
//# ALGORITHM SELECTION
//##############################################################################
typedef enum {
CUSPARSELT_MATMUL_ALG_DEFAULT
} cusparseLtMatmulAlg_t;
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulAlgSelectionInit(
const cusparseLtHandle_t* handle,
cusparseLtMatmulAlgSelection_t* algSelection,
const cusparseLtMatmulDescriptor_t* matmulDescr,
cusparseLtMatmulAlg_t alg);
typedef enum {
CUSPARSELT_MATMUL_ALG_CONFIG_ID, // READ/WRITE
CUSPARSELT_MATMUL_ALG_CONFIG_MAX_ID, // READ-ONLY
CUSPARSELT_MATMUL_SEARCH_ITERATIONS, // READ/WRITE
CUSPARSELT_MATMUL_SPLIT_K, // READ/WRITE
CUSPARSELT_MATMUL_SPLIT_K_MODE, // READ/WRITE
CUSPARSELT_MATMUL_SPLIT_K_BUFFERS // READ/WRITE
} cusparseLtMatmulAlgAttribute_t;
typedef enum {
CUSPARSELT_INVALID_MODE = 0,
CUSPARSELT_SPLIT_K_MODE_ONE_KERNEL = 1,
CUSPARSELT_SPLIT_K_MODE_TWO_KERNELS = 2,
CUSPARSELT_HEURISTIC,
CUSPARSELT_DATAPARALLEL,
CUSPARSELT_SPLITK,
CUSPARSELT_STREAMK
} cusparseLtSplitKMode_t;
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulAlgSetAttribute(const cusparseLtHandle_t* handle,
cusparseLtMatmulAlgSelection_t* algSelection,
cusparseLtMatmulAlgAttribute_t attribute,
const void* data,
size_t dataSize);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulAlgGetAttribute(
const cusparseLtHandle_t* handle,
const cusparseLtMatmulAlgSelection_t* algSelection,
cusparseLtMatmulAlgAttribute_t attribute,
void* data,
size_t dataSize);
//##############################################################################
//# MATMUL PLAN
//##############################################################################
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulGetWorkspace(
const cusparseLtHandle_t* handle,
const cusparseLtMatmulPlan_t* plan,
size_t* workspaceSize);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulPlanInit(const cusparseLtHandle_t* handle,
cusparseLtMatmulPlan_t* plan,
const cusparseLtMatmulDescriptor_t* matmulDescr,
const cusparseLtMatmulAlgSelection_t* algSelection);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulPlanDestroy(const cusparseLtMatmulPlan_t* plan);
//##############################################################################
//# MATMUL EXECUTION
//##############################################################################
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmul(const cusparseLtHandle_t* handle,
const cusparseLtMatmulPlan_t* plan,
const void* alpha,
const void* d_A,
const void* d_B,
const void* beta,
const void* d_C,
void* d_D,
void* workspace,
cudaStream_t* streams,
int32_t numStreams);
cusparseStatus_t CUSPARSELT_API
cusparseLtMatmulSearch(const cusparseLtHandle_t* handle,
cusparseLtMatmulPlan_t* plan,
const void* alpha,
const void* d_A,
const void* d_B,
const void* beta,
const void* d_C,
void* d_D,
void* workspace,
// void* device_buf,
cudaStream_t* streams,
int32_t numStreams);
//##############################################################################
//# HELPER ROUTINES
//##############################################################################
// PRUNING
typedef enum {
CUSPARSELT_PRUNE_SPMMA_TILE = 0,
CUSPARSELT_PRUNE_SPMMA_STRIP = 1
} cusparseLtPruneAlg_t;
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMAPrune(const cusparseLtHandle_t* handle,
const cusparseLtMatmulDescriptor_t* matmulDescr,
const void* d_in,
void* d_out,
cusparseLtPruneAlg_t pruneAlg,
cudaStream_t stream);
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMAPruneCheck(const cusparseLtHandle_t* handle,
const cusparseLtMatmulDescriptor_t* matmulDescr,
const void* d_in,
int* valid,
cudaStream_t stream);
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMAPrune2(const cusparseLtHandle_t* handle,
const cusparseLtMatDescriptor_t* sparseMatDescr,
int isSparseA,
cusparseOperation_t op,
const void* d_in,
void* d_out,
cusparseLtPruneAlg_t pruneAlg,
cudaStream_t stream);
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMAPruneCheck2(const cusparseLtHandle_t* handle,
const cusparseLtMatDescriptor_t* sparseMatDescr,
int isSparseA,
cusparseOperation_t op,
const void* d_in,
int* d_valid,
cudaStream_t stream);
//------------------------------------------------------------------------------
// COMPRESSION
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMACompressedSize(
const cusparseLtHandle_t* handle,
const cusparseLtMatmulPlan_t* plan,
size_t* compressedSize,
size_t* compressedBufferSize);
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMACompress(const cusparseLtHandle_t* handle,
const cusparseLtMatmulPlan_t* plan,
const void* d_dense,
void* d_compressed,
void* d_compressed_buffer,
cudaStream_t stream);
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMACompressedSize2(
const cusparseLtHandle_t* handle,
const cusparseLtMatDescriptor_t* sparseMatDescr,
size_t* compressedSize,
size_t* compressedBufferSize);
cusparseStatus_t CUSPARSELT_API
cusparseLtSpMMACompress2(const cusparseLtHandle_t* handle,
const cusparseLtMatDescriptor_t* sparseMatDescr,
int isSparseA,
cusparseOperation_t op,
const void* d_dense,
void* d_compressed,
void* d_compressed_buffer,
cudaStream_t stream);
//==============================================================================
//==============================================================================
#if defined(__cplusplus)
}
#endif // defined(__cplusplus)
#endif // !defined(CUSPARSELT_HEADER_)
|