spla
|
#include "c_config.hpp"
Functions | |
spla_Status | spla_Matrix_make (spla_Matrix *M, spla_uint n_rows, spla_uint n_cols, spla_Type type) |
spla_Status | spla_Matrix_set_format (spla_Matrix M, int format) |
spla_Status | spla_Matrix_set_fill_value (spla_Matrix M, spla_Scalar value) |
spla_Status | spla_Matrix_set_reduce (spla_Matrix M, spla_OpBinary reduce) |
spla_Status | spla_Matrix_set_int (spla_Matrix M, spla_uint row_id, spla_uint col_id, int value) |
spla_Status | spla_Matrix_set_uint (spla_Matrix M, spla_uint row_id, spla_uint col_id, unsigned int value) |
spla_Status | spla_Matrix_set_float (spla_Matrix M, spla_uint row_id, spla_uint col_id, float value) |
spla_Status | spla_Matrix_get_int (spla_Matrix M, spla_uint row_id, spla_uint col_id, int *value) |
spla_Status | spla_Matrix_get_uint (spla_Matrix M, spla_uint row_id, spla_uint col_id, unsigned int *value) |
spla_Status | spla_Matrix_get_float (spla_Matrix M, spla_uint row_id, spla_uint col_id, float *value) |
spla_Status | spla_Matrix_build (spla_Matrix M, spla_MemView keys1, spla_MemView keys2, spla_MemView values) |
spla_Status | spla_Matrix_read (spla_Matrix M, spla_MemView *keys1, spla_MemView *keys2, spla_MemView *values) |
spla_Status | spla_Matrix_clear (spla_Matrix M) |
spla_Status spla_Matrix_build | ( | spla_Matrix | M, |
spla_MemView | keys1, | ||
spla_MemView | keys2, | ||
spla_MemView | values | ||
) |
spla_Status spla_Matrix_clear | ( | spla_Matrix | M | ) |
spla_Status spla_Matrix_get_float | ( | spla_Matrix | M, |
spla_uint | row_id, | ||
spla_uint | col_id, | ||
float * | value | ||
) |
spla_Status spla_Matrix_get_int | ( | spla_Matrix | M, |
spla_uint | row_id, | ||
spla_uint | col_id, | ||
int * | value | ||
) |
spla_Status spla_Matrix_get_uint | ( | spla_Matrix | M, |
spla_uint | row_id, | ||
spla_uint | col_id, | ||
unsigned int * | value | ||
) |
spla_Status spla_Matrix_make | ( | spla_Matrix * | M, |
spla_uint | n_rows, | ||
spla_uint | n_cols, | ||
spla_Type | type | ||
) |
spla_Status spla_Matrix_read | ( | spla_Matrix | M, |
spla_MemView * | keys1, | ||
spla_MemView * | keys2, | ||
spla_MemView * | values | ||
) |
spla_Status spla_Matrix_set_fill_value | ( | spla_Matrix | M, |
spla_Scalar | value | ||
) |
spla_Status spla_Matrix_set_float | ( | spla_Matrix | M, |
spla_uint | row_id, | ||
spla_uint | col_id, | ||
float | value | ||
) |
spla_Status spla_Matrix_set_format | ( | spla_Matrix | M, |
int | format | ||
) |
spla_Status spla_Matrix_set_int | ( | spla_Matrix | M, |
spla_uint | row_id, | ||
spla_uint | col_id, | ||
int | value | ||
) |
spla_Status spla_Matrix_set_reduce | ( | spla_Matrix | M, |
spla_OpBinary | reduce | ||
) |
spla_Status spla_Matrix_set_uint | ( | spla_Matrix | M, |
spla_uint | row_id, | ||
spla_uint | col_id, | ||
unsigned int | value | ||
) |