Skip to content

Commit cbdd0a8

Browse files
remove whitespace
1 parent 1227151 commit cbdd0a8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

kernel_tuner/backends/compiler.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -268,19 +268,19 @@ def compile(self, kernel_instance):
268268
subprocess.run(
269269
[self.compiler, "-c", source_file] + compiler_options + ["-o", filename + ".o"],
270270
stdout=subprocess.PIPE,
271-
stderr=subprocess.PIPE,
272-
text=True,
273-
check=True
271+
stderr=subprocess.PIPE,
272+
text=True,
273+
check=True
274274
)
275-
275+
276276
subprocess.run(
277277
[self.compiler, filename + ".o"]
278278
+ compiler_options
279279
+ ["-shared", "-o", filename + lib_extension]
280280
+ lib_args,
281-
stdout=subprocess.PIPE,
282-
stderr=subprocess.PIPE,
283-
text=True,
281+
stdout=subprocess.PIPE,
282+
stderr=subprocess.PIPE,
283+
text=True,
284284
check=True
285285
)
286286

0 commit comments

Comments
 (0)