Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Enable MKL-DNN FullyConnected backward #17318

Merged
merged 27 commits into from
Feb 19, 2020
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0b33c8c
fix mkldnn fc bwd bug due to data inplace
rongzha1 Nov 22, 2019
2d74cc4
enable mkldnn fc bwd
rongzha1 Nov 25, 2019
f4e6557
Merge commit 'refs/pull/16890/head' of https://github.com/apache/incu…
TaoLv Jan 15, 2020
db88a23
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Jan 16, 2020
6a98aa4
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Jan 17, 2020
e17f70d
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Jan 20, 2020
9c7596b
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 5, 2020
d015609
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 9, 2020
a103baa
fix cpp tests
TaoLv Feb 9, 2020
caceb9b
try: fix random seed
TaoLv Feb 9, 2020
7bbbc7f
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 10, 2020
1bf97fa
fix cpp test
TaoLv Feb 10, 2020
b374889
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 11, 2020
2393889
loose rtol for fc cpp test
TaoLv Feb 11, 2020
8a01fef
improve error message
TaoLv Feb 11, 2020
979df7a
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 12, 2020
5525f71
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 13, 2020
2200653
limit the max value of test tensors
TaoLv Feb 13, 2020
faa1db8
fix lint
TaoLv Feb 13, 2020
2a3ebb4
limit max value for mkldnn tensors
TaoLv Feb 13, 2020
34549f2
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 14, 2020
93eb151
remove fixed random seed
TaoLv Feb 14, 2020
38070d9
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 16, 2020
56d873f
address review comments
TaoLv Feb 16, 2020
43905c3
Revert "address review comments"
TaoLv Feb 17, 2020
edef1c7
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 17, 2020
464204f
Merge branch 'master' of https://github.com/apache/incubator-mxnet in…
TaoLv Feb 18, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
improve error message
  • Loading branch information
TaoLv committed Feb 11, 2020
commit 8a01fef95fd8fe482b533043269c5f73f73b91d1
3 changes: 2 additions & 1 deletion tests/cpp/include/test_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,8 @@ static void AssertEqual(const std::vector<NDArray *> &in_arrs,
static_cast<mshadow::default_real_t *>(blob2.dptr_);
for (int i = 0; i < tmp1.shape().Size(); i++) {
float abs_err = fabs((d1[i]) - (d2[i]));
ASSERT_LE(abs_err, (atol + rtol * fabs(d2[i])));
ASSERT_LE(abs_err, (atol + rtol * fabs(d2[i])))
<< "index: " << i << ", " << d1[i] << " vs " << d2[i];
}
}
}
Expand Down