Skip to content

Releases: c-blake/adix

Version bump just to update nimble dep on cligen-1.7.0

22 Feb 13:21
1fcb71a
Compare
Choose a tag to compare

To be sure the fmtUncertain* bug fix propagates.

'nuff said.

0.5.10

16 Jan 17:20
857cdc7
Compare
Choose a tag to compare

Overhaul adix/oats.nim to support MemFile/MFile-backed arrays (though none of the current examples actually do that yet). Rename getPut to the more common term upSert. Re-factor helper templates and quite a few other changes. See 70a2a3d .

Update all the client code in util/lfreq.nim (which should really move to bu soon and possibly be renamed uniqc), tests/wu.nim, tests/wfr.nim and add tests/ucl.nim (maybe almost the simplest possible example w/o sucky perf).

A bunch of little changes:

  • add note about how to use pre-2.0 Nim to .nimble
  • update tests/kmCmp.sh to show amoft perf.
  • update cligen dep

Fix New Style Concept installation issue

10 Oct 11:25
597179a
Compare
Choose a tag to compare

Address failure to util/lfreq | adix/oats build failure mentioned in #9 by more agressive Nim version requirement. (Update cligen to latest as part of this.)

Generalize lfreq slightly

23 Aug 12:17
ece20c1
Compare
Choose a tag to compare

That's about it. Now, it can work well with, e.g., \0-terminated records.

Add adix/oats new-style Concept prototype & examples

10 Jul 08:35
5ff7032
Compare
Choose a tag to compare

Actual source files have more details, as always, but basically add adix/oats.nim: A new-style Concept backend prototype for open-addressed tables. It is nowhere near as thorough as adix/lptabz at this stage.

So util/lfreq.nim and now no longer needs a user to magically know how big the string data area will need to be, making it actually a pretty general purpose utility (which is good since the README refers to it in comparison with the bu/oft wrapper around the adix/amoft.AMOft sketch).

Also add some less generally useful test/comparison files related to adix/oats for the curious:

  • tests/lfreq.awk: Like above written as a pure AWK 1-liner
  • tests/wu.nim: Unique w/no counts allows smallest CPU cache footprint
  • tests/wfr.nim: Fully bundled Knuth-McIlroy vocab analyzer (almost surely "overbundled" but big among CFRO guys).
  • tests/kmCmp.sh: Knuth-McIlroy Problem comparisons of above

Make building nsort more portable

28 Jun 17:18
20ab393
Compare
Choose a tag to compare

Work on making compiling SIMD-optimized cumsum & nsort more robust on x86_64 platforms.

This robustness is only compile-time CPU feature detection-oriented (run-time would seem to require either a non-intrinsics approach to assembly or separate C compilation units.). So, it matters if your nim.cfg/build flags have march=native (or whatnot) in them which is kind of a choice outside the package as it relates to binary compatibility/deployment.

Mostly just update cligen version dep.

02 Jun 15:21
bc6581d
Compare
Choose a tag to compare

This kind of "release noise" should now become rare with the new bu/nrel -u feature.

Stop using LineTooLong

12 May 10:03
0d07c6d
Compare
Choose a tag to compare

Fix bug when using older Nim compilers

31 Mar 09:55
befaa53
Compare
Choose a tag to compare

Fix nimble install when a dependency

29 Mar 23:01
34d9722
Compare
Choose a tag to compare

That's it. Again thanks to @Gruruya .