(library, output_dir)
| 244 | types = {'blas', 'lapack', 'd_lapack', 's_lapack', 'z_lapack', 'c_lapack', 'config'} |
| 245 | |
| 246 | def dumpRoutineNames(library, output_dir): |
| 247 | for typename in {'unknown'} | types: |
| 248 | routines = library.allRoutinesByType(typename) |
| 249 | filename = os.path.join(output_dir, typename + '_routines.lst') |
| 250 | with open(filename, 'w') as fo: |
| 251 | for r in routines: |
| 252 | deps = r.dependencies() |
| 253 | fo.write(f"{r.name}: {' '.join(deps)}\n") |
| 254 | |
| 255 | def concatenateRoutines(routines, output_file): |
| 256 | with open(output_file, 'w') as output_fo: |
no test coverage detected
searching dependent graphs…