Compare commits

..

3 Commits

Author SHA1 Message Date
github-actions[bot]
36b50dfb4d ci: update version string in docs 2025-07-25 13:57:48 +00:00
dante
1c3ae450e1 fix: ios build 2025-07-25 09:57:23 -04:00
dante
afb4ca9f06 fix: release pipeline (#991) 2025-07-25 09:34:57 -04:00
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import ezkl
project = 'ezkl'
release = '0.0.0'
release = '22.1.8'
version = release

View File

@@ -329,7 +329,7 @@ pub fn resize<T: TensorType + Send + Sync>(
let cartesian_coord: Vec<Vec<usize>> = new_shape
.iter()
.map(|d| (0..*d))
.map(|d| 0..*d)
.multi_cartesian_product()
.collect();
@@ -1218,7 +1218,7 @@ pub fn intercalate_values<T: TensorType>(
let cartesian_coord = output
.dims()
.iter()
.map(|d| (0..*d))
.map(|d| 0..*d)
.multi_cartesian_product()
.collect::<Vec<_>>();
@@ -1263,7 +1263,7 @@ pub fn one_hot(
let cartesian_coord = output
.dims()
.iter()
.map(|d| (0..*d))
.map(|d| 0..*d)
.multi_cartesian_product()
.collect::<Vec<_>>();
@@ -1341,7 +1341,7 @@ pub fn pad<T: TensorType>(
let cartesian_coord = image
.dims()
.iter()
.map(|d| (0..*d))
.map(|d| 0..*d)
.multi_cartesian_product()
.collect::<Vec<_>>();