Backend refactor (#120)

* remove spqlios, split cpu_ref and cpu_avx into different crates

* remove spqlios submodule

* update crate naming & add avx tests
This commit is contained in:
Jean-Philippe Bossuat
2025-11-19 15:34:31 +01:00
committed by GitHub
parent 84598e42fe
commit 9e007c988f
182 changed files with 1053 additions and 4483 deletions

View File

@@ -1,11 +1,12 @@
[workspace]
members = ["poulpy-hal", "poulpy-core", "poulpy-backend", "poulpy-schemes"]
members = ["poulpy-hal", "poulpy-core", "poulpy-cpu-avx", "poulpy-schemes", "poulpy-cpu-ref"]
resolver = "3"
[workspace.dependencies]
poulpy-hal = {path = "poulpy-hal"}
poulpy-core = {path = "poulpy-core"}
poulpy-backend = {path = "poulpy-backend"}
poulpy-cpu-avx = {path = "poulpy-cpu-avx"}
poulpy-cpu-ref = {path = "poulpy-cpu-ref"}
poulpy-schemes = {path = "poulpy-schemes"}
rug = "1.28.0"
rand = "0.9.2"
@@ -17,4 +18,5 @@ criterion = "0.7.0"
byteorder = "1.5.0"
zstd = "0.13.3"
once_cell = "1.21.3"
bytemuck = "1.24.0"
bytemuck = "1.24.0"
paste = "1.0.15"