mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-02-21 10:27:49 +08:00
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "tig-runtime"
|
|
version = "0.1.0"
|
|
readme = "README.md"
|
|
license = "https://github.com/tig-foundation/tig-monorepo/tree/main/docs/agreements/end_user_license_agreement.pdf"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.81"
|
|
clap = { version = "4.5.4" }
|
|
cudarc = { git = "https://github.com/tig-foundation/cudarc.git", branch = "runtime-fuel/cudnn-cublas", features = [
|
|
"cuda-version-from-build-system",
|
|
], optional = true }
|
|
libloading = "0.8.6"
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
serde_json = { version = "1.0.113" }
|
|
tig-challenges = { path = "../tig-challenges" }
|
|
tig-structs = { path = "../tig-structs" }
|
|
tig-utils = { path = "../tig-utils" }
|
|
|
|
[features]
|
|
cuda = ["cudarc"]
|
|
c001 = ["tig-challenges/c001"]
|
|
satisfiability = ["c001"]
|
|
c002 = ["tig-challenges/c002"]
|
|
vehicle_routing = ["c002"]
|
|
c003 = ["tig-challenges/c003"]
|
|
knapsack = ["c003"]
|
|
c004 = ["cuda", "tig-challenges/c004"]
|
|
vector_search = ["c004"]
|
|
c005 = ["cuda", "tig-challenges/c005"]
|
|
hypergraph = ["c005"]
|
|
c006 = ["cuda", "tig-challenges/c006"]
|
|
neuralnet_optimizer = ["c006"]
|
|
c007 = ["tig-challenges/c007"]
|
|
job_scheduling = ["c007"]
|