tsecon 0.1.0__tar.gz
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.
- tsecon-0.1.0/Cargo.lock +1396 -0
- tsecon-0.1.0/Cargo.toml +12 -0
- tsecon-0.1.0/LICENSE-APACHE +201 -0
- tsecon-0.1.0/LICENSE-MIT +21 -0
- tsecon-0.1.0/PKG-INFO +143 -0
- tsecon-0.1.0/README.md +98 -0
- tsecon-0.1.0/bindings/python/Cargo.toml +58 -0
- tsecon-0.1.0/bindings/python/LICENSE-APACHE +201 -0
- tsecon-0.1.0/bindings/python/LICENSE-MIT +21 -0
- tsecon-0.1.0/bindings/python/README.md +98 -0
- tsecon-0.1.0/bindings/python/src/lib.rs +6123 -0
- tsecon-0.1.0/bindings/python/tests/test_backtest.py +65 -0
- tsecon-0.1.0/bindings/python/tests/test_check_series.py +644 -0
- tsecon-0.1.0/bindings/python/tests/test_coerce.py +131 -0
- tsecon-0.1.0/bindings/python/tests/test_coint_regime.py +50 -0
- tsecon-0.1.0/bindings/python/tests/test_cv_splits.py +51 -0
- tsecon-0.1.0/bindings/python/tests/test_depth.py +75 -0
- tsecon-0.1.0/bindings/python/tests/test_dynamic_ns.py +91 -0
- tsecon-0.1.0/bindings/python/tests/test_favar.py +113 -0
- tsecon-0.1.0/bindings/python/tests/test_frontier.py +207 -0
- tsecon-0.1.0/bindings/python/tests/test_gmm.py +54 -0
- tsecon-0.1.0/bindings/python/tests/test_gmm_nonlinear.py +82 -0
- tsecon-0.1.0/bindings/python/tests/test_ident_tranche1.py +155 -0
- tsecon-0.1.0/bindings/python/tests/test_ident_tranche2a.py +135 -0
- tsecon-0.1.0/bindings/python/tests/test_ident_tranche2b.py +118 -0
- tsecon-0.1.0/bindings/python/tests/test_intervals.py +168 -0
- tsecon-0.1.0/bindings/python/tests/test_lp_ml.py +96 -0
- tsecon-0.1.0/bindings/python/tests/test_lp_multiplier.py +185 -0
- tsecon-0.1.0/bindings/python/tests/test_lp_state.py +83 -0
- tsecon-0.1.0/bindings/python/tests/test_mean_group_var.py +139 -0
- tsecon-0.1.0/bindings/python/tests/test_midas_mgarch.py +51 -0
- tsecon-0.1.0/bindings/python/tests/test_ml_paths.py +57 -0
- tsecon-0.1.0/bindings/python/tests/test_new_crates.py +140 -0
- tsecon-0.1.0/bindings/python/tests/test_nongaussian_svar.py +108 -0
- tsecon-0.1.0/bindings/python/tests/test_panel_fceval.py +55 -0
- tsecon-0.1.0/bindings/python/tests/test_pmg_news.py +77 -0
- tsecon-0.1.0/bindings/python/tests/test_predreg.py +53 -0
- tsecon-0.1.0/bindings/python/tests/test_realized_extras.py +128 -0
- tsecon-0.1.0/bindings/python/tests/test_replication_ramey_zubairy.py +62 -0
- tsecon-0.1.0/bindings/python/tests/test_replication_yield_curve.py +50 -0
- tsecon-0.1.0/bindings/python/tests/test_results_arima.py +278 -0
- tsecon-0.1.0/bindings/python/tests/test_results_check.py +320 -0
- tsecon-0.1.0/bindings/python/tests/test_results_dsge.py +324 -0
- tsecon-0.1.0/bindings/python/tests/test_results_edge_cases.py +576 -0
- tsecon-0.1.0/bindings/python/tests/test_results_garch.py +293 -0
- tsecon-0.1.0/bindings/python/tests/test_results_generic.py +84 -0
- tsecon-0.1.0/bindings/python/tests/test_results_lp.py +283 -0
- tsecon-0.1.0/bindings/python/tests/test_results_predreg.py +389 -0
- tsecon-0.1.0/bindings/python/tests/test_results_var.py +292 -0
- tsecon-0.1.0/bindings/python/tests/test_roadmap_gaps.py +94 -0
- tsecon-0.1.0/bindings/python/tests/test_smoke.py +373 -0
- tsecon-0.1.0/bindings/python/tests/test_spectest_afns_dsge.py +172 -0
- tsecon-0.1.0/bindings/python/tests/test_spectral.py +31 -0
- tsecon-0.1.0/bindings/python/tests/test_stub_sync.py +71 -0
- tsecon-0.1.0/bindings/python/tests/test_survey_longmemory_bindings.py +179 -0
- tsecon-0.1.0/bindings/python/tests/test_termstructure.py +46 -0
- tsecon-0.1.0/bindings/python/tests/test_var_irf_bands.py +98 -0
- tsecon-0.1.0/bindings/python/tests/test_weighted_midas.py +127 -0
- tsecon-0.1.0/crates/tsecon-arima/Cargo.toml +21 -0
- tsecon-0.1.0/crates/tsecon-arima/src/diff.rs +46 -0
- tsecon-0.1.0/crates/tsecon-arima/src/error.rs +133 -0
- tsecon-0.1.0/crates/tsecon-arima/src/estimate.rs +795 -0
- tsecon-0.1.0/crates/tsecon-arima/src/lib.rs +53 -0
- tsecon-0.1.0/crates/tsecon-arima/src/results.rs +345 -0
- tsecon-0.1.0/crates/tsecon-arima/src/spec.rs +175 -0
- tsecon-0.1.0/crates/tsecon-arima/src/ssm.rs +103 -0
- tsecon-0.1.0/crates/tsecon-arima/tests/common/mod.rs +110 -0
- tsecon-0.1.0/crates/tsecon-arima/tests/golden.rs +178 -0
- tsecon-0.1.0/crates/tsecon-arima/tests/properties.rs +302 -0
- tsecon-0.1.0/crates/tsecon-bayes/Cargo.toml +22 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/convergence.rs +404 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/dense.rs +277 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/error.rs +140 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/ffbs.rs +239 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/hierarchical.rs +442 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/lib.rs +56 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/niw.rs +719 -0
- tsecon-0.1.0/crates/tsecon-bayes/src/ssvs.rs +1077 -0
- tsecon-0.1.0/crates/tsecon-bayes/tests/common/mod.rs +87 -0
- tsecon-0.1.0/crates/tsecon-bayes/tests/golden.rs +133 -0
- tsecon-0.1.0/crates/tsecon-bayes/tests/hierarchical.rs +390 -0
- tsecon-0.1.0/crates/tsecon-bayes/tests/properties.rs +576 -0
- tsecon-0.1.0/crates/tsecon-bayes/tests/ssvs.rs +391 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/src/blocklength.rs +276 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/src/error.rs +101 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/src/lib.rs +51 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/src/replicate.rs +118 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/src/schemes.rs +235 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/src/wild.rs +127 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/tests/properties.rs +323 -0
- tsecon-0.1.0/crates/tsecon-bootstrap/tests/reproducibility.rs +117 -0
- tsecon-0.1.0/crates/tsecon-breaks/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/bai.rs +304 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/cdf.rs +70 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/check.rs +50 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/dp.rs +79 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/error.rs +201 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/lib.rs +97 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/segments.rs +113 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/supf.rs +202 -0
- tsecon-0.1.0/crates/tsecon-breaks/src/tables.rs +458 -0
- tsecon-0.1.0/crates/tsecon-breaks/tests/golden.rs +306 -0
- tsecon-0.1.0/crates/tsecon-breaks/tests/properties.rs +330 -0
- tsecon-0.1.0/crates/tsecon-breaks/tests/validation.rs +249 -0
- tsecon-0.1.0/crates/tsecon-coint/Cargo.toml +22 -0
- tsecon-0.1.0/crates/tsecon-coint/src/critvals.rs +142 -0
- tsecon-0.1.0/crates/tsecon-coint/src/engle_granger.rs +140 -0
- tsecon-0.1.0/crates/tsecon-coint/src/error.rs +139 -0
- tsecon-0.1.0/crates/tsecon-coint/src/johansen.rs +256 -0
- tsecon-0.1.0/crates/tsecon-coint/src/lib.rs +48 -0
- tsecon-0.1.0/crates/tsecon-coint/src/linalg.rs +178 -0
- tsecon-0.1.0/crates/tsecon-coint/src/vecm.rs +298 -0
- tsecon-0.1.0/crates/tsecon-coint/tests/common/mod.rs +82 -0
- tsecon-0.1.0/crates/tsecon-coint/tests/golden.rs +81 -0
- tsecon-0.1.0/crates/tsecon-coint/tests/properties.rs +157 -0
- tsecon-0.1.0/crates/tsecon-connect/Cargo.toml +20 -0
- tsecon-0.1.0/crates/tsecon-connect/src/error.rs +92 -0
- tsecon-0.1.0/crates/tsecon-connect/src/gfevd.rs +148 -0
- tsecon-0.1.0/crates/tsecon-connect/src/lib.rs +62 -0
- tsecon-0.1.0/crates/tsecon-connect/src/rolling.rs +52 -0
- tsecon-0.1.0/crates/tsecon-connect/src/table.rs +218 -0
- tsecon-0.1.0/crates/tsecon-connect/tests/common/mod.rs +84 -0
- tsecon-0.1.0/crates/tsecon-connect/tests/golden.rs +91 -0
- tsecon-0.1.0/crates/tsecon-connect/tests/properties.rs +175 -0
- tsecon-0.1.0/crates/tsecon-diag/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-diag/src/acf.rs +233 -0
- tsecon-0.1.0/crates/tsecon-diag/src/arch.rs +132 -0
- tsecon-0.1.0/crates/tsecon-diag/src/error.rs +137 -0
- tsecon-0.1.0/crates/tsecon-diag/src/lib.rs +69 -0
- tsecon-0.1.0/crates/tsecon-diag/src/mackinnon.rs +165 -0
- tsecon-0.1.0/crates/tsecon-diag/src/mackinnon_ext.rs +634 -0
- tsecon-0.1.0/crates/tsecon-diag/src/normality.rs +130 -0
- tsecon-0.1.0/crates/tsecon-diag/src/ols.rs +328 -0
- tsecon-0.1.0/crates/tsecon-diag/src/phillips.rs +541 -0
- tsecon-0.1.0/crates/tsecon-diag/src/portmanteau.rs +150 -0
- tsecon-0.1.0/crates/tsecon-diag/src/report.rs +59 -0
- tsecon-0.1.0/crates/tsecon-diag/src/unitroot.rs +715 -0
- tsecon-0.1.0/crates/tsecon-diag/src/validate.rs +25 -0
- tsecon-0.1.0/crates/tsecon-diag/tests/golden.rs +197 -0
- tsecon-0.1.0/crates/tsecon-diag/tests/phillips_golden.rs +242 -0
- tsecon-0.1.0/crates/tsecon-diag/tests/phillips_properties.rs +179 -0
- tsecon-0.1.0/crates/tsecon-diag/tests/properties.rs +325 -0
- tsecon-0.1.0/crates/tsecon-diag/tests/unitroot_golden.rs +215 -0
- tsecon-0.1.0/crates/tsecon-diag/tests/unitroot_properties.rs +282 -0
- tsecon-0.1.0/crates/tsecon-dsge/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-dsge/src/error.rs +182 -0
- tsecon-0.1.0/crates/tsecon-dsge/src/lib.rs +131 -0
- tsecon-0.1.0/crates/tsecon-dsge/src/model.rs +206 -0
- tsecon-0.1.0/crates/tsecon-dsge/src/simulate.rs +137 -0
- tsecon-0.1.0/crates/tsecon-dsge/src/solve.rs +385 -0
- tsecon-0.1.0/crates/tsecon-dsge/tests/golden.rs +127 -0
- tsecon-0.1.0/crates/tsecon-dsge/tests/properties.rs +261 -0
- tsecon-0.1.0/crates/tsecon-favar/Cargo.toml +19 -0
- tsecon-0.1.0/crates/tsecon-favar/src/criteria.rs +226 -0
- tsecon-0.1.0/crates/tsecon-favar/src/error.rs +110 -0
- tsecon-0.1.0/crates/tsecon-favar/src/favar.rs +399 -0
- tsecon-0.1.0/crates/tsecon-favar/src/lib.rs +48 -0
- tsecon-0.1.0/crates/tsecon-favar/src/pca.rs +260 -0
- tsecon-0.1.0/crates/tsecon-favar/tests/common/mod.rs +74 -0
- tsecon-0.1.0/crates/tsecon-favar/tests/golden.rs +119 -0
- tsecon-0.1.0/crates/tsecon-favar/tests/properties.rs +245 -0
- tsecon-0.1.0/crates/tsecon-filters/Cargo.toml +14 -0
- tsecon-0.1.0/crates/tsecon-filters/src/bandpass.rs +224 -0
- tsecon-0.1.0/crates/tsecon-filters/src/decomposition.rs +82 -0
- tsecon-0.1.0/crates/tsecon-filters/src/error.rs +89 -0
- tsecon-0.1.0/crates/tsecon-filters/src/hamilton.rs +238 -0
- tsecon-0.1.0/crates/tsecon-filters/src/hp.rs +254 -0
- tsecon-0.1.0/crates/tsecon-filters/src/lib.rs +57 -0
- tsecon-0.1.0/crates/tsecon-filters/tests/golden.rs +113 -0
- tsecon-0.1.0/crates/tsecon-filters/tests/properties.rs +309 -0
- tsecon-0.1.0/crates/tsecon-forecast/Cargo.toml +19 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/accuracy.rs +250 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/backtest.rs +382 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/benchmarks.rs +209 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/comparison.rs +437 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/cw.rs +143 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/dm.rs +193 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/error.rs +412 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/gw.rs +212 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/hac.rs +181 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/lib.rs +73 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/theta.rs +317 -0
- tsecon-0.1.0/crates/tsecon-forecast/src/validate.rs +73 -0
- tsecon-0.1.0/crates/tsecon-forecast/tests/backtest.rs +267 -0
- tsecon-0.1.0/crates/tsecon-forecast/tests/golden.rs +398 -0
- tsecon-0.1.0/crates/tsecon-forecast/tests/predability.rs +158 -0
- tsecon-0.1.0/crates/tsecon-forecast/tests/properties.rs +250 -0
- tsecon-0.1.0/crates/tsecon-forecast/tests/realgdp/mod.rs +30 -0
- tsecon-0.1.0/crates/tsecon-funcshock/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-funcshock/src/error.rs +192 -0
- tsecon-0.1.0/crates/tsecon-funcshock/src/flp.rs +168 -0
- tsecon-0.1.0/crates/tsecon-funcshock/src/fpca.rs +206 -0
- tsecon-0.1.0/crates/tsecon-funcshock/src/fvar.rs +171 -0
- tsecon-0.1.0/crates/tsecon-funcshock/src/lib.rs +116 -0
- tsecon-0.1.0/crates/tsecon-funcshock/src/scenario.rs +152 -0
- tsecon-0.1.0/crates/tsecon-funcshock/tests/golden.rs +229 -0
- tsecon-0.1.0/crates/tsecon-funcshock/tests/properties.rs +317 -0
- tsecon-0.1.0/crates/tsecon-funcshock/tests/validation.rs +278 -0
- tsecon-0.1.0/crates/tsecon-garch/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-garch/src/error.rs +120 -0
- tsecon-0.1.0/crates/tsecon-garch/src/inference.rs +274 -0
- tsecon-0.1.0/crates/tsecon-garch/src/lib.rs +65 -0
- tsecon-0.1.0/crates/tsecon-garch/src/model.rs +443 -0
- tsecon-0.1.0/crates/tsecon-garch/src/objective.rs +955 -0
- tsecon-0.1.0/crates/tsecon-garch/src/recursion.rs +142 -0
- tsecon-0.1.0/crates/tsecon-garch/src/results.rs +209 -0
- tsecon-0.1.0/crates/tsecon-garch/src/spec.rs +332 -0
- tsecon-0.1.0/crates/tsecon-garch/tests/common/mod.rs +117 -0
- tsecon-0.1.0/crates/tsecon-garch/tests/golden.rs +236 -0
- tsecon-0.1.0/crates/tsecon-garch/tests/properties.rs +420 -0
- tsecon-0.1.0/crates/tsecon-gas/Cargo.toml +23 -0
- tsecon-0.1.0/crates/tsecon-gas/src/error.rs +87 -0
- tsecon-0.1.0/crates/tsecon-gas/src/kernel.rs +237 -0
- tsecon-0.1.0/crates/tsecon-gas/src/lib.rs +85 -0
- tsecon-0.1.0/crates/tsecon-gas/src/model.rs +312 -0
- tsecon-0.1.0/crates/tsecon-gas/src/results.rs +79 -0
- tsecon-0.1.0/crates/tsecon-gas/tests/golden.rs +141 -0
- tsecon-0.1.0/crates/tsecon-gas/tests/properties.rs +166 -0
- tsecon-0.1.0/crates/tsecon-gmm/Cargo.toml +26 -0
- tsecon-0.1.0/crates/tsecon-gmm/src/error.rs +163 -0
- tsecon-0.1.0/crates/tsecon-gmm/src/lib.rs +68 -0
- tsecon-0.1.0/crates/tsecon-gmm/src/linear.rs +579 -0
- tsecon-0.1.0/crates/tsecon-gmm/src/matrix.rs +77 -0
- tsecon-0.1.0/crates/tsecon-gmm/src/nonlinear.rs +206 -0
- tsecon-0.1.0/crates/tsecon-gmm/tests/golden.rs +107 -0
- tsecon-0.1.0/crates/tsecon-gmm/tests/properties.rs +291 -0
- tsecon-0.1.0/crates/tsecon-hac/Cargo.toml +14 -0
- tsecon-0.1.0/crates/tsecon-hac/src/error.rs +178 -0
- tsecon-0.1.0/crates/tsecon-hac/src/ewc.rs +85 -0
- tsecon-0.1.0/crates/tsecon-hac/src/kernel.rs +180 -0
- tsecon-0.1.0/crates/tsecon-hac/src/lib.rs +69 -0
- tsecon-0.1.0/crates/tsecon-hac/src/lrv.rs +287 -0
- tsecon-0.1.0/crates/tsecon-hac/src/ols.rs +410 -0
- tsecon-0.1.0/crates/tsecon-hac/src/validate.rs +33 -0
- tsecon-0.1.0/crates/tsecon-hac/tests/golden.rs +153 -0
- tsecon-0.1.0/crates/tsecon-hac/tests/properties.rs +459 -0
- tsecon-0.1.0/crates/tsecon-ident/Cargo.toml +20 -0
- tsecon-0.1.0/crates/tsecon-ident/src/error.rs +129 -0
- tsecon-0.1.0/crates/tsecon-ident/src/fry_pagan.rs +424 -0
- tsecon-0.1.0/crates/tsecon-ident/src/haar.rs +171 -0
- tsecon-0.1.0/crates/tsecon-ident/src/hetero.rs +502 -0
- tsecon-0.1.0/crates/tsecon-ident/src/histdecomp.rs +551 -0
- tsecon-0.1.0/crates/tsecon-ident/src/lib.rs +112 -0
- tsecon-0.1.0/crates/tsecon-ident/src/long_run.rs +347 -0
- tsecon-0.1.0/crates/tsecon-ident/src/max_share.rs +383 -0
- tsecon-0.1.0/crates/tsecon-ident/src/narrative.rs +1248 -0
- tsecon-0.1.0/crates/tsecon-ident/src/nongaussian.rs +553 -0
- tsecon-0.1.0/crates/tsecon-ident/src/proxy.rs +541 -0
- tsecon-0.1.0/crates/tsecon-ident/src/robust_bounds.rs +1179 -0
- tsecon-0.1.0/crates/tsecon-ident/src/sampler.rs +356 -0
- tsecon-0.1.0/crates/tsecon-ident/src/shocks.rs +261 -0
- tsecon-0.1.0/crates/tsecon-ident/src/sign.rs +252 -0
- tsecon-0.1.0/crates/tsecon-ident/src/structural_fevd.rs +281 -0
- tsecon-0.1.0/crates/tsecon-ident/src/summary.rs +569 -0
- tsecon-0.1.0/crates/tsecon-ident/src/zero.rs +593 -0
- tsecon-0.1.0/crates/tsecon-ident/src/zero_sampler.rs +692 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/dgp_validation.rs +265 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/fry_pagan.rs +243 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/haar.rs +165 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/hetero.rs +203 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/historical_decomposition.rs +184 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/long_run.rs +381 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/max_share.rs +417 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/nongaussian.rs +342 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/proxy.rs +242 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/sign.rs +131 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/structural_fevd.rs +250 -0
- tsecon-0.1.0/crates/tsecon-ident/tests/zero_sign.rs +192 -0
- tsecon-0.1.0/crates/tsecon-linalg/Cargo.toml +12 -0
- tsecon-0.1.0/crates/tsecon-linalg/src/companion.rs +215 -0
- tsecon-0.1.0/crates/tsecon-linalg/src/error.rs +129 -0
- tsecon-0.1.0/crates/tsecon-linalg/src/hygiene.rs +177 -0
- tsecon-0.1.0/crates/tsecon-linalg/src/levinson.rs +303 -0
- tsecon-0.1.0/crates/tsecon-linalg/src/lib.rs +48 -0
- tsecon-0.1.0/crates/tsecon-linalg/src/lyapunov.rs +156 -0
- tsecon-0.1.0/crates/tsecon-linalg/tests/common/mod.rs +94 -0
- tsecon-0.1.0/crates/tsecon-linalg/tests/golden.rs +75 -0
- tsecon-0.1.0/crates/tsecon-linalg/tests/properties.rs +496 -0
- tsecon-0.1.0/crates/tsecon-longmemory/Cargo.toml +21 -0
- tsecon-0.1.0/crates/tsecon-longmemory/src/error.rs +131 -0
- tsecon-0.1.0/crates/tsecon-longmemory/src/fracdiff.rs +148 -0
- tsecon-0.1.0/crates/tsecon-longmemory/src/gph.rs +114 -0
- tsecon-0.1.0/crates/tsecon-longmemory/src/lib.rs +74 -0
- tsecon-0.1.0/crates/tsecon-longmemory/src/spectral.rs +80 -0
- tsecon-0.1.0/crates/tsecon-longmemory/src/whittle.rs +130 -0
- tsecon-0.1.0/crates/tsecon-longmemory/tests/golden.rs +139 -0
- tsecon-0.1.0/crates/tsecon-longmemory/tests/properties.rs +84 -0
- tsecon-0.1.0/crates/tsecon-lp/Cargo.toml +23 -0
- tsecon-0.1.0/crates/tsecon-lp/src/design.rs +131 -0
- tsecon-0.1.0/crates/tsecon-lp/src/error.rs +209 -0
- tsecon-0.1.0/crates/tsecon-lp/src/iv.rs +459 -0
- tsecon-0.1.0/crates/tsecon-lp/src/level.rs +137 -0
- tsecon-0.1.0/crates/tsecon-lp/src/lib.rs +161 -0
- tsecon-0.1.0/crates/tsecon-lp/src/smooth.rs +745 -0
- tsecon-0.1.0/crates/tsecon-lp/src/spec.rs +269 -0
- tsecon-0.1.0/crates/tsecon-lp/src/state.rs +215 -0
- tsecon-0.1.0/crates/tsecon-lp/tests/golden.rs +127 -0
- tsecon-0.1.0/crates/tsecon-lp/tests/properties.rs +358 -0
- tsecon-0.1.0/crates/tsecon-lp/tests/smooth_golden.rs +214 -0
- tsecon-0.1.0/crates/tsecon-lp/tests/smooth_properties.rs +227 -0
- tsecon-0.1.0/crates/tsecon-lp/tests/validation.rs +156 -0
- tsecon-0.1.0/crates/tsecon-mgarch/Cargo.toml +19 -0
- tsecon-0.1.0/crates/tsecon-mgarch/src/ccc.rs +292 -0
- tsecon-0.1.0/crates/tsecon-mgarch/src/dcc.rs +414 -0
- tsecon-0.1.0/crates/tsecon-mgarch/src/error.rs +138 -0
- tsecon-0.1.0/crates/tsecon-mgarch/src/lib.rs +114 -0
- tsecon-0.1.0/crates/tsecon-mgarch/src/stage.rs +111 -0
- tsecon-0.1.0/crates/tsecon-mgarch/src/util.rs +96 -0
- tsecon-0.1.0/crates/tsecon-mgarch/tests/mgarch.rs +278 -0
- tsecon-0.1.0/crates/tsecon-midas/Cargo.toml +24 -0
- tsecon-0.1.0/crates/tsecon-midas/src/design.rs +165 -0
- tsecon-0.1.0/crates/tsecon-midas/src/error.rs +184 -0
- tsecon-0.1.0/crates/tsecon-midas/src/lib.rs +95 -0
- tsecon-0.1.0/crates/tsecon-midas/src/umidas.rs +159 -0
- tsecon-0.1.0/crates/tsecon-midas/src/weighted.rs +287 -0
- tsecon-0.1.0/crates/tsecon-midas/src/weights.rs +270 -0
- tsecon-0.1.0/crates/tsecon-midas/tests/golden.rs +119 -0
- tsecon-0.1.0/crates/tsecon-midas/tests/properties.rs +246 -0
- tsecon-0.1.0/crates/tsecon-midas/tests/validation.rs +140 -0
- tsecon-0.1.0/crates/tsecon-ml/Cargo.toml +19 -0
- tsecon-0.1.0/crates/tsecon-ml/src/coordinate_descent.rs +383 -0
- tsecon-0.1.0/crates/tsecon-ml/src/cv.rs +386 -0
- tsecon-0.1.0/crates/tsecon-ml/src/error.rs +90 -0
- tsecon-0.1.0/crates/tsecon-ml/src/lib.rs +73 -0
- tsecon-0.1.0/crates/tsecon-ml/src/path.rs +216 -0
- tsecon-0.1.0/crates/tsecon-ml/src/ridge.rs +136 -0
- tsecon-0.1.0/crates/tsecon-ml/src/standardize.rs +199 -0
- tsecon-0.1.0/crates/tsecon-ml/src/util.rs +57 -0
- tsecon-0.1.0/crates/tsecon-ml/tests/common/mod.rs +90 -0
- tsecon-0.1.0/crates/tsecon-ml/tests/golden.rs +94 -0
- tsecon-0.1.0/crates/tsecon-ml/tests/properties.rs +342 -0
- tsecon-0.1.0/crates/tsecon-nowcast/Cargo.toml +30 -0
- tsecon-0.1.0/crates/tsecon-nowcast/src/error.rs +124 -0
- tsecon-0.1.0/crates/tsecon-nowcast/src/lib.rs +104 -0
- tsecon-0.1.0/crates/tsecon-nowcast/src/mle.rs +323 -0
- tsecon-0.1.0/crates/tsecon-nowcast/src/news.rs +390 -0
- tsecon-0.1.0/crates/tsecon-nowcast/src/statespace.rs +289 -0
- tsecon-0.1.0/crates/tsecon-nowcast/src/twostep.rs +376 -0
- tsecon-0.1.0/crates/tsecon-nowcast/tests/common/mod.rs +77 -0
- tsecon-0.1.0/crates/tsecon-nowcast/tests/golden.rs +219 -0
- tsecon-0.1.0/crates/tsecon-nowcast/tests/mle.rs +249 -0
- tsecon-0.1.0/crates/tsecon-nowcast/tests/news.rs +292 -0
- tsecon-0.1.0/crates/tsecon-optim/Cargo.toml +9 -0
- tsecon-0.1.0/crates/tsecon-optim/src/error.rs +115 -0
- tsecon-0.1.0/crates/tsecon-optim/src/lib.rs +75 -0
- tsecon-0.1.0/crates/tsecon-optim/src/linesearch.rs +433 -0
- tsecon-0.1.0/crates/tsecon-optim/src/minimize.rs +174 -0
- tsecon-0.1.0/crates/tsecon-optim/src/neldermead.rs +301 -0
- tsecon-0.1.0/crates/tsecon-optim/src/objective.rs +217 -0
- tsecon-0.1.0/crates/tsecon-optim/src/quasinewton.rs +481 -0
- tsecon-0.1.0/crates/tsecon-optim/src/result.rs +84 -0
- tsecon-0.1.0/crates/tsecon-optim/src/transform/mod.rs +230 -0
- tsecon-0.1.0/crates/tsecon-optim/src/transform/monahan.rs +137 -0
- tsecon-0.1.0/crates/tsecon-optim/src/transform/simple.rs +244 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/api.rs +102 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/common/mod.rs +187 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/neldermead.rs +145 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/numgrad.rs +84 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/quasinewton.rs +261 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/transforms.rs +344 -0
- tsecon-0.1.0/crates/tsecon-optim/tests/wolfe.rs +174 -0
- tsecon-0.1.0/crates/tsecon-panel/Cargo.toml +25 -0
- tsecon-0.1.0/crates/tsecon-panel/src/data.rs +146 -0
- tsecon-0.1.0/crates/tsecon-panel/src/error.rs +140 -0
- tsecon-0.1.0/crates/tsecon-panel/src/fe.rs +387 -0
- tsecon-0.1.0/crates/tsecon-panel/src/lib.rs +62 -0
- tsecon-0.1.0/crates/tsecon-panel/src/lp.rs +265 -0
- tsecon-0.1.0/crates/tsecon-panel/src/mean_group.rs +227 -0
- tsecon-0.1.0/crates/tsecon-panel/tests/golden.rs +207 -0
- tsecon-0.1.0/crates/tsecon-panel/tests/validation.rs +186 -0
- tsecon-0.1.0/crates/tsecon-panelroot/Cargo.toml +18 -0
- tsecon-0.1.0/crates/tsecon-panelroot/src/error.rs +149 -0
- tsecon-0.1.0/crates/tsecon-panelroot/src/fisher.rs +65 -0
- tsecon-0.1.0/crates/tsecon-panelroot/src/ips.rs +64 -0
- tsecon-0.1.0/crates/tsecon-panelroot/src/lib.rs +261 -0
- tsecon-0.1.0/crates/tsecon-panelroot/src/llc.rs +247 -0
- tsecon-0.1.0/crates/tsecon-panelroot/src/tables.rs +301 -0
- tsecon-0.1.0/crates/tsecon-panelroot/tests/golden.rs +366 -0
- tsecon-0.1.0/crates/tsecon-panelroot/tests/properties.rs +178 -0
- tsecon-0.1.0/crates/tsecon-panelroot/tests/validation.rs +215 -0
- tsecon-0.1.0/crates/tsecon-panelts/Cargo.toml +23 -0
- tsecon-0.1.0/crates/tsecon-panelts/src/cce.rs +124 -0
- tsecon-0.1.0/crates/tsecon-panelts/src/error.rs +176 -0
- tsecon-0.1.0/crates/tsecon-panelts/src/lib.rs +65 -0
- tsecon-0.1.0/crates/tsecon-panelts/src/mg.rs +237 -0
- tsecon-0.1.0/crates/tsecon-panelts/src/pmg.rs +386 -0
- tsecon-0.1.0/crates/tsecon-panelts/tests/golden.rs +130 -0
- tsecon-0.1.0/crates/tsecon-panelts/tests/pmg_golden.rs +131 -0
- tsecon-0.1.0/crates/tsecon-panelts/tests/pmg_properties.rs +176 -0
- tsecon-0.1.0/crates/tsecon-panelts/tests/properties.rs +241 -0
- tsecon-0.1.0/crates/tsecon-predreg/Cargo.toml +23 -0
- tsecon-0.1.0/crates/tsecon-predreg/src/align.rs +56 -0
- tsecon-0.1.0/crates/tsecon-predreg/src/error.rs +119 -0
- tsecon-0.1.0/crates/tsecon-predreg/src/ivx.rs +341 -0
- tsecon-0.1.0/crates/tsecon-predreg/src/lib.rs +70 -0
- tsecon-0.1.0/crates/tsecon-predreg/src/ols.rs +66 -0
- tsecon-0.1.0/crates/tsecon-predreg/src/stambaugh.rs +95 -0
- tsecon-0.1.0/crates/tsecon-predreg/tests/golden.rs +123 -0
- tsecon-0.1.0/crates/tsecon-predreg/tests/properties.rs +240 -0
- tsecon-0.1.0/crates/tsecon-quantile/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-quantile/src/error.rs +194 -0
- tsecon-0.1.0/crates/tsecon-quantile/src/gar.rs +178 -0
- tsecon-0.1.0/crates/tsecon-quantile/src/lib.rs +92 -0
- tsecon-0.1.0/crates/tsecon-quantile/src/lp.rs +105 -0
- tsecon-0.1.0/crates/tsecon-quantile/src/qreg.rs +359 -0
- tsecon-0.1.0/crates/tsecon-quantile/tests/golden.rs +195 -0
- tsecon-0.1.0/crates/tsecon-quantile/tests/properties.rs +257 -0
- tsecon-0.1.0/crates/tsecon-quantile/tests/validation.rs +183 -0
- tsecon-0.1.0/crates/tsecon-realized/Cargo.toml +16 -0
- tsecon-0.1.0/crates/tsecon-realized/src/error.rs +126 -0
- tsecon-0.1.0/crates/tsecon-realized/src/har.rs +214 -0
- tsecon-0.1.0/crates/tsecon-realized/src/jump.rs +56 -0
- tsecon-0.1.0/crates/tsecon-realized/src/lib.rs +55 -0
- tsecon-0.1.0/crates/tsecon-realized/src/measures.rs +300 -0
- tsecon-0.1.0/crates/tsecon-realized/tests/golden.rs +101 -0
- tsecon-0.1.0/crates/tsecon-realized/tests/properties.rs +147 -0
- tsecon-0.1.0/crates/tsecon-realized/tests/validation.rs +344 -0
- tsecon-0.1.0/crates/tsecon-recession/Cargo.toml +18 -0
- tsecon-0.1.0/crates/tsecon-recession/src/design.rs +135 -0
- tsecon-0.1.0/crates/tsecon-recession/src/dynamic.rs +323 -0
- tsecon-0.1.0/crates/tsecon-recession/src/error.rs +154 -0
- tsecon-0.1.0/crates/tsecon-recession/src/lib.rs +86 -0
- tsecon-0.1.0/crates/tsecon-recession/src/link.rs +157 -0
- tsecon-0.1.0/crates/tsecon-recession/src/static_model.rs +183 -0
- tsecon-0.1.0/crates/tsecon-recession/tests/golden.rs +111 -0
- tsecon-0.1.0/crates/tsecon-recession/tests/properties.rs +273 -0
- tsecon-0.1.0/crates/tsecon-regime/Cargo.toml +15 -0
- tsecon-0.1.0/crates/tsecon-regime/src/error.rs +108 -0
- tsecon-0.1.0/crates/tsecon-regime/src/lib.rs +78 -0
- tsecon-0.1.0/crates/tsecon-regime/src/linsolve.rs +71 -0
- tsecon-0.1.0/crates/tsecon-regime/src/model.rs +649 -0
- tsecon-0.1.0/crates/tsecon-regime/src/params.rs +249 -0
- tsecon-0.1.0/crates/tsecon-regime/src/results.rs +84 -0
- tsecon-0.1.0/crates/tsecon-regime/src/spec.rs +90 -0
- tsecon-0.1.0/crates/tsecon-regime/tests/common/mod.rs +68 -0
- tsecon-0.1.0/crates/tsecon-regime/tests/golden.rs +143 -0
- tsecon-0.1.0/crates/tsecon-regime/tests/properties.rs +131 -0
- tsecon-0.1.0/crates/tsecon-rng/Cargo.toml +13 -0
- tsecon-0.1.0/crates/tsecon-rng/src/error.rs +39 -0
- tsecon-0.1.0/crates/tsecon-rng/src/lib.rs +60 -0
- tsecon-0.1.0/crates/tsecon-rng/src/philox.rs +231 -0
- tsecon-0.1.0/crates/tsecon-rng/src/seedseq.rs +321 -0
- tsecon-0.1.0/crates/tsecon-rng/src/stream.rs +189 -0
- tsecon-0.1.0/crates/tsecon-rng/tests/golden.rs +150 -0
- tsecon-0.1.0/crates/tsecon-rng/tests/properties.rs +367 -0
- tsecon-0.1.0/crates/tsecon-spectest/Cargo.toml +18 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/breusch_pagan.rs +75 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/chow.rs +88 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/common.rs +156 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/cusum.rs +184 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/error.rs +177 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/lib.rs +95 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/reset.rs +87 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/results.rs +39 -0
- tsecon-0.1.0/crates/tsecon-spectest/src/white.rs +92 -0
- tsecon-0.1.0/crates/tsecon-spectest/tests/golden.rs +205 -0
- tsecon-0.1.0/crates/tsecon-spectest/tests/properties.rs +204 -0
- tsecon-0.1.0/crates/tsecon-spectest/tests/validation.rs +131 -0
- tsecon-0.1.0/crates/tsecon-spectral/Cargo.toml +17 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/business_cycle.rs +110 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/error.rs +82 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/helpers.rs +100 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/lib.rs +70 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/periodogram.rs +85 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/welch.rs +210 -0
- tsecon-0.1.0/crates/tsecon-spectral/src/window.rs +125 -0
- tsecon-0.1.0/crates/tsecon-spectral/tests/golden.rs +111 -0
- tsecon-0.1.0/crates/tsecon-spectral/tests/properties.rs +243 -0
- tsecon-0.1.0/crates/tsecon-ssm/Cargo.toml +17 -0
- tsecon-0.1.0/crates/tsecon-ssm/src/dense.rs +141 -0
- tsecon-0.1.0/crates/tsecon-ssm/src/error.rs +114 -0
- tsecon-0.1.0/crates/tsecon-ssm/src/filter.rs +499 -0
- tsecon-0.1.0/crates/tsecon-ssm/src/lib.rs +60 -0
- tsecon-0.1.0/crates/tsecon-ssm/src/model.rs +761 -0
- tsecon-0.1.0/crates/tsecon-ssm/src/smoother.rs +234 -0
- tsecon-0.1.0/crates/tsecon-ssm/tests/common/mod.rs +88 -0
- tsecon-0.1.0/crates/tsecon-ssm/tests/crosscheck.rs +318 -0
- tsecon-0.1.0/crates/tsecon-ssm/tests/golden.rs +133 -0
- tsecon-0.1.0/crates/tsecon-stats/Cargo.toml +12 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/chi_squared.rs +141 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/ged.rs +97 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/hansen.rs +178 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/mod.rs +71 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/normal.rs +116 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/standardized.rs +118 -0
- tsecon-0.1.0/crates/tsecon-stats/src/dist/student_t.rs +101 -0
- tsecon-0.1.0/crates/tsecon-stats/src/error.rs +74 -0
- tsecon-0.1.0/crates/tsecon-stats/src/lib.rs +40 -0
- tsecon-0.1.0/crates/tsecon-stats/src/special.rs +979 -0
- tsecon-0.1.0/crates/tsecon-stats/tests/golden.rs +148 -0
- tsecon-0.1.0/crates/tsecon-stats/tests/hansen_skew_t.rs +149 -0
- tsecon-0.1.0/crates/tsecon-stats/tests/inv_gamma_large_a.rs +19 -0
- tsecon-0.1.0/crates/tsecon-stats/tests/properties.rs +338 -0
- tsecon-0.1.0/crates/tsecon-survey/Cargo.toml +17 -0
- tsecon-0.1.0/crates/tsecon-survey/src/cg.rs +188 -0
- tsecon-0.1.0/crates/tsecon-survey/src/common.rs +159 -0
- tsecon-0.1.0/crates/tsecon-survey/src/disagreement.rs +145 -0
- tsecon-0.1.0/crates/tsecon-survey/src/efficiency.rs +134 -0
- tsecon-0.1.0/crates/tsecon-survey/src/error.rs +129 -0
- tsecon-0.1.0/crates/tsecon-survey/src/lib.rs +76 -0
- tsecon-0.1.0/crates/tsecon-survey/tests/golden.rs +249 -0
- tsecon-0.1.0/crates/tsecon-survey/tests/properties.rs +181 -0
- tsecon-0.1.0/crates/tsecon-termstructure/Cargo.toml +22 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/afns.rs +280 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/dynamic.rs +265 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/error.rs +180 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/fit.rs +213 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/lib.rs +112 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/loadings.rs +218 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/optlambda.rs +89 -0
- tsecon-0.1.0/crates/tsecon-termstructure/src/svensson.rs +118 -0
- tsecon-0.1.0/crates/tsecon-termstructure/tests/afns.rs +163 -0
- tsecon-0.1.0/crates/tsecon-termstructure/tests/golden.rs +73 -0
- tsecon-0.1.0/crates/tsecon-termstructure/tests/properties.rs +294 -0
- tsecon-0.1.0/crates/tsecon-termstructure/tests/validation.rs +154 -0
- tsecon-0.1.0/crates/tsecon-var/Cargo.toml +25 -0
- tsecon-0.1.0/crates/tsecon-var/src/causality.rs +165 -0
- tsecon-0.1.0/crates/tsecon-var/src/error.rs +106 -0
- tsecon-0.1.0/crates/tsecon-var/src/estimate.rs +147 -0
- tsecon-0.1.0/crates/tsecon-var/src/fevd.rs +72 -0
- tsecon-0.1.0/crates/tsecon-var/src/forecast.rs +146 -0
- tsecon-0.1.0/crates/tsecon-var/src/irf.rs +144 -0
- tsecon-0.1.0/crates/tsecon-var/src/irf_asymptotic.rs +333 -0
- tsecon-0.1.0/crates/tsecon-var/src/irf_bootstrap.rs +522 -0
- tsecon-0.1.0/crates/tsecon-var/src/lib.rs +67 -0
- tsecon-0.1.0/crates/tsecon-var/src/results.rs +179 -0
- tsecon-0.1.0/crates/tsecon-var/src/select.rs +98 -0
- tsecon-0.1.0/crates/tsecon-var/src/spec.rs +90 -0
- tsecon-0.1.0/crates/tsecon-var/tests/common/mod.rs +84 -0
- tsecon-0.1.0/crates/tsecon-var/tests/golden.rs +167 -0
- tsecon-0.1.0/crates/tsecon-var/tests/irf_bands_golden.rs +99 -0
- tsecon-0.1.0/crates/tsecon-var/tests/irf_bootstrap_props.rs +592 -0
- tsecon-0.1.0/crates/tsecon-var/tests/properties.rs +292 -0
- tsecon-0.1.0/pyproject.toml +66 -0
- tsecon-0.1.0/python/tsecon/__init__.py +63 -0
- tsecon-0.1.0/python/tsecon/__init__.pyi +1354 -0
- tsecon-0.1.0/python/tsecon/_coerce.py +86 -0
- tsecon-0.1.0/python/tsecon/_inspect.py +1327 -0
- tsecon-0.1.0/python/tsecon/py.typed +0 -0
- tsecon-0.1.0/python/tsecon/results/__init__.py +51 -0
- tsecon-0.1.0/python/tsecon/results/_arima.py +303 -0
- tsecon-0.1.0/python/tsecon/results/_base.py +110 -0
- tsecon-0.1.0/python/tsecon/results/_check.py +541 -0
- tsecon-0.1.0/python/tsecon/results/_dsge.py +319 -0
- tsecon-0.1.0/python/tsecon/results/_garch.py +294 -0
- tsecon-0.1.0/python/tsecon/results/_generic.py +172 -0
- tsecon-0.1.0/python/tsecon/results/_lp.py +205 -0
- tsecon-0.1.0/python/tsecon/results/_plotting.py +62 -0
- tsecon-0.1.0/python/tsecon/results/_predreg.py +404 -0
- tsecon-0.1.0/python/tsecon/results/_var.py +480 -0
tsecon-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1396 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "autocfg"
|
|
7
|
+
version = "1.5.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "bitflags"
|
|
13
|
+
version = "2.13.1"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bytemuck"
|
|
19
|
+
version = "1.25.1"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"bytemuck_derive",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bytemuck_derive"
|
|
28
|
+
version = "1.11.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"proc-macro2",
|
|
33
|
+
"quote",
|
|
34
|
+
"syn 2.0.119",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "byteorder"
|
|
39
|
+
version = "1.5.0"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "cfg-if"
|
|
45
|
+
version = "1.0.4"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "crossbeam-deque"
|
|
51
|
+
version = "0.8.7"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"crossbeam-epoch",
|
|
56
|
+
"crossbeam-utils",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "crossbeam-epoch"
|
|
61
|
+
version = "0.9.20"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"crossbeam-utils",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "crossbeam-utils"
|
|
70
|
+
version = "0.8.22"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "crunchy"
|
|
76
|
+
version = "0.2.4"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "defer"
|
|
82
|
+
version = "0.2.1"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "930c7171c8df9fb1782bdf9b918ed9ed2d33d1d22300abb754f9085bc48bf8e8"
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "dyn-stack"
|
|
88
|
+
version = "0.13.2"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"bytemuck",
|
|
93
|
+
"dyn-stack-macros",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "dyn-stack-macros"
|
|
98
|
+
version = "0.1.3"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "either"
|
|
104
|
+
version = "1.16.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "enum-as-inner"
|
|
110
|
+
version = "0.6.1"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"heck",
|
|
115
|
+
"proc-macro2",
|
|
116
|
+
"quote",
|
|
117
|
+
"syn 2.0.119",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "equator"
|
|
122
|
+
version = "0.2.2"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"equator-macro 0.2.1",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "equator"
|
|
131
|
+
version = "0.6.0"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "02da895aab06bbebefb6b2595f6d637b18c9ff629b4cd840965bb3164e4194b0"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"equator-macro 0.6.0",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "equator-macro"
|
|
140
|
+
version = "0.2.1"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"proc-macro2",
|
|
145
|
+
"quote",
|
|
146
|
+
"syn 2.0.119",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "equator-macro"
|
|
151
|
+
version = "0.6.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "2b14b339eb76d07f052cdbad76ca7c1310e56173a138095d3bf42a23c06ef5d8"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "faer"
|
|
157
|
+
version = "0.24.4"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "5ab6df3dd147fe8d702a288b95bcd8fcc499ab572fc80da6828f60cd4d524d67"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"bytemuck",
|
|
162
|
+
"dyn-stack",
|
|
163
|
+
"equator 0.6.0",
|
|
164
|
+
"faer-traits",
|
|
165
|
+
"gemm",
|
|
166
|
+
"generativity",
|
|
167
|
+
"libm",
|
|
168
|
+
"nano-gemm",
|
|
169
|
+
"num-complex",
|
|
170
|
+
"num-traits",
|
|
171
|
+
"private-gemm-x86",
|
|
172
|
+
"pulp",
|
|
173
|
+
"reborrow",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "faer-traits"
|
|
178
|
+
version = "0.24.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "b87d23ed7ab1f26c0cba0e5b9e061a796fbb7dc170fa8bee6970055a1308bb0f"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"bytemuck",
|
|
183
|
+
"dyn-stack",
|
|
184
|
+
"generativity",
|
|
185
|
+
"libm",
|
|
186
|
+
"num-complex",
|
|
187
|
+
"num-traits",
|
|
188
|
+
"pulp",
|
|
189
|
+
"qd",
|
|
190
|
+
"reborrow",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "gemm"
|
|
195
|
+
version = "0.19.0"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"dyn-stack",
|
|
200
|
+
"gemm-c32",
|
|
201
|
+
"gemm-c64",
|
|
202
|
+
"gemm-common",
|
|
203
|
+
"gemm-f16",
|
|
204
|
+
"gemm-f32",
|
|
205
|
+
"gemm-f64",
|
|
206
|
+
"num-complex",
|
|
207
|
+
"num-traits",
|
|
208
|
+
"paste",
|
|
209
|
+
"raw-cpuid",
|
|
210
|
+
"seq-macro",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "gemm-c32"
|
|
215
|
+
version = "0.19.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"dyn-stack",
|
|
220
|
+
"gemm-common",
|
|
221
|
+
"num-complex",
|
|
222
|
+
"num-traits",
|
|
223
|
+
"paste",
|
|
224
|
+
"raw-cpuid",
|
|
225
|
+
"seq-macro",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "gemm-c64"
|
|
230
|
+
version = "0.19.0"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"dyn-stack",
|
|
235
|
+
"gemm-common",
|
|
236
|
+
"num-complex",
|
|
237
|
+
"num-traits",
|
|
238
|
+
"paste",
|
|
239
|
+
"raw-cpuid",
|
|
240
|
+
"seq-macro",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "gemm-common"
|
|
245
|
+
version = "0.19.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"bytemuck",
|
|
250
|
+
"dyn-stack",
|
|
251
|
+
"half",
|
|
252
|
+
"libm",
|
|
253
|
+
"num-complex",
|
|
254
|
+
"num-traits",
|
|
255
|
+
"once_cell",
|
|
256
|
+
"paste",
|
|
257
|
+
"pulp",
|
|
258
|
+
"raw-cpuid",
|
|
259
|
+
"seq-macro",
|
|
260
|
+
"sysctl",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "gemm-f16"
|
|
265
|
+
version = "0.19.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"dyn-stack",
|
|
270
|
+
"gemm-common",
|
|
271
|
+
"gemm-f32",
|
|
272
|
+
"half",
|
|
273
|
+
"num-complex",
|
|
274
|
+
"num-traits",
|
|
275
|
+
"paste",
|
|
276
|
+
"raw-cpuid",
|
|
277
|
+
"seq-macro",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "gemm-f32"
|
|
282
|
+
version = "0.19.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"dyn-stack",
|
|
287
|
+
"gemm-common",
|
|
288
|
+
"num-complex",
|
|
289
|
+
"num-traits",
|
|
290
|
+
"paste",
|
|
291
|
+
"raw-cpuid",
|
|
292
|
+
"seq-macro",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "gemm-f64"
|
|
297
|
+
version = "0.19.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"dyn-stack",
|
|
302
|
+
"gemm-common",
|
|
303
|
+
"num-complex",
|
|
304
|
+
"num-traits",
|
|
305
|
+
"paste",
|
|
306
|
+
"raw-cpuid",
|
|
307
|
+
"seq-macro",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "generativity"
|
|
312
|
+
version = "1.2.1"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "d2c81fb5260e37854d09d5c87183309fd8c555b75289427884b25660bc87a85e"
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "half"
|
|
318
|
+
version = "2.7.1"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"bytemuck",
|
|
323
|
+
"cfg-if",
|
|
324
|
+
"crunchy",
|
|
325
|
+
"num-traits",
|
|
326
|
+
"zerocopy",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "heck"
|
|
331
|
+
version = "0.5.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "hermit-abi"
|
|
337
|
+
version = "0.5.2"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "interpol"
|
|
343
|
+
version = "0.2.1"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "eb58032ba748f4010d15912a1855a8a0b1ba9eaad3395b0c171c09b3b356ae50"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"proc-macro2",
|
|
348
|
+
"quote",
|
|
349
|
+
"syn 1.0.109",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "itoa"
|
|
354
|
+
version = "1.0.18"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "libc"
|
|
360
|
+
version = "0.2.186"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "libm"
|
|
366
|
+
version = "0.2.16"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "matrixmultiply"
|
|
372
|
+
version = "0.3.11"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"autocfg",
|
|
377
|
+
"rawpointer",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "memchr"
|
|
382
|
+
version = "2.8.3"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "nano-gemm"
|
|
388
|
+
version = "0.2.2"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "9e04345dc84b498ff89fe0d38543d1f170da9e43a2c2bcee73a0f9069f72d081"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"equator 0.2.2",
|
|
393
|
+
"nano-gemm-c32",
|
|
394
|
+
"nano-gemm-c64",
|
|
395
|
+
"nano-gemm-codegen",
|
|
396
|
+
"nano-gemm-core",
|
|
397
|
+
"nano-gemm-f32",
|
|
398
|
+
"nano-gemm-f64",
|
|
399
|
+
"num-complex",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "nano-gemm-c32"
|
|
404
|
+
version = "0.2.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "0775b1e2520e64deee8fc78b7732e3091fb7585017c0b0f9f4b451757bbbc562"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"nano-gemm-codegen",
|
|
409
|
+
"nano-gemm-core",
|
|
410
|
+
"num-complex",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "nano-gemm-c64"
|
|
415
|
+
version = "0.2.1"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "9af49a20d58816e6b5ee65f64142e50edb5eba152678d4bb7377fcbf63f8437a"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"nano-gemm-codegen",
|
|
420
|
+
"nano-gemm-core",
|
|
421
|
+
"num-complex",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "nano-gemm-codegen"
|
|
426
|
+
version = "0.2.1"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "6cc8d495c791627779477a2cf5df60049f5b165342610eb0d76bee5ff5c5d74c"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "nano-gemm-core"
|
|
432
|
+
version = "0.2.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "d998dfa644de87a0f8660e5ea511d7cb5c33b5a2d9847b7af57a2565105089f0"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "nano-gemm-f32"
|
|
438
|
+
version = "0.2.1"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "879d962e79bc8952e4ad21ca4845a21132540ed3f5e01184b2ff7f720e666523"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"nano-gemm-codegen",
|
|
443
|
+
"nano-gemm-core",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "nano-gemm-f64"
|
|
448
|
+
version = "0.2.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "b9a513473dce7dc00c7e7c318481ca4494034e76997218d8dad51bd9f007a815"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"nano-gemm-codegen",
|
|
453
|
+
"nano-gemm-core",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "ndarray"
|
|
458
|
+
version = "0.17.2"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"matrixmultiply",
|
|
463
|
+
"num-complex",
|
|
464
|
+
"num-integer",
|
|
465
|
+
"num-traits",
|
|
466
|
+
"portable-atomic",
|
|
467
|
+
"portable-atomic-util",
|
|
468
|
+
"rawpointer",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "num-complex"
|
|
473
|
+
version = "0.4.6"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"bytemuck",
|
|
478
|
+
"num-traits",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "num-integer"
|
|
483
|
+
version = "0.1.46"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"num-traits",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "num-traits"
|
|
492
|
+
version = "0.2.19"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"autocfg",
|
|
497
|
+
"libm",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "num_cpus"
|
|
502
|
+
version = "1.17.0"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"hermit-abi",
|
|
507
|
+
"libc",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "numpy"
|
|
512
|
+
version = "0.29.0"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"libc",
|
|
517
|
+
"ndarray",
|
|
518
|
+
"num-complex",
|
|
519
|
+
"num-integer",
|
|
520
|
+
"num-traits",
|
|
521
|
+
"pyo3",
|
|
522
|
+
"pyo3-build-config",
|
|
523
|
+
"rustc-hash",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "once_cell"
|
|
528
|
+
version = "1.21.4"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "paste"
|
|
534
|
+
version = "1.0.15"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "portable-atomic"
|
|
540
|
+
version = "1.13.1"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "portable-atomic-util"
|
|
546
|
+
version = "0.2.7"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"portable-atomic",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "primal-check"
|
|
555
|
+
version = "0.3.4"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"num-integer",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "private-gemm-x86"
|
|
564
|
+
version = "0.1.20"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "0af8c3e5087969c323f667ccb4b789fa0954f5aa650550e38e81cf9108be21b5"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"defer",
|
|
569
|
+
"interpol",
|
|
570
|
+
"num_cpus",
|
|
571
|
+
"raw-cpuid",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "proc-macro2"
|
|
576
|
+
version = "1.0.106"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"unicode-ident",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "pulp"
|
|
585
|
+
version = "0.22.3"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "046aa45b989642ec2e4717c8e72d677b13edd831a4d3b6cf37d9a3e54912496a"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"bytemuck",
|
|
590
|
+
"cfg-if",
|
|
591
|
+
"libm",
|
|
592
|
+
"num-complex",
|
|
593
|
+
"paste",
|
|
594
|
+
"pulp-wasm-simd-flag",
|
|
595
|
+
"raw-cpuid",
|
|
596
|
+
"reborrow",
|
|
597
|
+
"version_check",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "pulp-wasm-simd-flag"
|
|
602
|
+
version = "0.1.1"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "1d8f70e07b9c3962945a74e59ca1c511bba65b6419468acc217c457d93f3c740"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "pyo3"
|
|
608
|
+
version = "0.29.0"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"libc",
|
|
613
|
+
"once_cell",
|
|
614
|
+
"portable-atomic",
|
|
615
|
+
"pyo3-build-config",
|
|
616
|
+
"pyo3-ffi",
|
|
617
|
+
"pyo3-macros",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "pyo3-build-config"
|
|
622
|
+
version = "0.29.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"target-lexicon",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "pyo3-ffi"
|
|
631
|
+
version = "0.29.0"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"libc",
|
|
636
|
+
"pyo3-build-config",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "pyo3-macros"
|
|
641
|
+
version = "0.29.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"proc-macro2",
|
|
646
|
+
"pyo3-macros-backend",
|
|
647
|
+
"quote",
|
|
648
|
+
"syn 2.0.119",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "pyo3-macros-backend"
|
|
653
|
+
version = "0.29.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"heck",
|
|
658
|
+
"proc-macro2",
|
|
659
|
+
"quote",
|
|
660
|
+
"syn 2.0.119",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "qd"
|
|
665
|
+
version = "0.8.0"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "15f1304a5aecdcfe9ee72fbba90aa37b3aa067a69d14cb7f3d9deada0be7c07c"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"bytemuck",
|
|
670
|
+
"libm",
|
|
671
|
+
"num-traits",
|
|
672
|
+
"pulp",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "quote"
|
|
677
|
+
version = "1.0.46"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"proc-macro2",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "raw-cpuid"
|
|
686
|
+
version = "11.6.0"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"bitflags",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "rawpointer"
|
|
695
|
+
version = "0.2.1"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "rayon"
|
|
701
|
+
version = "1.12.0"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"either",
|
|
706
|
+
"rayon-core",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "rayon-core"
|
|
711
|
+
version = "1.13.0"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"crossbeam-deque",
|
|
716
|
+
"crossbeam-utils",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "reborrow"
|
|
721
|
+
version = "0.5.5"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "rustc-hash"
|
|
727
|
+
version = "2.1.3"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "rustfft"
|
|
733
|
+
version = "6.4.1"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"num-complex",
|
|
738
|
+
"num-integer",
|
|
739
|
+
"num-traits",
|
|
740
|
+
"primal-check",
|
|
741
|
+
"strength_reduce",
|
|
742
|
+
"transpose",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "same-file"
|
|
747
|
+
version = "1.0.6"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"winapi-util",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "seq-macro"
|
|
756
|
+
version = "0.3.6"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "serde"
|
|
762
|
+
version = "1.0.228"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"serde_core",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "serde_core"
|
|
771
|
+
version = "1.0.228"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"serde_derive",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "serde_derive"
|
|
780
|
+
version = "1.0.228"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"proc-macro2",
|
|
785
|
+
"quote",
|
|
786
|
+
"syn 2.0.119",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "serde_json"
|
|
791
|
+
version = "1.0.150"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"itoa",
|
|
796
|
+
"memchr",
|
|
797
|
+
"serde",
|
|
798
|
+
"serde_core",
|
|
799
|
+
"zmij",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "strength_reduce"
|
|
804
|
+
version = "0.2.4"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "syn"
|
|
810
|
+
version = "1.0.109"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"proc-macro2",
|
|
815
|
+
"quote",
|
|
816
|
+
"unicode-ident",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "syn"
|
|
821
|
+
version = "2.0.119"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"proc-macro2",
|
|
826
|
+
"quote",
|
|
827
|
+
"unicode-ident",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "sysctl"
|
|
832
|
+
version = "0.6.0"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"bitflags",
|
|
837
|
+
"byteorder",
|
|
838
|
+
"enum-as-inner",
|
|
839
|
+
"libc",
|
|
840
|
+
"thiserror",
|
|
841
|
+
"walkdir",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "target-lexicon"
|
|
846
|
+
version = "0.13.5"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "thiserror"
|
|
852
|
+
version = "1.0.69"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"thiserror-impl",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "thiserror-impl"
|
|
861
|
+
version = "1.0.69"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"proc-macro2",
|
|
866
|
+
"quote",
|
|
867
|
+
"syn 2.0.119",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "transpose"
|
|
872
|
+
version = "0.2.3"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"num-integer",
|
|
877
|
+
"strength_reduce",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "tsecon-arima"
|
|
882
|
+
version = "0.1.0"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"serde_json",
|
|
885
|
+
"tsecon-linalg",
|
|
886
|
+
"tsecon-optim",
|
|
887
|
+
"tsecon-ssm",
|
|
888
|
+
"tsecon-stats",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "tsecon-bayes"
|
|
893
|
+
version = "0.1.0"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"serde_json",
|
|
896
|
+
"tsecon-linalg",
|
|
897
|
+
"tsecon-optim",
|
|
898
|
+
"tsecon-rng",
|
|
899
|
+
"tsecon-ssm",
|
|
900
|
+
"tsecon-stats",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "tsecon-bootstrap"
|
|
905
|
+
version = "0.1.0"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"rayon",
|
|
908
|
+
"serde_json",
|
|
909
|
+
"tsecon-rng",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "tsecon-breaks"
|
|
914
|
+
version = "0.1.0"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"serde_json",
|
|
917
|
+
"tsecon-hac",
|
|
918
|
+
"tsecon-linalg",
|
|
919
|
+
"tsecon-rng",
|
|
920
|
+
"tsecon-stats",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "tsecon-coint"
|
|
925
|
+
version = "0.1.0"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"serde_json",
|
|
928
|
+
"tsecon-diag",
|
|
929
|
+
"tsecon-linalg",
|
|
930
|
+
"tsecon-stats",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "tsecon-connect"
|
|
935
|
+
version = "0.1.0"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"serde_json",
|
|
938
|
+
"tsecon-linalg",
|
|
939
|
+
"tsecon-var",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "tsecon-diag"
|
|
944
|
+
version = "0.1.0"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"serde_json",
|
|
947
|
+
"tsecon-hac",
|
|
948
|
+
"tsecon-stats",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "tsecon-dsge"
|
|
953
|
+
version = "0.1.0"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"serde_json",
|
|
956
|
+
"tsecon-linalg",
|
|
957
|
+
"tsecon-rng",
|
|
958
|
+
"tsecon-stats",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "tsecon-favar"
|
|
963
|
+
version = "0.1.0"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"serde_json",
|
|
966
|
+
"tsecon-linalg",
|
|
967
|
+
"tsecon-var",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "tsecon-filters"
|
|
972
|
+
version = "0.1.0"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"serde_json",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "tsecon-forecast"
|
|
979
|
+
version = "0.1.0"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"serde_json",
|
|
982
|
+
"tsecon-hac",
|
|
983
|
+
"tsecon-stats",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "tsecon-funcshock"
|
|
988
|
+
version = "0.1.0"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"serde_json",
|
|
991
|
+
"tsecon-hac",
|
|
992
|
+
"tsecon-linalg",
|
|
993
|
+
"tsecon-rng",
|
|
994
|
+
"tsecon-var",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "tsecon-garch"
|
|
999
|
+
version = "0.1.0"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"serde_json",
|
|
1002
|
+
"tsecon-optim",
|
|
1003
|
+
"tsecon-stats",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "tsecon-gas"
|
|
1008
|
+
version = "0.1.0"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"serde_json",
|
|
1011
|
+
"tsecon-linalg",
|
|
1012
|
+
"tsecon-optim",
|
|
1013
|
+
"tsecon-rng",
|
|
1014
|
+
"tsecon-stats",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "tsecon-gmm"
|
|
1019
|
+
version = "0.1.0"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"serde_json",
|
|
1022
|
+
"tsecon-hac",
|
|
1023
|
+
"tsecon-linalg",
|
|
1024
|
+
"tsecon-optim",
|
|
1025
|
+
"tsecon-rng",
|
|
1026
|
+
"tsecon-stats",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "tsecon-hac"
|
|
1031
|
+
version = "0.1.0"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"serde_json",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "tsecon-ident"
|
|
1038
|
+
version = "0.1.0"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"serde_json",
|
|
1041
|
+
"tsecon-bayes",
|
|
1042
|
+
"tsecon-linalg",
|
|
1043
|
+
"tsecon-rng",
|
|
1044
|
+
"tsecon-stats",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "tsecon-linalg"
|
|
1049
|
+
version = "0.1.0"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"faer",
|
|
1052
|
+
"serde_json",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "tsecon-longmemory"
|
|
1057
|
+
version = "0.1.0"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"serde_json",
|
|
1060
|
+
"tsecon-hac",
|
|
1061
|
+
"tsecon-linalg",
|
|
1062
|
+
"tsecon-optim",
|
|
1063
|
+
"tsecon-rng",
|
|
1064
|
+
"tsecon-spectral",
|
|
1065
|
+
"tsecon-stats",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "tsecon-lp"
|
|
1070
|
+
version = "0.1.0"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"serde_json",
|
|
1073
|
+
"tsecon-hac",
|
|
1074
|
+
"tsecon-linalg",
|
|
1075
|
+
"tsecon-rng",
|
|
1076
|
+
"tsecon-stats",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "tsecon-mgarch"
|
|
1081
|
+
version = "0.1.0"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"serde_json",
|
|
1084
|
+
"tsecon-garch",
|
|
1085
|
+
"tsecon-linalg",
|
|
1086
|
+
"tsecon-optim",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "tsecon-midas"
|
|
1091
|
+
version = "0.1.0"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"serde_json",
|
|
1094
|
+
"tsecon-hac",
|
|
1095
|
+
"tsecon-optim",
|
|
1096
|
+
"tsecon-rng",
|
|
1097
|
+
]
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "tsecon-ml"
|
|
1101
|
+
version = "0.1.0"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"serde_json",
|
|
1104
|
+
"tsecon-linalg",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "tsecon-nowcast"
|
|
1109
|
+
version = "0.1.0"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"serde_json",
|
|
1112
|
+
"tsecon-favar",
|
|
1113
|
+
"tsecon-linalg",
|
|
1114
|
+
"tsecon-optim",
|
|
1115
|
+
"tsecon-rng",
|
|
1116
|
+
"tsecon-ssm",
|
|
1117
|
+
"tsecon-stats",
|
|
1118
|
+
"tsecon-var",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "tsecon-optim"
|
|
1123
|
+
version = "0.1.0"
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "tsecon-panel"
|
|
1127
|
+
version = "0.1.0"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"serde_json",
|
|
1130
|
+
"tsecon-hac",
|
|
1131
|
+
"tsecon-linalg",
|
|
1132
|
+
"tsecon-var",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "tsecon-panelroot"
|
|
1137
|
+
version = "0.1.0"
|
|
1138
|
+
dependencies = [
|
|
1139
|
+
"serde_json",
|
|
1140
|
+
"tsecon-diag",
|
|
1141
|
+
"tsecon-hac",
|
|
1142
|
+
"tsecon-rng",
|
|
1143
|
+
"tsecon-stats",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "tsecon-panelts"
|
|
1148
|
+
version = "0.1.0"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"serde_json",
|
|
1151
|
+
"tsecon-hac",
|
|
1152
|
+
"tsecon-linalg",
|
|
1153
|
+
"tsecon-rng",
|
|
1154
|
+
"tsecon-stats",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "tsecon-predreg"
|
|
1159
|
+
version = "0.1.0"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"serde_json",
|
|
1162
|
+
"tsecon-hac",
|
|
1163
|
+
"tsecon-linalg",
|
|
1164
|
+
"tsecon-rng",
|
|
1165
|
+
"tsecon-stats",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "tsecon-python"
|
|
1170
|
+
version = "0.1.0"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"numpy",
|
|
1173
|
+
"pyo3",
|
|
1174
|
+
"tsecon-arima",
|
|
1175
|
+
"tsecon-bayes",
|
|
1176
|
+
"tsecon-bootstrap",
|
|
1177
|
+
"tsecon-breaks",
|
|
1178
|
+
"tsecon-coint",
|
|
1179
|
+
"tsecon-connect",
|
|
1180
|
+
"tsecon-diag",
|
|
1181
|
+
"tsecon-dsge",
|
|
1182
|
+
"tsecon-favar",
|
|
1183
|
+
"tsecon-filters",
|
|
1184
|
+
"tsecon-forecast",
|
|
1185
|
+
"tsecon-funcshock",
|
|
1186
|
+
"tsecon-garch",
|
|
1187
|
+
"tsecon-gas",
|
|
1188
|
+
"tsecon-gmm",
|
|
1189
|
+
"tsecon-hac",
|
|
1190
|
+
"tsecon-ident",
|
|
1191
|
+
"tsecon-longmemory",
|
|
1192
|
+
"tsecon-lp",
|
|
1193
|
+
"tsecon-mgarch",
|
|
1194
|
+
"tsecon-midas",
|
|
1195
|
+
"tsecon-ml",
|
|
1196
|
+
"tsecon-nowcast",
|
|
1197
|
+
"tsecon-panel",
|
|
1198
|
+
"tsecon-panelroot",
|
|
1199
|
+
"tsecon-panelts",
|
|
1200
|
+
"tsecon-predreg",
|
|
1201
|
+
"tsecon-quantile",
|
|
1202
|
+
"tsecon-realized",
|
|
1203
|
+
"tsecon-recession",
|
|
1204
|
+
"tsecon-regime",
|
|
1205
|
+
"tsecon-rng",
|
|
1206
|
+
"tsecon-spectest",
|
|
1207
|
+
"tsecon-spectral",
|
|
1208
|
+
"tsecon-ssm",
|
|
1209
|
+
"tsecon-stats",
|
|
1210
|
+
"tsecon-survey",
|
|
1211
|
+
"tsecon-termstructure",
|
|
1212
|
+
"tsecon-var",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "tsecon-quantile"
|
|
1217
|
+
version = "0.1.0"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"serde_json",
|
|
1220
|
+
"tsecon-hac",
|
|
1221
|
+
"tsecon-linalg",
|
|
1222
|
+
"tsecon-rng",
|
|
1223
|
+
"tsecon-stats",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "tsecon-realized"
|
|
1228
|
+
version = "0.1.0"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"serde_json",
|
|
1231
|
+
"tsecon-hac",
|
|
1232
|
+
"tsecon-stats",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "tsecon-recession"
|
|
1237
|
+
version = "0.1.0"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"serde_json",
|
|
1240
|
+
"tsecon-linalg",
|
|
1241
|
+
"tsecon-optim",
|
|
1242
|
+
"tsecon-rng",
|
|
1243
|
+
"tsecon-stats",
|
|
1244
|
+
]
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "tsecon-regime"
|
|
1248
|
+
version = "0.1.0"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"serde_json",
|
|
1251
|
+
"tsecon-stats",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "tsecon-rng"
|
|
1256
|
+
version = "0.1.0"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"serde_json",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "tsecon-spectest"
|
|
1263
|
+
version = "0.1.0"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"serde_json",
|
|
1266
|
+
"tsecon-hac",
|
|
1267
|
+
"tsecon-linalg",
|
|
1268
|
+
"tsecon-rng",
|
|
1269
|
+
"tsecon-stats",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "tsecon-spectral"
|
|
1274
|
+
version = "0.1.0"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"rustfft",
|
|
1277
|
+
"serde_json",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "tsecon-ssm"
|
|
1282
|
+
version = "0.1.0"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"serde_json",
|
|
1285
|
+
"tsecon-linalg",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "tsecon-stats"
|
|
1290
|
+
version = "0.1.0"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"serde_json",
|
|
1293
|
+
]
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "tsecon-survey"
|
|
1297
|
+
version = "0.1.0"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"serde_json",
|
|
1300
|
+
"tsecon-hac",
|
|
1301
|
+
"tsecon-linalg",
|
|
1302
|
+
"tsecon-rng",
|
|
1303
|
+
"tsecon-stats",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "tsecon-termstructure"
|
|
1308
|
+
version = "0.1.0"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"serde_json",
|
|
1311
|
+
"tsecon-hac",
|
|
1312
|
+
"tsecon-optim",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "tsecon-var"
|
|
1317
|
+
version = "0.1.0"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"serde_json",
|
|
1320
|
+
"tsecon-bootstrap",
|
|
1321
|
+
"tsecon-linalg",
|
|
1322
|
+
"tsecon-rng",
|
|
1323
|
+
"tsecon-stats",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "unicode-ident"
|
|
1328
|
+
version = "1.0.24"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "version_check"
|
|
1334
|
+
version = "0.9.5"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "walkdir"
|
|
1340
|
+
version = "2.5.0"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"same-file",
|
|
1345
|
+
"winapi-util",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "winapi-util"
|
|
1350
|
+
version = "0.1.11"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"windows-sys",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "windows-link"
|
|
1359
|
+
version = "0.2.1"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "windows-sys"
|
|
1365
|
+
version = "0.61.2"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"windows-link",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "zerocopy"
|
|
1374
|
+
version = "0.8.54"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"zerocopy-derive",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "zerocopy-derive"
|
|
1383
|
+
version = "0.8.54"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"proc-macro2",
|
|
1388
|
+
"quote",
|
|
1389
|
+
"syn 2.0.119",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "zmij"
|
|
1394
|
+
version = "1.0.23"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|