Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
2A5F committed Dec 9, 2023
1 parent d309974 commit 117b6b6
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
- `Vec<T>`
Reimplemented `List<T>`, can unsafely retrieve the internal Array or as Span, Memory
*todo* methods same to `List<T>`
- `FlatHashMap<K, V>`
HashMap with simd accelerated query, using [SwissTables](https://abseil.io/blog/20180927-swisstables) algorithm
simd support see [Simd Support](#Simd-Support)
- Sync / Concurrent / Thread safe
- `OnceInit<T>`
Similar to `Lazy<T>`, but provides init function when getting
Expand All @@ -40,18 +37,3 @@
A hasher that ensures even distribution of each bit
If possible use Aes SIMD acceleration (.net7+)
Algorithm from https://github.com/tkaitchuck/aHash

#### Simd Support
- .net8 +
- Vector512
- .net7 +
- Vector256
- Vector128
- Vector64
- X86.Aes
- Arm.Aes
- other
- soft

.Net 6 does not fully support simd, so .net6 does not have simd support
**Don’t use .net6, use .net8+**

0 comments on commit 117b6b6

Please sign in to comment.