You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DESCRIPTION"Community driven and agreed upon de facto standard library for Fortran"
7
+
LANGUAGESFortranC
8
+
DESCRIPTION"Community driven and agreed upon de facto standard library for Fortran"
9
9
)
10
10
11
11
# Read version from file
@@ -116,8 +116,19 @@ endif()
116
116
117
117
# --- find preprocessor
118
118
find_program(FYPPfypp)
119
-
if(NOT FYPP)
120
-
message(FATAL_ERROR"Preprocessor fypp not found! Please install fypp following the instructions in https://fypp.readthedocs.io/en/stable/fypp.html#installing")
119
+
if(NOT FYPP OR"${FYPP}"MATCHES"NOTFOUND")
120
+
message(FATAL_ERROR
121
+
"\n [stdlib Build Error]: Preprocessor 'fypp' not found!\n"
`coo` : Shall be a `COO` type of `real` or `complex` type. It is an `intent(in)` argument.
304
304
305
305
`csr` : Shall be a `CSR` type of `real` or `complex` type. It is an `intent(out)` argument.
306
306
307
+
`sort_data`, `optional` : Shall be a `logical` argument to determine whether data in the COO graph should be sorted before obtaining the CSR representation. The transformation from COO to CSR depends on the former being sorted in row-major order and not having duplicate pairs. Using this boolean will call a sorting routine at the cost of extra runtime, default `.false.`. It is an `intent(in)` argument.
0 commit comments