Searched refs:routinesIn (Results 1 – 1 of 1) sorted by relevance
| /petsc/config/BuildSystem/config/packages/ |
| H A D | BlasLapack.py | 92 def checkBlas(self, blasLibrary, otherLibs, mangling = None, routinesIn = ['dot']): argument 95 if not isinstance(routinesIn, list): 96 routinesIn = [routinesIn] 97 routines = map(self.mangleBlas, routinesIn, [mangling]*len(routinesIn)) 102 def checkLapack(self, lapackLibrary, otherLibs, mangling = None, routinesIn = ['getrs','geev']): argument 104 if not isinstance(routinesIn, list): 105 routinesIn = [routinesIn] 106 routines = map(self.mangleBlas, routinesIn, [mangling]*len(routinesIn))
|