![]() |
GHOST
1.1.2
General, Hybrid, and Optimized Sparse Toolkit
|
Create strings holding information on GHOST objects. More...
Functions | |
ghost_error | ghost_context_string (char **str, ghost_context *context) |
Create a string containing information on the context. More... | |
ghost_error | ghost_string (char **str) |
Construct string holding information on GHOST. More... | |
char * | ghost_densemat_storage_string (ghost_densemat_storage storage) |
Get a string about the storage order. More... | |
ghost_error | ghost_densemat_info_string (char **str, ghost_densemat *densemat) |
Get a string containing information about the densemat. More... | |
ghost_error | ghost_densemat_string (char **str, ghost_densemat *x) |
Creates a string of the densemat's contents. More... | |
char * | ghost_error_string (ghost_error e) |
Get a string of the GHOST error. More... | |
ghost_error | ghost_machine_string (char **str) |
Get a string of the machine information. More... | |
ghost_error | ghost_pumap_string (char **str) |
Turn the PU mpa into a string. More... | |
ghost_error | ghost_sparsemat_info_string (char **str, ghost_sparsemat *matrix) |
Create a string holding information about the sparsemat. More... | |
const char * | ghost_sparsemat_symmetry_string (ghost_sparsemat_symmetry symmetry) |
Convert the matrix' symmetry information to a string. More... | |
ghost_error | ghost_sparsemat_string (char **str, ghost_sparsemat *mat, int dense) |
Creates a string of the sparsemat's contents. More... | |
const char * | ghost_task_state_string (ghost_task_state state) |
Return a string representing the task's state. More... | |
ghost_error | ghost_task_string (char **str, ghost_task *t) |
Stringify a task. More... | |
const char * | ghost_datatype_string (ghost_datatype datatype) |
Stringify a ghost_datatype. More... | |
Create strings holding information on GHOST objects.
ghost_error ghost_context_string | ( | char ** | str, |
ghost_context * | context | ||
) |
Create a string containing information on the context.
str | Where to store the string. |
context | The context to stringify. |
const char* ghost_datatype_string | ( | ghost_datatype | datatype | ) |
Stringify a ghost_datatype.
datatype | The data type. |
ghost_error ghost_densemat_info_string | ( | char ** | str, |
ghost_densemat * | densemat | ||
) |
Get a string containing information about the densemat.
char* ghost_densemat_storage_string | ( | ghost_densemat_storage | storage | ) |
Get a string about the storage order.
ghost_error ghost_densemat_string | ( | char ** | str, |
ghost_densemat * | x | ||
) |
Creates a string of the densemat's contents.
x | The densemat. |
str | Where to store the string. |
The string has to be freed by the caller.
char* ghost_error_string | ( | ghost_error | e | ) |
Get a string of the GHOST error.
e | The error. |
ghost_error ghost_machine_string | ( | char ** | str | ) |
Get a string of the machine information.
[out] | str | Where to store the string. |
ghost_error ghost_pumap_string | ( | char ** | str | ) |
Turn the PU mpa into a string.
[out] | str | Where to store the string. |
ghost_error ghost_sparsemat_info_string | ( | char ** | str, |
ghost_sparsemat * | matrix | ||
) |
Create a string holding information about the sparsemat.
[out] | str | Where to store the string. |
[in] | matrix | The sparse matrix. |
ghost_error ghost_sparsemat_string | ( | char ** | str, |
ghost_sparsemat * | mat, | ||
int | dense | ||
) |
Creates a string of the sparsemat's contents.
mat | The matrix. |
str | Where to store the string. |
dense | If 0, only the elements stored in the sparse matrix will be included. If 1, the matrix will be interpreted as a dense matrix. |
The string has to be freed by the caller.
const char* ghost_sparsemat_symmetry_string | ( | ghost_sparsemat_symmetry | symmetry | ) |
Convert the matrix' symmetry information to a string.
[in] | symmetry | The symmetry information. |
ghost_error ghost_string | ( | char ** | str | ) |
Construct string holding information on GHOST.
str | Where to store the string. |
const char* ghost_task_state_string | ( | ghost_task_state | state | ) |
Return a string representing the task's state.
[in] | state | The task state |
ghost_error ghost_task_string | ( | char ** | str, |
ghost_task * | t | ||
) |
Stringify a task.
[out] | str | Where to store the string. |
[in] | t | The task |