summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-09-03 16:43:23 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-09-03 16:43:23 +0200
commit521bf6cdfc650f82488c1e07918eeabd7b328a78 (patch)
tree9ad89eee3834bee9afe1eced1bbb1b7a1405c92f /scripts
parent19574b2519e723cbca0b0fa0964e8e5823c24911 (diff)
Added tuning results for Intel Broadwell 5500 GT2 GPU
Diffstat (limited to 'scripts')
-rw-r--r--scripts/database/database/defaults.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/database/database/defaults.py b/scripts/database/database/defaults.py
index 73ad2bcf..3bde33c1 100644
--- a/scripts/database/database/defaults.py
+++ b/scripts/database/database/defaults.py
@@ -45,8 +45,7 @@ def calculate_defaults(database, verbose, calculate_common_best=True):
groups = database_defaults.groupby(clblast.DEVICE_TYPE_ATTRIBUTES + clblast.KERNEL_ATTRIBUTES + ["kernel"])
for group_name, database_group in groups:
if len(database_group) != 1:
- description = database_group["kernel"].min() + " " + database_group["device_vendor"].min()
- print("[WARNING] Entries for a single kernel with multiple argument values: " + description)
+ print("[WARNING] Entries for a single kernel with multiple argument values: " + str(group_name))
# Defaults over all device types and vendors
groups = database.groupby(clblast.KERNEL_ATTRIBUTES + ["kernel"] + clblast.ARGUMENT_ATTRIBUTES)