From 3f83db534dc0f0fa349b9c6c25425179a6c45873 Mon Sep 17 00:00:00 2001 From: Chen Feiyue <69809761+chenfeiyue-cfy@users.noreply.github.com> Date: Tue, 16 May 2023 15:59:16 +0800 Subject: [PATCH] Added missed ops include header (#584) Include cumsum, mod, maxpool3d, grucell, UnidirectionalSequanceGRU header file in ops.h Type: Code Improvement Signed-off-by: Feiyue Chen --- include/tim/vx/ops.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/tim/vx/ops.h b/include/tim/vx/ops.h index 6c33bed..7d73a16 100644 --- a/include/tim/vx/ops.h +++ b/include/tim/vx/ops.h @@ -102,5 +102,10 @@ #include "tim/vx/ops/bidirectional_sequence_lstm.h" #include "tim/vx/ops/hashtable_lookup.h" #include "tim/vx/ops/embedding_lookup.h" +#include "tim/vx/ops/cumsum.h" +#include "tim/vx/ops/mod.h" +#include "tim/vx/ops/max_pool3d.h" +#include "tim/vx/ops/unidirectional_sequence_gru.h" +#include "tim/vx/ops/grucell.h" #endif /* TIM_VX_OPS_H_ */