Skip to content

Commit

Permalink
Update tensor_bool.cairo
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelDkhn committed Nov 21, 2023
1 parent d4b128b commit f04aff5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/operators/tensor/implementations/tensor_bool.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,18 @@ impl BoolTensor of TensorTrait<bool> {
panic(array!['not supported!'])
}

fn qlinear_mul(
self: @Tensor<i8>,
a_scale: @Tensor<bool>,
a_zero_point: @Tensor<bool>,
b: @Tensor<i8>,
b_scale: @Tensor<bool>,
b_zero_point: @Tensor<bool>,
y_scale: @Tensor<bool>,
y_zero_point: @Tensor<bool>
) -> Tensor::<i8> {
panic(array!['not supported!'])
}

fn round(self: @Tensor<bool>) -> Tensor<bool> {
panic(array!['not supported!'])
Expand Down

0 comments on commit f04aff5

Please sign in to comment.