From cf27d66d1bd98c681318dc77c1f4ee6a17cc8e71 Mon Sep 17 00:00:00 2001 From: Sanggyu Lee Date: Thu, 18 Jul 2024 12:02:26 +0900 Subject: [PATCH] [onert] Fix a typo in train kernel generator (#13469) It fixes a typo in train kernel generator. ONE-DCO-1.0-Signed-off-by: Sanggyu Lee --- runtime/onert/backend/train/KernelGenerator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/onert/backend/train/KernelGenerator.cc b/runtime/onert/backend/train/KernelGenerator.cc index 572d3f9601e..f6171c04908 100644 --- a/runtime/onert/backend/train/KernelGenerator.cc +++ b/runtime/onert/backend/train/KernelGenerator.cc @@ -476,7 +476,7 @@ void KernelGenerator::visit(const ir::train::operation::Pool2D &node) throw std::runtime_error(node.name() + " only supports 4D tensor as input"); } - // calcualate padding + // calculate padding const auto stride = node.param().stride; const auto kh = node.param().kh; const auto kw = node.param().kw;