We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc2cbc4 commit cb4db94Copy full SHA for cb4db94
kernel_tuner/util.py
@@ -13,7 +13,7 @@ def get_instance_string(params):
13
14
def get_config_string(params):
15
""" return a compact string representation of a dictionary """
16
- return "".join([k + "=" + str(v) + ", " for k, v in params.items()])
+ return ", ".join([k + "=" + str(v) for k, v in params.items()])
17
18
def get_kernel_string(original_kernel):
19
""" retrieves kernel string from a file if the string passed looks like filename
0 commit comments