Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfowers committed Aug 12, 2024
1 parent 468ebb7 commit 6bf334a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/turnkeyml/run/basert.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from abc import ABC, abstractmethod
import torch
import numpy as np
from turnkeyml.common.performance import MeasuredPerformance, Device
from turnkeyml.run.performance import MeasuredPerformance, Device
import turnkeyml.common.build as build
import turnkeyml.common.exceptions as exp
import turnkeyml.common.filesystem as fs
Expand Down
2 changes: 1 addition & 1 deletion src/turnkeyml/run/benchmark_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
apply_default_runtime,
)
import turnkeyml.cli.parser_helpers as parser_helpers
from turnkeyml.common.performance import Device, parse_device
from turnkeyml.run.performance import Device, parse_device

default_iterations = 100
benchmark_default_device = "x86"
Expand Down
2 changes: 1 addition & 1 deletion src/turnkeyml/run/torchrt/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import torch
import numpy as np
from turnkeyml.run.basert import BaseRT
from turnkeyml.common.performance import MeasuredPerformance
from turnkeyml.run.performance import MeasuredPerformance
from turnkeyml.run.onnxrt.execute import get_cpu_specs
import turnkeyml.common.build as build
import turnkeyml.common.exceptions as exp
Expand Down

0 comments on commit 6bf334a

Please sign in to comment.