Home
last modified time | relevance | path

Searched refs:sparseFile (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/mlir/lib/ExecutionEngine/
DSparseUtils.cpp131 static FILE *sparseFile = nullptr; variable
136 if (sparseFile != nullptr) { in openMatrixC()
141 sparseFile = fopen(filename, "r"); in openMatrixC()
142 if (!sparseFile) { in openMatrixC()
147 readHeader(sparseFile, filename, mdata, ndata, nnzdata); in openMatrixC()
160 if (sparseFile == nullptr) { in readMatrixItemC()
164 readItem(sparseFile, sparseFilename, idata, jdata, ddata); in readMatrixItemC()
175 if (sparseFile == nullptr) { in closeMatrix()
179 fclose(sparseFile); in closeMatrix()
180 sparseFile = nullptr; in closeMatrix()