From 79a4199be5b87eb6220b6688b02f5f6cbebb6131 Mon Sep 17 00:00:00 2001 From: Kevin Cheng Date: Tue, 31 Aug 2021 16:04:40 -0700 Subject: Adding Conv attribute to Conv3d. - Rename attribute: Pool2d, Conv2d, TransposeConv2d -> Pool, Conv, TransposeConv Signed-off-by: Kevin Cheng Change-Id: If47dfd1ffc57843018d81d674e4386212fd8d4b4 --- include/attribute.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/attribute.def') diff --git a/include/attribute.def b/include/attribute.def index 12b9c96..d77a687 100644 --- a/include/attribute.def +++ b/include/attribute.def @@ -26,17 +26,17 @@ ...: variadic variables for more arguments, depending on NUM_ARGS_IN_ATTRIBUTES */ -DEF_ATTRIBUTE(Pool2d, 3, +DEF_ATTRIBUTE(Pool, 3, int32_t, V, padding, int32_t, V, kernel, int32_t, V, stride) -DEF_ATTRIBUTE(Conv2d, 3, +DEF_ATTRIBUTE(Conv, 3, int32_t, V, padding, int32_t, V, stride, int32_t, V, dilation) -DEF_ATTRIBUTE(TransposeConv2d, 4, +DEF_ATTRIBUTE(TransposeConv, 4, int32_t, V, outpad, int32_t, V, stride, int32_t, V, dilation, -- cgit v1.2.1