From 9b945633d7d87700331797b27660ffaf84e2e326 Mon Sep 17 00:00:00 2001 From: Chen Feiyue <69809761+chenfeiyue-cfy@users.noreply.github.com> Date: Wed, 3 Jan 2024 09:47:47 +0800 Subject: [PATCH] Fixed typing error and added missed opheader (#673) Correct file name of moments operation Added groupedconv1d header in ops.h Type: Code Improvement Signed-off-by: Feiyue Chen --- include/tim/vx/ops.h | 1 + src/tim/vx/ops/{mements.cc => moments.cc} | 0 2 files changed, 1 insertion(+) rename src/tim/vx/ops/{mements.cc => moments.cc} (100%) diff --git a/include/tim/vx/ops.h b/include/tim/vx/ops.h index 38a296a..95899fa 100644 --- a/include/tim/vx/ops.h +++ b/include/tim/vx/ops.h @@ -47,6 +47,7 @@ #include "tim/vx/ops/gather_elements.h" #include "tim/vx/ops/gathernd.h" #include "tim/vx/ops/groupedconv2d.h" +#include "tim/vx/ops/groupedconv1d.h" #include "tim/vx/ops/instancenormalization.h" #include "tim/vx/ops/l2normalization.h" #include "tim/vx/ops/layernormalization.h" diff --git a/src/tim/vx/ops/mements.cc b/src/tim/vx/ops/moments.cc similarity index 100% rename from src/tim/vx/ops/mements.cc rename to src/tim/vx/ops/moments.cc