lda-ruby 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +4 -1
- data/VERSION.yml +1 -1
- data/docs/modernization-handoff.md +68 -25
- data/docs/porting-strategy.md +23 -2
- data/docs/precompiled-platform-policy.md +15 -2
- data/docs/precompiled-target-evaluation.md +67 -0
- data/docs/release-runbook.md +41 -6
- data/docs/rust-orchestration-guardrails.md +50 -0
- data/ext/lda-ruby/cokus.c +10 -11
- data/ext/lda-ruby/cokus.h +3 -3
- data/ext/lda-ruby/lda-inference.c +2 -2
- data/ext/lda-ruby/utils.c +8 -0
- data/ext/lda-ruby-rust/README.md +25 -0
- data/ext/lda-ruby-rust/extconf.rb +25 -13
- data/ext/lda-ruby-rust/include/strings.h +35 -0
- data/ext/lda-ruby-rust/src/lib.rs +816 -9
- data/lib/lda-ruby/backends/base.rb +4 -0
- data/lib/lda-ruby/backends/pure_ruby.rb +110 -48
- data/lib/lda-ruby/backends/rust.rb +384 -3
- data/lib/lda-ruby/version.rb +1 -1
- data/test/benchmark_scripts_test.rb +23 -0
- data/test/pure_ruby_orchestration_test.rb +109 -0
- data/test/release_scripts_test.rb +39 -0
- data/test/rust_orchestration_test.rb +911 -0
- metadata +8 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lda-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Blei
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2026-
|
|
13
|
+
date: 2026-05-04 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: Ruby wrapper and toolkit for Latent Dirichlet Allocation based on the
|
|
16
16
|
original lda-c implementation by David M. Blei.
|
|
@@ -29,10 +29,13 @@ files:
|
|
|
29
29
|
- docs/modernization-handoff.md
|
|
30
30
|
- docs/porting-strategy.md
|
|
31
31
|
- docs/precompiled-platform-policy.md
|
|
32
|
+
- docs/precompiled-target-evaluation.md
|
|
32
33
|
- docs/release-runbook.md
|
|
34
|
+
- docs/rust-orchestration-guardrails.md
|
|
33
35
|
- ext/lda-ruby-rust/Cargo.toml
|
|
34
36
|
- ext/lda-ruby-rust/README.md
|
|
35
37
|
- ext/lda-ruby-rust/extconf.rb
|
|
38
|
+
- ext/lda-ruby-rust/include/strings.h
|
|
36
39
|
- ext/lda-ruby-rust/src/lib.rs
|
|
37
40
|
- ext/lda-ruby/cokus.c
|
|
38
41
|
- ext/lda-ruby/cokus.h
|
|
@@ -69,14 +72,17 @@ files:
|
|
|
69
72
|
- license.txt
|
|
70
73
|
- test/backend_compatibility_test.rb
|
|
71
74
|
- test/backends_selection_test.rb
|
|
75
|
+
- test/benchmark_scripts_test.rb
|
|
72
76
|
- test/data/docs.dat
|
|
73
77
|
- test/data/sample.rb
|
|
74
78
|
- test/data/wiki-test-docs.yml
|
|
75
79
|
- test/gemspec_test.rb
|
|
76
80
|
- test/lda_ruby_test.rb
|
|
77
81
|
- test/packaged_gem_smoke_test.rb
|
|
82
|
+
- test/pure_ruby_orchestration_test.rb
|
|
78
83
|
- test/release_scripts_test.rb
|
|
79
84
|
- test/rust_build_policy_test.rb
|
|
85
|
+
- test/rust_orchestration_test.rb
|
|
80
86
|
- test/simple_pipeline_test.rb
|
|
81
87
|
- test/simple_yaml.rb
|
|
82
88
|
- test/test_helper.rb
|