tomoto 0.3.2-arm64-darwin

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.
Files changed (98) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +54 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +164 -0
  5. data/ext/tomoto/ct.cpp +58 -0
  6. data/ext/tomoto/dmr.cpp +69 -0
  7. data/ext/tomoto/dt.cpp +91 -0
  8. data/ext/tomoto/extconf.rb +42 -0
  9. data/ext/tomoto/gdmr.cpp +42 -0
  10. data/ext/tomoto/hdp.cpp +47 -0
  11. data/ext/tomoto/hlda.cpp +71 -0
  12. data/ext/tomoto/hpa.cpp +32 -0
  13. data/ext/tomoto/lda.cpp +281 -0
  14. data/ext/tomoto/llda.cpp +33 -0
  15. data/ext/tomoto/mglda.cpp +81 -0
  16. data/ext/tomoto/pa.cpp +32 -0
  17. data/ext/tomoto/plda.cpp +33 -0
  18. data/ext/tomoto/slda.cpp +48 -0
  19. data/ext/tomoto/tomoto.cpp +48 -0
  20. data/ext/tomoto/utils.h +30 -0
  21. data/lib/tomoto/2.7/tomoto.bundle +0 -0
  22. data/lib/tomoto/3.0/tomoto.bundle +0 -0
  23. data/lib/tomoto/3.1/tomoto.bundle +0 -0
  24. data/lib/tomoto/3.2/tomoto.bundle +0 -0
  25. data/lib/tomoto/ct.rb +24 -0
  26. data/lib/tomoto/dmr.rb +27 -0
  27. data/lib/tomoto/dt.rb +15 -0
  28. data/lib/tomoto/gdmr.rb +15 -0
  29. data/lib/tomoto/hdp.rb +11 -0
  30. data/lib/tomoto/hlda.rb +56 -0
  31. data/lib/tomoto/hpa.rb +11 -0
  32. data/lib/tomoto/lda.rb +181 -0
  33. data/lib/tomoto/llda.rb +15 -0
  34. data/lib/tomoto/mglda.rb +15 -0
  35. data/lib/tomoto/pa.rb +11 -0
  36. data/lib/tomoto/plda.rb +15 -0
  37. data/lib/tomoto/slda.rb +37 -0
  38. data/lib/tomoto/version.rb +3 -0
  39. data/lib/tomoto.rb +27 -0
  40. data/vendor/EigenRand/EigenRand/EigenRand +24 -0
  41. data/vendor/EigenRand/LICENSE +21 -0
  42. data/vendor/EigenRand/README.md +430 -0
  43. data/vendor/eigen/COPYING.APACHE +203 -0
  44. data/vendor/eigen/COPYING.BSD +26 -0
  45. data/vendor/eigen/COPYING.GPL +674 -0
  46. data/vendor/eigen/COPYING.LGPL +502 -0
  47. data/vendor/eigen/COPYING.MINPACK +51 -0
  48. data/vendor/eigen/COPYING.MPL2 +373 -0
  49. data/vendor/eigen/COPYING.README +18 -0
  50. data/vendor/eigen/Eigen/Cholesky +45 -0
  51. data/vendor/eigen/Eigen/CholmodSupport +48 -0
  52. data/vendor/eigen/Eigen/Core +384 -0
  53. data/vendor/eigen/Eigen/Dense +7 -0
  54. data/vendor/eigen/Eigen/Eigen +2 -0
  55. data/vendor/eigen/Eigen/Eigenvalues +60 -0
  56. data/vendor/eigen/Eigen/Geometry +59 -0
  57. data/vendor/eigen/Eigen/Householder +29 -0
  58. data/vendor/eigen/Eigen/IterativeLinearSolvers +48 -0
  59. data/vendor/eigen/Eigen/Jacobi +32 -0
  60. data/vendor/eigen/Eigen/KLUSupport +41 -0
  61. data/vendor/eigen/Eigen/LU +47 -0
  62. data/vendor/eigen/Eigen/MetisSupport +35 -0
  63. data/vendor/eigen/Eigen/OrderingMethods +70 -0
  64. data/vendor/eigen/Eigen/PaStiXSupport +49 -0
  65. data/vendor/eigen/Eigen/PardisoSupport +35 -0
  66. data/vendor/eigen/Eigen/QR +50 -0
  67. data/vendor/eigen/Eigen/QtAlignedMalloc +39 -0
  68. data/vendor/eigen/Eigen/SPQRSupport +34 -0
  69. data/vendor/eigen/Eigen/SVD +50 -0
  70. data/vendor/eigen/Eigen/Sparse +34 -0
  71. data/vendor/eigen/Eigen/SparseCholesky +37 -0
  72. data/vendor/eigen/Eigen/SparseCore +69 -0
  73. data/vendor/eigen/Eigen/SparseLU +50 -0
  74. data/vendor/eigen/Eigen/SparseQR +36 -0
  75. data/vendor/eigen/Eigen/StdDeque +27 -0
  76. data/vendor/eigen/Eigen/StdList +26 -0
  77. data/vendor/eigen/Eigen/StdVector +27 -0
  78. data/vendor/eigen/Eigen/SuperLUSupport +64 -0
  79. data/vendor/eigen/Eigen/UmfPackSupport +40 -0
  80. data/vendor/eigen/README.md +5 -0
  81. data/vendor/eigen/bench/README.txt +55 -0
  82. data/vendor/eigen/bench/btl/COPYING +340 -0
  83. data/vendor/eigen/bench/btl/README +154 -0
  84. data/vendor/eigen/bench/tensors/README +20 -0
  85. data/vendor/eigen/blas/README.txt +6 -0
  86. data/vendor/eigen/ci/README.md +56 -0
  87. data/vendor/eigen/demos/mandelbrot/README +10 -0
  88. data/vendor/eigen/demos/mix_eigen_and_c/README +9 -0
  89. data/vendor/eigen/demos/opengl/README +13 -0
  90. data/vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1815 -0
  91. data/vendor/eigen/unsupported/README.txt +50 -0
  92. data/vendor/tomotopy/LICENSE +21 -0
  93. data/vendor/tomotopy/README.kr.rst +519 -0
  94. data/vendor/tomotopy/README.rst +538 -0
  95. data/vendor/variant/LICENSE +25 -0
  96. data/vendor/variant/LICENSE_1_0.txt +23 -0
  97. data/vendor/variant/README.md +102 -0
  98. metadata +141 -0
@@ -0,0 +1,102 @@
1
+ # Mapbox Variant
2
+
3
+ An alternative to `boost::variant` for C++11 and C++14
4
+
5
+ [![Build Status](https://secure.travis-ci.org/mapbox/variant.svg)](https://travis-ci.org/mapbox/variant)
6
+ [![Build status](https://ci.appveyor.com/api/projects/status/v9tatx21j1k0fcgy)](https://ci.appveyor.com/project/Mapbox/variant)
7
+ [![Coverage Status](https://coveralls.io/repos/mapbox/variant/badge.svg?branch=master&service=github)](https://coveralls.io/r/mapbox/variant?branch=master)
8
+
9
+
10
+ ## Why use Mapbox Variant?
11
+
12
+ Mapbox variant has the same speedy performance of `boost::variant` but is
13
+ faster to compile, results in smaller binaries, and has no dependencies.
14
+
15
+ For example on OS X 10.9 with clang++ and libc++:
16
+
17
+ Test | Mapbox Variant | Boost Variant
18
+ ---- | -------------- | -------------
19
+ Size of pre-compiled header (release / debug) | 2.8/2.8 MB | 12/15 MB
20
+ Size of simple program linking variant (release / debug) | 8/24 K | 12/40 K
21
+ Time to compile header | 185 ms | 675 ms
22
+
23
+ (Numbers from an older version of Mapbox variant.)
24
+
25
+
26
+ ## Goals
27
+
28
+ Mapbox `variant` has been a very valuable, lightweight alternative for apps
29
+ that can use c++11 or c++14 but that do not want a boost dependency.
30
+ Mapbox `variant` has also been useful in apps that do depend on boost, like
31
+ mapnik, to help (slightly) with compile times and to majorly lessen dependence
32
+ on boost in core headers. The original goal and near term goal is to maintain
33
+ external API compatibility with `boost::variant` such that Mapbox `variant`
34
+ can be a "drop in". At the same time the goal is to stay minimal: Only
35
+ implement the features that are actually needed in existing software. So being
36
+ an "incomplete" implementation is just fine.
37
+
38
+ Currently Mapbox variant doesn't try to be API compatible with the upcoming
39
+ variant standard, because the standard is not finished and it would be too much
40
+ work. But we'll revisit this decision in the future if needed.
41
+
42
+ If Mapbox variant is not for you, have a look at [these other
43
+ implementations](doc/other_implementations.md).
44
+
45
+ Want to know more about the upcoming standard? Have a look at our
46
+ [overview](doc/standards_effort.md).
47
+
48
+
49
+ ## Depends
50
+
51
+ - Compiler supporting `-std=c++11` or `-std=c++14`
52
+
53
+ Tested with:
54
+
55
+ - g++-4.7
56
+ - g++-4.8
57
+ - g++-4.9
58
+ - g++-5.2
59
+ - clang++-3.5
60
+ - clang++-3.6
61
+ - clang++-3.7
62
+ - clang++-3.8
63
+ - clang++-3.9
64
+ - Visual Studio 2015
65
+
66
+ ## Usage
67
+
68
+ There is nothing to build, just include `variant.hpp` in your project. Include `variant_io.hpp` if you need
69
+ the `operator<<` overload for variant.
70
+
71
+
72
+ ## Unit Tests
73
+
74
+ On Unix systems compile and run the unit tests with `make test`.
75
+
76
+ On Windows run `scripts/build-local.bat`.
77
+
78
+
79
+ ## Limitations
80
+
81
+ * The `variant` can not hold references (something like `variant<int&>` is
82
+ not possible). You might want to try `std::reference_wrapper` instead.
83
+
84
+
85
+ ## Deprecations
86
+
87
+ * The included implementation of `optional` is deprecated and will be removed
88
+ in a future version. See https://github.com/mapbox/variant/issues/64.
89
+ * Old versions of the code needed visitors to derive from `static_visitor`.
90
+ This is not needed any more and marked as deprecated. The `static_visitor`
91
+ class will be removed in future versions.
92
+
93
+
94
+ ## Benchmarks
95
+
96
+ make bench
97
+
98
+
99
+ ## Check object sizes
100
+
101
+ make sizes /path/to/boost/variant.hpp
102
+
metadata ADDED
@@ -0,0 +1,141 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tomoto
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.2
5
+ platform: arm64-darwin
6
+ authors:
7
+ - Andrew Kane
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-01-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email: andrew@ankane.org
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - CHANGELOG.md
20
+ - LICENSE.txt
21
+ - README.md
22
+ - ext/tomoto/ct.cpp
23
+ - ext/tomoto/dmr.cpp
24
+ - ext/tomoto/dt.cpp
25
+ - ext/tomoto/extconf.rb
26
+ - ext/tomoto/gdmr.cpp
27
+ - ext/tomoto/hdp.cpp
28
+ - ext/tomoto/hlda.cpp
29
+ - ext/tomoto/hpa.cpp
30
+ - ext/tomoto/lda.cpp
31
+ - ext/tomoto/llda.cpp
32
+ - ext/tomoto/mglda.cpp
33
+ - ext/tomoto/pa.cpp
34
+ - ext/tomoto/plda.cpp
35
+ - ext/tomoto/slda.cpp
36
+ - ext/tomoto/tomoto.cpp
37
+ - ext/tomoto/utils.h
38
+ - lib/tomoto.rb
39
+ - lib/tomoto/2.7/tomoto.bundle
40
+ - lib/tomoto/3.0/tomoto.bundle
41
+ - lib/tomoto/3.1/tomoto.bundle
42
+ - lib/tomoto/3.2/tomoto.bundle
43
+ - lib/tomoto/ct.rb
44
+ - lib/tomoto/dmr.rb
45
+ - lib/tomoto/dt.rb
46
+ - lib/tomoto/gdmr.rb
47
+ - lib/tomoto/hdp.rb
48
+ - lib/tomoto/hlda.rb
49
+ - lib/tomoto/hpa.rb
50
+ - lib/tomoto/lda.rb
51
+ - lib/tomoto/llda.rb
52
+ - lib/tomoto/mglda.rb
53
+ - lib/tomoto/pa.rb
54
+ - lib/tomoto/plda.rb
55
+ - lib/tomoto/slda.rb
56
+ - lib/tomoto/version.rb
57
+ - vendor/EigenRand/EigenRand/EigenRand
58
+ - vendor/EigenRand/LICENSE
59
+ - vendor/EigenRand/README.md
60
+ - vendor/eigen/COPYING.APACHE
61
+ - vendor/eigen/COPYING.BSD
62
+ - vendor/eigen/COPYING.GPL
63
+ - vendor/eigen/COPYING.LGPL
64
+ - vendor/eigen/COPYING.MINPACK
65
+ - vendor/eigen/COPYING.MPL2
66
+ - vendor/eigen/COPYING.README
67
+ - vendor/eigen/Eigen/Cholesky
68
+ - vendor/eigen/Eigen/CholmodSupport
69
+ - vendor/eigen/Eigen/Core
70
+ - vendor/eigen/Eigen/Dense
71
+ - vendor/eigen/Eigen/Eigen
72
+ - vendor/eigen/Eigen/Eigenvalues
73
+ - vendor/eigen/Eigen/Geometry
74
+ - vendor/eigen/Eigen/Householder
75
+ - vendor/eigen/Eigen/IterativeLinearSolvers
76
+ - vendor/eigen/Eigen/Jacobi
77
+ - vendor/eigen/Eigen/KLUSupport
78
+ - vendor/eigen/Eigen/LU
79
+ - vendor/eigen/Eigen/MetisSupport
80
+ - vendor/eigen/Eigen/OrderingMethods
81
+ - vendor/eigen/Eigen/PaStiXSupport
82
+ - vendor/eigen/Eigen/PardisoSupport
83
+ - vendor/eigen/Eigen/QR
84
+ - vendor/eigen/Eigen/QtAlignedMalloc
85
+ - vendor/eigen/Eigen/SPQRSupport
86
+ - vendor/eigen/Eigen/SVD
87
+ - vendor/eigen/Eigen/Sparse
88
+ - vendor/eigen/Eigen/SparseCholesky
89
+ - vendor/eigen/Eigen/SparseCore
90
+ - vendor/eigen/Eigen/SparseLU
91
+ - vendor/eigen/Eigen/SparseQR
92
+ - vendor/eigen/Eigen/StdDeque
93
+ - vendor/eigen/Eigen/StdList
94
+ - vendor/eigen/Eigen/StdVector
95
+ - vendor/eigen/Eigen/SuperLUSupport
96
+ - vendor/eigen/Eigen/UmfPackSupport
97
+ - vendor/eigen/README.md
98
+ - vendor/eigen/bench/README.txt
99
+ - vendor/eigen/bench/btl/COPYING
100
+ - vendor/eigen/bench/btl/README
101
+ - vendor/eigen/bench/tensors/README
102
+ - vendor/eigen/blas/README.txt
103
+ - vendor/eigen/ci/README.md
104
+ - vendor/eigen/demos/mandelbrot/README
105
+ - vendor/eigen/demos/mix_eigen_and_c/README
106
+ - vendor/eigen/demos/opengl/README
107
+ - vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md
108
+ - vendor/eigen/unsupported/README.txt
109
+ - vendor/tomotopy/LICENSE
110
+ - vendor/tomotopy/README.kr.rst
111
+ - vendor/tomotopy/README.rst
112
+ - vendor/variant/LICENSE
113
+ - vendor/variant/LICENSE_1_0.txt
114
+ - vendor/variant/README.md
115
+ homepage: https://github.com/ankane/tomoto-ruby
116
+ licenses:
117
+ - MIT
118
+ metadata: {}
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '2.7'
128
+ - - "<"
129
+ - !ruby/object:Gem::Version
130
+ version: 3.3.dev
131
+ required_rubygems_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ requirements: []
137
+ rubygems_version: 3.3.26
138
+ signing_key:
139
+ specification_version: 4
140
+ summary: High performance topic modeling for Ruby
141
+ test_files: []