Show / Hide Table of Contents

Enum cublasStatus_t

The type is used for function status returns Complete documentation on Nvidia documentation

Namespace: Hybridizer.Runtime.CUDAImports
Assembly: Hybridizer.Runtime.CUDAImports.dll
Syntax
[IntrinsicType("cublasStatus_t")]
public enum cublasStatus_t

Fields

Name Description
CUBLAS_STATUS_ALLOC_FAILED = 2

Resource allocation failed inside the cuBLAS library.

CUBLAS_STATUS_ARCH_MISMATCH = 4

The function requires a feature absent from the device architecture

CUBLAS_STATUS_EXECUTION_FAILED = 6

The GPU program failed to execute. This is often caused by a launch failure of the kernel on the GPU, which can be caused by multiple reasons.

CUBLAS_STATUS_INTERNAL_ERROR = 7

An internal cuBLAS operation failed.

CUBLAS_STATUS_INVALID_VALUE = 3

An unsupported value or parameter was passed to the function

CUBLAS_STATUS_LICENSE_ERROR = 9

The functionnality requested requires some license and an error was detected when trying to check the current licensing.

CUBLAS_STATUS_MAPPING_ERROR = 5

An access to GPU memory space failed

CUBLAS_STATUS_NOT_INITIALIZED = 1

The cuBLAS library was not initialized.

CUBLAS_STATUS_NOT_SUPPORTED = 8

The functionnality requested is not supported

CUBLAS_STATUS_SUCCESS = 0

The operation completed successfully.

Back to top Generated by DocFX