SimdJsonSharp
SimdJsonSharp copied to clipboard
C# bindings for lemire/simdjson (and full C# port)
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.2 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Now that .NET Standard and .NET Core 3.0 is out, do you have any plans to further optimize the library by using `ArrayPool` and `Span`?
Using SimdJsonSharp.Managed nuget with a .Net5 console application in VS19 on Windows 10 with AVX2 support i am able to reproduce an access violation with some Json files. After a...
# Version 0.4 of simdjson is now available Highlights - Test coverage has been greatly improved and we have resolved many static-analysis warnings on different systems. New features: - We...
I use SimdJsonSharp.Managed. ``` Exception has occurred: CLR/System.InvalidOperationException An unhandled exception of type 'System.InvalidOperationException' occurred in SimdJsonSharp.Managed.dll: 'Internal bug' at SimdJsonSharp.stage1_find_marks.find_structural_bits(Byte* buf, UInt64 len, ParsedJson pj) at SimdJsonSharp.SimdJson.JsonParse(Byte* jsonData, UInt64...
I have tried to add SimdJsonSharp to my serializer perfomrance test suite. See https://github.com/Alois-xx/SerializerTests When you compile it and let it run on .NET Core Preview 7 ``` D:\Source\git\SerializerTests\bin\Debug\netcoreapp3.0>SerializerTests.exe -test...
The library simdjson has a new major release (0.2.0). Major changes: * Support for 64-bit ARM processors, can run under iOS (iPhone). * Runtime dispatching on x64 processors (switches to...
Pre AVX2
Nice work. As you know RyuJIT can test for ISA level support at codegen time. Do you plan to attempt to offer a SIMD codepath for CPU without AVX2? They...
Just a thought... I could imagine an arena allocator doing quite well in this kind of use case. @mgravell introduced a C# implementation here: https://github.com/mgravell/Pipelines.Sockets.Unofficial/blob/master/docs/arenas.md
Using SimdJsonSharp.Bindings for a project using .NET 4.0 framework on Windows 11. Facing the following build error > CSC : error CS8002: Referenced assembly 'SimdJsonSharp.Bindings, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null' does not...