Cargo.toml 1.16 KB
Newer Older
yongshk's avatar
yongshk committed
1
2
3
4
5
6
7
8
9
[package]
name = "candle-cublaslt"
version = "0.2.2"
edition = "2021"

description = "CUBLASLt gemm for the candle ML framework."

[dependencies]
#candle = { version = "*", package = "candle-core", features = ["cuda"]}
yongshk's avatar
yongshk committed
10
11
candle = { git = "http://developer.sourcefind.cn/codes/yongshk/candle", branch = "update_flash_nodebug_cutlass",  package = "candle-core", features = ["cuda"]}
cudarc = { git = "http://developer.sourcefind.cn/codes/yongshk/cudarc", branch = "specific-main-nodebug", default-features = false, features = [ "cublaslt", "f16" ]}
yongshk's avatar
yongshk committed
12
13
14
15
#cudarc = { git = "https://github.com/coreylowman/cudarc", rev = "c388e724af93a3e8fbe484f5ded2d8b3c1badd8e", default-features = false, features = [ "cublaslt", "f16" ]}
half = { version = "2.3.1", features = ["num-traits"] }

[patch.crates-io]
yongshk's avatar
yongshk committed
16
#cudarc = { git = "http://developer.sourcefind.cn/codes/yongshk/cudarc", branch = "specific-main-nodebug", default-features = false, features = [ "cublaslt", "f16" ]}
yongshk's avatar
yongshk committed
17
18
19
20
21
cudarc = { git = "https://github.com/coreylowman/cudarc", rev = "c388e724af93a3e8fbe484f5ded2d8b3c1badd8e", default-features = false, features = [ "cublaslt", "f16" ]}

[features]
default = []
static-linking = ["cudarc/static-linking"]