File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,6 @@ def get_install_binpath(self, case: Case ) -> str:
7272 # <root>/install/<slug>/bin/<target>
7373 return os .sep .join ([self .get_install_dirpath (case ), "bin" , self .name ])
7474
75- def get_home_dirpath (self ) -> str :
76- return os .sep .join ([os .getcwd ()])
77-
7875 def is_configured (self , case : Case ) -> bool :
7976 # We assume that if the CMakeCache.txt file exists, then the target is
8077 # configured. (this isn't perfect, but it's good enough for now)
Original file line number Diff line number Diff line change @@ -9,10 +9,9 @@ class gpuConfigOptions(Enum):
99
1010@dataclasses .dataclass
1111class MFCConfig :
12+ # pylint: disable=too-many-instance-attributes
1213 mpi : bool = True
1314 gpu : str = gpuConfigOptions .NONE .value
14- # mp: bool = False
15- # acc: bool = False
1615 debug : bool = False
1716 gcov : bool = False
1817 unified : bool = False
You can’t perform that action at this time.
0 commit comments