-
Notifications
You must be signed in to change notification settings - Fork 756
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
support bias in conv2d's parameter list #5322
Conversation
debug发现导致带bias的卷积segment fault的原因是bias初始化的内存位置不对,尝试将值写到一块不能写的内存(已经被im2col写过了)所以segmentfault |
for arg in GenArgList(arg_dict): | ||
compare_with_tensorflow(*arg) | ||
|
||
def test_cpu2(test_case): |
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.
命名是否可以具体一点,比如groups和channels相等就是depthwise,以及这个测试样例感觉可以测一下多卡
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.
这个是从test_conv2d里拷过来的 我改一下
使卷积算子支持bias作为参数