(wrapped_routines_file)
| 225 | return library |
| 226 | |
| 227 | def getWrappedRoutineNames(wrapped_routines_file): |
| 228 | routines = [] |
| 229 | ignores = [] |
| 230 | with open(wrapped_routines_file) as fo: |
| 231 | for line in fo: |
| 232 | line = line.strip() |
| 233 | if not line or line.startswith('#'): |
| 234 | continue |
| 235 | if line.startswith('IGNORE:'): |
| 236 | line = line[7:].strip() |
| 237 | ig = line.split() |
| 238 | ignores.extend(ig) |
| 239 | else: |
| 240 | routines.append(line) |
| 241 | return routines, ignores |
| 242 | |
| 243 | |
| 244 | types = {'blas', 'lapack', 'd_lapack', 's_lapack', 'z_lapack', 'c_lapack', 'config'} |
no test coverage detected
searching dependent graphs…