Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion edgebench/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

from pathlib import Path
from typing import Any, Dict
import tomllib

try:
import tomllib
except ModuleNotFoundError: # Python 3.10 fallback
import tomli as tomllib


DEFAULT_COMPARE_THRESHOLDS: Dict[str, float] = {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Edge AI Inference Profiling Framework"
authors = [{ name = "Your Name" }]
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.10,<3.12"
dependencies = [
"onnx",
"onnxruntime",
Expand Down
Loading