From d6c86316c4d72deecc6a718c285a40a052308576 Mon Sep 17 00:00:00 2001 From: raphaelDkhn Date: Sun, 22 Oct 2023 12:27:14 +0300 Subject: [PATCH] Update exp.cairo --- src/operators/tensor/math/exp.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operators/tensor/math/exp.cairo b/src/operators/tensor/math/exp.cairo index 0b3889511..18ee0ccde 100644 --- a/src/operators/tensor/math/exp.cairo +++ b/src/operators/tensor/math/exp.cairo @@ -62,7 +62,7 @@ fn exp_upcast< loop { match self.data.pop_front() { Option::Some(item) => { - (TIntoW::into(*item)).print(); + (TIntoW::into(*item)).exp().print(); result.append((TIntoW::into(*item)).exp()); },