-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41a9958
commit 3cf3e5c
Showing
27 changed files
with
434 additions
and
484 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,2 @@ | ||
[build] | ||
rustflags = ["-C", "target-cpu=native"] |
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,26 +1,27 @@ | ||
[package] | ||
name = "ffsvm" | ||
description="A libSVM compatible support vector machine, but up to 10x faster, for games or VR." | ||
version = "0.10.1" | ||
description = "A libSVM compatible support vector machine, but up to 10x faster, for games or VR." | ||
version = "0.11.0" | ||
repository = "https://github.com/ralfbiedert/ffsvm-rust" | ||
authors = ["Ralf Biedert <[email protected]>"] | ||
readme = "README.md" | ||
categories = ["science", "algorithms"] | ||
keywords = ["svm", "libsvm", "machine-learning"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.83" | ||
exclude = [ | ||
"docs/*", | ||
] | ||
|
||
[lib] | ||
name = "ffsvm" | ||
path = "src/lib.rs" | ||
crate-type = [ "rlib" ] | ||
crate-type = ["rlib"] | ||
|
||
[dependencies] | ||
simd_aligned = "0.4" | ||
#simd_aligned = { path = "../simd_aligned_rust" } | ||
#simd_aligned = "0.5" | ||
simd_aligned = { path = "../simd_aligned" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
|
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
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
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
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
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
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
Oops, something went wrong.