File size: 332 Bytes
ce8679e bd669ef ce8679e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [general]
name = "bitnet-cpu"
version = 1
edition = 5
license = "Apache-2.0"
backends = [
"cpu",
]
[general.hub]
repo-id = "phanerozoic/bitnet-cpu"
[torch]
src = [
"torch-ext/torch_binding.cpp",
"torch-ext/torch_binding.h",
]
[kernel.bitnet_cpu]
backend = "cpu"
depends = ["torch"]
src = ["bitnet_cpu_csrc/bitnet_cpu.cpp"]
|