-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[XPU] add conv3d, fix instance_norm, fix conv2d_transpose, test=develop, test=xpu #7642
Conversation
Thanks for your contribution! |
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
@@ -42,6 +42,9 @@ void InstanceNormCompute::Run() { | |||
int c = param.x->dims()[1]; | |||
int height = param.x->dims()[2]; | |||
int width = param.x->dims()[3]; | |||
if (param.x->dims().size() == 5) { |
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.
这部分@chenjiao review下吧
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.
单测是不是加下呢
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.
加下 conv_transpose 的单测
TEST(Conv_transpose, precision) { |
加下 instance_norm 的单测
TEST(InstanceNorm, precision) { |
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.
conv_transpose xpu单测挂了,请关注下~
|
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
add conv3d, fix instance_norm, fix conv2d_transpose, test=develop, test=xpu