From 81cc0c31b4df876f14bc698f1bb014ea7ce6aa32 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Mon, 6 Oct 2025 09:41:14 +0200 Subject: [PATCH] chore: constrain bytemuck < 1.24.0 as we don't have avx512 updated code --- Cargo.toml | 2 +- backends/tfhe-hpu-backend/Cargo.toml | 2 +- mockups/tfhe-hpu-mockup/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 286b1a601..953f7b31a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ exclude = [ ] [workspace.dependencies] aligned-vec = { version = "0.6", default-features = false } -bytemuck = "1.14.3" +bytemuck = "<1.24" dyn-stack = { version = "0.11", default-features = false } itertools = "0.14" num-complex = "0.4" diff --git a/backends/tfhe-hpu-backend/Cargo.toml b/backends/tfhe-hpu-backend/Cargo.toml index 947bc4f36..ea6022bd7 100644 --- a/backends/tfhe-hpu-backend/Cargo.toml +++ b/backends/tfhe-hpu-backend/Cargo.toml @@ -33,7 +33,7 @@ serde = { version = "1", features = ["derive"] } toml = { version = "0.8", features = [] } paste = "1.0.15" thiserror = "1.0.61" -bytemuck = "1.16.0" +bytemuck = { workspace = true } anyhow = "1.0.82" lazy_static = "1.4.0" rand = "0.8.5" diff --git a/mockups/tfhe-hpu-mockup/Cargo.toml b/mockups/tfhe-hpu-mockup/Cargo.toml index db4511a43..312e6486a 100644 --- a/mockups/tfhe-hpu-mockup/Cargo.toml +++ b/mockups/tfhe-hpu-mockup/Cargo.toml @@ -18,7 +18,7 @@ ipc-channel = "0.18.3" strum = { version = "0.26.2", features = ["derive"] } strum_macros = "0.26.2" -bytemuck = "1.16.0" +bytemuck = { workspace = true } clap = { version = "4.4.4", features = ["derive"] } clap-num = "*"