Skip to content

Commit f49e0dc

Browse files
committed
Sort imports in compute.py module
Imports sorted with isort
1 parent 73450f8 commit f49e0dc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
# See LICENSE.TXT
44
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
55

6-
from itertools import product
7-
import os
6+
import copy
87
import csv
98
import io
10-
import copy
119
import math
10+
import os
1211
from enum import Enum
12+
from itertools import product
1313

14-
from utils.utils import run, git_clone, create_build_path
15-
from .base import Benchmark, Suite, TracingType
16-
from utils.result import BenchmarkMetadata, Result
17-
from .base import Benchmark, Suite
14+
from benches.base import Benchmark, Suite, TracingType
1815
from options import options
16+
from utils.result import BenchmarkMetadata, Result
17+
18+
from utils.utils import create_build_path, git_clone, run
1919

2020

2121
class RUNTIMES(Enum):

0 commit comments

Comments
 (0)