jcuda.jcusparse
Class cusparseStatus

java.lang.Object
  extended by jcuda.jcusparse.cusparseStatus

public class cusparseStatus
extends java.lang.Object

CUSPARSE status return values


Field Summary
static int CUSPARSE_STATUS_ALLOC_FAILED
          Resource allocation failed inside the CUSPARSE library.
static int CUSPARSE_STATUS_ARCH_MISMATCH
          The function requires a feature absent from the device architecture.
static int CUSPARSE_STATUS_EXECUTION_FAILED
          The GPU program failed to execute.
static int CUSPARSE_STATUS_INTERNAL_ERROR
          An internal CUSPARSE operation failed.
static int CUSPARSE_STATUS_INVALID_VALUE
          An unsupported value or parameter was passed to the function.
static int CUSPARSE_STATUS_MAPPING_ERROR
          An access to GPU memory space failed, which is usually caused by a failure to bind a texture.
static int CUSPARSE_STATUS_MATRIX_TYPE_NOT_SUPPORTED
          The matrix type is not supported by this function.
static int CUSPARSE_STATUS_NOT_INITIALIZED
          The CUSPARSE library was not initialized.
static int CUSPARSE_STATUS_SUCCESS
          The operation completed successfully.
static int JCUSPARSE_STATUS_INTERNAL_ERROR
          An internal JCusparse error occurred
 
Method Summary
static java.lang.String stringFor(int n)
          Returns a string representation of the given constant
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CUSPARSE_STATUS_SUCCESS

public static final int CUSPARSE_STATUS_SUCCESS
The operation completed successfully.

See Also:
Constant Field Values

CUSPARSE_STATUS_NOT_INITIALIZED

public static final int CUSPARSE_STATUS_NOT_INITIALIZED
The CUSPARSE library was not initialized.

See Also:
Constant Field Values

CUSPARSE_STATUS_ALLOC_FAILED

public static final int CUSPARSE_STATUS_ALLOC_FAILED
Resource allocation failed inside the CUSPARSE library.

See Also:
Constant Field Values

CUSPARSE_STATUS_INVALID_VALUE

public static final int CUSPARSE_STATUS_INVALID_VALUE
An unsupported value or parameter was passed to the function.

See Also:
Constant Field Values

CUSPARSE_STATUS_ARCH_MISMATCH

public static final int CUSPARSE_STATUS_ARCH_MISMATCH
The function requires a feature absent from the device architecture.

See Also:
Constant Field Values

CUSPARSE_STATUS_MAPPING_ERROR

public static final int CUSPARSE_STATUS_MAPPING_ERROR
An access to GPU memory space failed, which is usually caused by a failure to bind a texture.

See Also:
Constant Field Values

CUSPARSE_STATUS_EXECUTION_FAILED

public static final int CUSPARSE_STATUS_EXECUTION_FAILED
The GPU program failed to execute.

See Also:
Constant Field Values

CUSPARSE_STATUS_INTERNAL_ERROR

public static final int CUSPARSE_STATUS_INTERNAL_ERROR
An internal CUSPARSE operation failed.

See Also:
Constant Field Values

CUSPARSE_STATUS_MATRIX_TYPE_NOT_SUPPORTED

public static final int CUSPARSE_STATUS_MATRIX_TYPE_NOT_SUPPORTED
The matrix type is not supported by this function.

See Also:
Constant Field Values

JCUSPARSE_STATUS_INTERNAL_ERROR

public static final int JCUSPARSE_STATUS_INTERNAL_ERROR
An internal JCusparse error occurred

See Also:
Constant Field Values
Method Detail

stringFor

public static java.lang.String stringFor(int n)
Returns a string representation of the given constant

Returns:
A string representation of the given constant