This commit is contained in:
Blaise Tine
2019-11-25 12:28:37 -05:00
parent 12cf0472b5
commit 83f793edc9
16 changed files with 3374 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/***************************************************************************
*cr
*cr (C) Copyright 2007 The Board of Trustees of the
*cr University of Illinois
*cr All Rights Reserved
*cr
***************************************************************************/
#ifndef __FILEH__
#define __FILEH__
void inputData(char* fName, int* len, int* depth, int* dim,int *nzcnt_len,int *pad,
float** h_data, int** h_indices, int** h_ptr,
int** h_perm, int** h_nzcnt);
void input_vec(char* fNanme, float *h_vec,int dim);
void outputData(char* fName, float *h_Ax_vector,int dim);
#endif