Fixed a python3 import error issue with the database script

pull/282/head
Cedric Nugteren 2018-04-07 17:40:43 +02:00
parent 048fe90e57
commit cf7965dc68
3 changed files with 3 additions and 5 deletions

View File

@ -7,7 +7,7 @@
import sys
import clblast
import database.clblast as clblast
def get_best_results(database):

View File

@ -8,8 +8,6 @@
import itertools
from operator import itemgetter
import clblast
def length(database):
"""Computes the total number of tuning entries"""

View File

@ -8,8 +8,8 @@
import ast
from collections import defaultdict
import clblast
import bests
import database.bests as bests
import database.clblast as clblast
def set_identifiers(database, group_by_attributes, identifier_name):