-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from dancixx/feat/rework-api-and-performance
feat: rework api and improve performance
- Loading branch information
Showing
102 changed files
with
2,828 additions
and
2,736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Folder-specific settings | ||
// | ||
// For a full list of overridable settings, and general information on folder-specific settings, | ||
// see the documentation: https://zed.dev/docs/configuring-zed#folder-specific-settings | ||
{ | ||
"lsp": { | ||
"rust-analyzer": { | ||
"initialization_options": { | ||
"cargo": { | ||
"features": ["f32"] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,3 @@ | ||
[package] | ||
name = "stochastic-rs" | ||
version = "0.7.1" | ||
edition = "2021" | ||
license = "MIT" | ||
description = "A Rust library for stochastic processes" | ||
homepage = "https://github.com/dancixx/stochastic-rs" | ||
documentation = "https://docs.rs/stochastic-rs/latest/stochastic_rs/" | ||
repository = "https://github.com/dancixx/stochastic-rs" | ||
readme = "README.md" | ||
keywords = ["stochastic", "process", "random", "simulation", "monte-carlo"] | ||
|
||
[dependencies] | ||
linreg = "0.2.0" | ||
ndarray = { version = "0.16.1", features = [ | ||
"rayon", | ||
"matrixmultiply-threading", | ||
] } | ||
num-complex = { version = "0.4.6", features = ["rand"] } | ||
rand = "0.8.5" | ||
rand_distr = "0.4.3" | ||
rayon = "1.10.0" | ||
plotly = "0.9.0" | ||
ndarray-rand = "0.15.0" | ||
ndrustfft = "0.5.0" | ||
derive_builder = "0.20.1" | ||
tikv-jemallocator = { version = "0.6.0", optional = true } | ||
mimalloc = { version = "0.1.43", optional = true } | ||
|
||
[dev-dependencies] | ||
|
||
[features] | ||
mimalloc = ["dep:mimalloc"] | ||
jemalloc = ["dep:tikv-jemallocator"] | ||
default = ["jemalloc"] | ||
|
||
[lib] | ||
name = "stochastic_rs" | ||
crate-type = ["cdylib", "lib"] | ||
path = "src/lib.rs" | ||
doctest = false | ||
|
||
[profile.release] | ||
debug = false | ||
codegen-units = 1 | ||
lto = true | ||
[workspace] | ||
members = ["stochastic-rs-core", "stochastic-rs-quant", "stochastic-rs-stats"] | ||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
tab_spaces = 2 | ||
tab_spaces = 2 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.