haxmap
avo
Our great sponsors
haxmap | avo | |
---|---|---|
7 | 8 | |
775 | 2,424 | |
- | - | |
0.0 | 0.0 | |
about 1 month ago | 25 days ago | |
Go | Go | |
MIT License | BSD 3-clause "New" or "Revised" License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
haxmap
-
HaxMap v0.2.0 released, huge performance improvements and added support for 32-bit systems
New version [v0.2.1](https://github.com/alphadose/haxmap/releases/tag/v0.2.1) released with more performance improvements
This issue has been fixed with https://github.com/alphadose/haxmap/releases/tag/v0.3.0
-
HaxMap, a concurrent hashmap faster and more memory-efficient than golang's sync.Map
This behaviour is now fixed with https://github.com/alphadose/haxmap/commit/bc3b9a6adfc4600fd948124f5d9b74139dfe6d39
avo
-
How to Use AVX512 in Golang
I thought the /r/golang comments on this post were pretty useful[1]. They also introduced me to avo[2], a tool for generating x86 assembly from go that I hadn't seen before. There are some examples listed on the avo github page for generating AVX512 instructions with avo.
1 = https://www.reddit.com/r/golang/comments/10hmh07/how_to_use_...
For writing AVX512 from scratch avo is a much better alternative.
-
SIMD Accelerated vector math
Avo is a library that simplifies writing complex go assembly, I found it very useful to figure out how instructions map onto Go's asm syntax. But you could definitely do the translation directly, it's what c2goasm did (couldn't get it to work reliably unfortunately).
-
HaxMap v0.2.0 released, huge performance improvements and added support for 32-bit systems
Curious if you're looking at using avo to write the assembly
-
HaxMap, a concurrent hashmap faster and more memory-efficient than golang's sync.Map
You can use github.com/mmcloughlin/avo for generating the assembly use Go.
-
S2: Fully Snappy compatible compression, faster and better
For normal and "better" mode I am using avo to generate different encoders for different input sizes, with and without Snappy compatibility. That currently outputs about 17k lines of assembly.
-
Branchless Coding in Go (Golang)
You could perhaps just have the Go compiler generate the assembler for your code:
go tool compile -S file.go > file_amd64.s
Then you could verify it doesn't change over time, and choose to begin maintaining by hand if it makes sense.
If you do want to go the route of rolling it yourself, I'd suggest looking into something like Avo: https://github.com/mmcloughlin/avo
-
High precision timer loop.
If you have to go with Assembly, try Avo https://github.com/mmcloughlin/avo
What are some alternatives?
sha256-simd - Accelerate SHA256 computations in pure Go using AVX512, SHA Extensions for x86 and ARM64 for ARM. On AVX512 it provides an up to 8x improvement (over 3 GB/s per core). SHA Extensions give a performance boost of close to 4x over native.
goqueue - Flexible Queue System for Go
hashmap - A Golang lock-free thread-safe HashMap optimized for fastest read access.
sonic - A blazingly fast JSON serializing & deserializing library
xxHash - Pure Go implementation of xxHash (32 and 64 bits versions)
xxhash - A Go implementation of the 64-bit xxHash algorithm (XXH64)
compress - Optimized Go Compression Packages
zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
rjson - A fast json parser for go
asm - Go library providing algorithms optimized to leverage the characteristics of modern CPUs
asm - Learning assembly for linux-x64