Skip to content

Commit

Permalink
Merge pull request #103 from shepmaster/maint
Browse files Browse the repository at this point in the history
Maintenance
  • Loading branch information
shepmaster authored Nov 1, 2024
2 parents bbfa771 + bd2341a commit b937bc2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
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

0 comments on commit b937bc2

Please sign in to comment.