cheep-crator-2/vendor/matrixmultiply/Cargo.toml

69 lines
1.8 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "matrixmultiply"
version = "0.3.2"
authors = ["bluss", "R. Janis Goldschmidt"]
exclude = ["docs/*"]
description = "General matrix multiplication for f32 and f64 matrices. Operates on matrices with general layout (they can use arbitrary row and column stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher performance. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize.\n\nSupports multithreading."
documentation = "https://docs.rs/matrixmultiply/"
keywords = ["matrix", "sgemm", "dgemm"]
categories = ["science"]
license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/matrixmultiply/"
[package.metadata.docs.rs]
features = ["cgemm"]
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"
[profile.bench]
debug = true
[profile.release]
debug = true
[lib]
bench = false
[[bench]]
name = "benchmarks"
harness = false
[dependencies.num_cpus]
version = "1.13"
optional = true
[dependencies.once_cell]
version = "1.7"
optional = true
[dependencies.rawpointer]
version = "0.2"
[dependencies.thread-tree]
version = "0.3.2"
optional = true
[dev-dependencies.bencher]
version = "0.1.2"
[dev-dependencies.itertools]
version = "0.8"
[features]
cgemm = []
constconf = []
default = ["std"]
std = []
threading = ["thread-tree", "std", "once_cell", "num_cpus"]