#ifndef NERV_MMATRIX_H #define NERV_MMATRIX_H #include "matrix.h" #include "../common.h" typedef struct MContext { HashMap *profile; } MContext; Matrix *nerv_matrix_host_float_perm_gen(int ncol, MContext *context, Status *status); void nerv_host_context_print_profile(MContext *context); void nerv_host_context_clear_profile(MContext *context); MContext *nerv_host_context_create(Status *status); void nerv_host_context_destroy(MContext *contex, Status *status); #endif