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