avo | rjson | |
---|---|---|
10 | 5 | |
2,773 | 52 | |
- | - | |
6.7 | 0.0 | |
18 days ago | about 3 years ago | |
Go | Go | |
BSD 3-clause "New" or "Revised" License | MIT 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.
avo
-
From slow to SIMD: A Go optimization story
I wonder whether avo could have been useful here?[1] I mention it because it came up the last time we were talking about AVX operations in go.[2]
1 = https://github.com/mmcloughlin/avo
2 = https://news.ycombinator.com/item?id=34465297
- Portable Efficient Assembly Code-Generator in Higher-Level Python (PeachPy)
-
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_...
2 = https://github.com/mmcloughlin/avo
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
rjson
-
Expr – a tiny stack-based virtual machine written in Go
This is an interesting project. I think Ragel is an underused resource for writing efficient go code. I used Ragel to build a json parser.
-
Branchless Coding in Go (Golang)
I apparently had a fundamental misunderstanding of the meaning of branchless. That's embarrassing.
As for simdjson-go, I did benchmark it. rjson outperformed simdjson-go in most benchmarks, but simdjson-go was about 3% faster reading citm_catalog.json.
https://github.com/WillAbides/rjson#simdjson
-
I wrote yet another json parser. It may be a contender for fastest.
/u/egonelbre I added simdjson-go to the benchmarks. It's an interesting one. It edged out rjson on one of the ReadObject benchmarks. It appears to do very well with large json objects that have a lot of string values.
What are some alternatives?
sonic - A blazingly fast JSON serializing & deserializing library
simdjson-go - Golang port of simdjson: parsing gigabytes of JSON per second
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.
expr - Expr – a tiny stack-based virtual machine written in Go
dingo - Generated dependency injection containers in go (golang)
jsoniter - A high-performance 100% compatible drop-in replacement of "encoding/json"
c2goasm - C to Go Assembly
expr - Expression language and expression evaluation for Go [Moved to: https://github.com/expr-lang/expr]
kobopatch-patches - Patches for use with kobopatch.
zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
haxmap - Fastest and most memory efficient golang concurrent hashmap
xxHash - Pure Go implementation of xxHash (32 and 64 bits versions)