Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance #103

Merged
merged 2 commits into from
Nov 1, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
toolchain: stable
components: rustfmt, clippy

- run: cargo fmt --all
- run: cargo fmt --check --all

- run: cargo clippy --all --all-targets --all-features

Expand Down
20 changes: 10 additions & 10 deletions comparison/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ have additional overhead for each function call.

Click any graph to see it full-size.

# XXHash64
# xxHash64

## Oneshot hashing

Expand Down Expand Up @@ -40,7 +40,7 @@ various chunk sizes.
<a href="./results/xxhash64-streaming-aarch64.svg">
<img
src="./results/xxhash64-streaming-aarch64.svg"
alt="XXHash64, streaming data, on an aarch64 processor"
alt="xxHash64, streaming data, on an aarch64 processor"
/>
</a>

Expand All @@ -49,7 +49,7 @@ various chunk sizes.
<a href="./results/xxhash64-streaming-x86_64.svg">
<img
src="./results/xxhash64-streaming-x86_64.svg"
alt="XXHash64, streaming data, on an x86_64 processor"
alt="xxHash64, streaming data, on an x86_64 processor"
/>
</a>

Expand All @@ -62,7 +62,7 @@ Compares the **time taken** to hash 0 to 32 bytes of data.
<a href="./results/xxhash64-tiny_data-aarch64.svg">
<img
src="./results/xxhash64-tiny_data-aarch64.svg"
alt="XXHash64, small data, on an aarch64 processor"
alt="xxHash64, small data, on an aarch64 processor"
/>
</a>

Expand All @@ -71,12 +71,12 @@ Compares the **time taken** to hash 0 to 32 bytes of data.
<a href="./results/xxhash64-tiny_data-x86_64.svg">
<img
src="./results/xxhash64-tiny_data-x86_64.svg"
alt="XXHash64, small data, on an x86_64 processor"
alt="xxHash64, small data, on an x86_64 processor"
/>
</a>


# XXHash3 (64-bit)
# xxHash3 (64-bit)

## Oneshot hashing

Expand Down Expand Up @@ -113,7 +113,7 @@ various chunk sizes.
<a href="./results/xxhash3_64-streaming-aarch64.svg">
<img
src="./results/xxhash3_64-streaming-aarch64.svg"
alt="XXHash3, 64-bit, streaming data, on an aarch64 processor"
alt="xxHash3, 64-bit, streaming data, on an aarch64 processor"
/>
</a>

Expand All @@ -122,7 +122,7 @@ various chunk sizes.
<a href="./results/xxhash3_64-streaming-x86_64.svg">
<img
src="./results/xxhash3_64-streaming-x86_64.svg"
alt="XXHash3, 64-bit, streaming data, on an x86_64 processor"
alt="xxHash3, 64-bit, streaming data, on an x86_64 processor"
/>
</a>

Expand All @@ -137,7 +137,7 @@ cluttering the graph and wasting benchmarking time.
<a href="./results/xxhash3_64-tiny_data-aarch64.svg">
<img
src="./results/xxhash3_64-tiny_data-aarch64.svg"
alt="XXHash3, 64-bit, small data, on an aarch64 processor"
alt="xxHash3, 64-bit, small data, on an aarch64 processor"
/>
</a>

Expand All @@ -146,7 +146,7 @@ cluttering the graph and wasting benchmarking time.
<a href="./results/xxhash3_64-tiny_data-x86_64.svg">
<img
src="./results/xxhash3_64-tiny_data-x86_64.svg"
alt="XXHash3, 64-bit, small data, on an x86_64 processor"
alt="xxHash3, 64-bit, small data, on an x86_64 processor"
/>
</a>

Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![doc = include_str!("../README.md")]

#![deny(rust_2018_idioms)]
#![deny(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
Expand Down