Skip to content
This repository has been archived by the owner on Mar 3, 2025. It is now read-only.

Add Bool Tensor Type #412

Closed
wants to merge 17 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix imports
raphaelDkhn committed Oct 31, 2023
commit 1bd61ec9225e2a3f917e1248b728c20dcdd2e938
4 changes: 4 additions & 0 deletions src/operators/tensor.cairo
Original file line number Diff line number Diff line change
@@ -30,3 +30,7 @@ use orion::operators::tensor::implementations::tensor_u32::{
U32Tensor, U32TensorAdd, U32TensorSub, U32TensorMul, U32TensorDiv, U32TensorPartialEq
};

use orion::operators::tensor::implementations::tensor_bool::{
BoolTensor, BoolTensorPartialEq
};

1 change: 1 addition & 0 deletions src/operators/tensor/implementations.cairo
Original file line number Diff line number Diff line change
@@ -7,3 +7,4 @@ mod tensor_fp64x64;
mod tensor_fp32x32;
mod tensor_fp16x16wide;
mod tensor_fp8x23wide;
mod tensor_bool;