dnn/native: fix typo for definition of DOT_INTERMEDIATE

Signed-off-by: Wu Zhiwen <zhiwen.wu@intel.com>
Reviewed-by: Guo Yejun <yejun.guo@intel.com>
This commit is contained in:
Wu Zhiwen 2020-06-01 09:00:45 +08:00 committed by Guo, Yejun
parent 801c8a961a
commit b6d7c4c1d4
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ typedef enum {
DLT_COUNT
} DNNLayerType;
typedef enum {DOT_INPUT = 1, DOT_OUTPUT = 2, DOT_INTERMEDIATE = DOT_INPUT | DOT_INPUT} DNNOperandType;
typedef enum {DOT_INPUT = 1, DOT_OUTPUT = 2, DOT_INTERMEDIATE = DOT_INPUT | DOT_OUTPUT} DNNOperandType;
typedef struct Layer{
DNNLayerType type;