Compare commits

..

3 Commits

Author SHA1 Message Date
dante
b3c5d6f4c3 no cache 2025-07-25 09:33:30 -04:00
dante
123f8d270a Update release.yml 2025-07-25 09:30:53 -04:00
dante
e2ea2e7d80 fix: release pipeline 2025-07-25 09:19:50 -04:00
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import ezkl
project = 'ezkl'
release = '22.1.8'
release = '0.0.0'
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<_>>();