Skip to content
Closed
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
14 changes: 11 additions & 3 deletions benchmarks/params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
from typing import Any, List, Tuple, Union
from eth_typing import HexStr
from typing import (
Any,
List,
Tuple,
Union,
)

from eth_typing import (
HexStr,
)
import hexbytes

import faster_hexbytes

Convertable = Union[bool, bytearray, bytes, int, str, memoryview]
Expand Down Expand Up @@ -77,10 +85,10 @@ def variant_ids(base_ids: List[str], prefix: str) -> List[str]:
STR_IDS: List[str] = [id for _, id in STR_CASES]

INT_CASES: List[Tuple[int, str]] = [
(123456, "123456"),
(0, "0"),
(1, "1"),
(255, "255"),
(123456, "123456"),
(2**8, "2**8"),
(2**16, "2**16"),
(2**32, "2**32"),
Expand Down
278 changes: 140 additions & 138 deletions benchmarks/results/_utils.md

Large diffs are not rendered by default.

968 changes: 485 additions & 483 deletions benchmarks/results/main.md

Large diffs are not rendered by default.

Loading