-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CMSIS-NN] Separated symmetric and asymmetric padding tests for Conv2D #9963
Conversation
Change-Id: Ia73223291680005ac8f9313d7f16a6afcbfb0b18
CC: @Mousius @grant-arm for code review. |
@pytest.mark.parametrize("kernel_size", [(3, 3)]) | ||
@pytest.mark.parametrize("padding", ["SAME", "VALID"]) | ||
@pytest.mark.parametrize("strides, dilation", [((1, 1), (1, 1))]) | ||
@pytest.mark.parametrize("relu_type", ["RELU"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make these variables instead of parametrize so it's clear they don't change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made the change. Let's see how the checks go.
…ng values Change-Id: I4ec6dd74a4785d16408da04538cb58a07781d788
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks @ashutosh-arm!
This is a follow up from [CMSIS-NN] Support for asymmetric padding in Convolutions #9886.