Skip to content
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

[ARM CPU] Add ACL deconvolution operation #18655

Merged
merged 45 commits into from
Aug 2, 2023
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
b950019
init deconv - draft
allnes Jun 29, 2023
46bb4ae
test commit
allnes Jul 5, 2023
ca7b8b2
save init + exec state
allnes Jul 5, 2023
5b548fc
save init + exec state : same memory
allnes Jul 5, 2023
cd2a4cc
save init + exec state : separate acl and non-acl functions
allnes Jul 5, 2023
d332e8f
save init + exec state : small refactor
allnes Jul 5, 2023
5f3fe57
first working version
allnes Jul 6, 2023
3385e50
simple refactor
allnes Jul 6, 2023
da2303e
Update CMakeLists.txt
allnes Jul 6, 2023
ec9a908
fix merge conflict
allnes Jul 10, 2023
bdb571b
an updated commit message
allnes Jul 19, 2023
9c6f24a
Update quantized_group_convolution_backprop_data.cpp
allnes Jul 19, 2023
9fe32d5
Update convolution_backprop_data.cpp
allnes Jul 19, 2023
878e8a3
update deconvolution - small fixes
allnes Jul 19, 2023
a6f5b3f
Merge branch 'master' into an/exp_deconv_1
allnes Jul 20, 2023
ce2761f
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Jul 21, 2023
5e8a179
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Jul 21, 2023
6ae8c6e
update comments
allnes Jul 21, 2023
ad95ec3
Update deconv_list.hpp
allnes Jul 21, 2023
975839a
Update deconv.cpp
allnes Jul 21, 2023
27b42aa
Update deconv.cpp
allnes Jul 21, 2023
2d27add
update comments - remove try - catch
allnes Jul 21, 2023
0d53838
Merge branch 'master' into an/exp_deconv_1
allnes Jul 24, 2023
5c89878
Update deconv.cpp
allnes Jul 24, 2023
7ef0486
Merge branch 'master' into an/exp_deconv_1
allnes Jul 24, 2023
8f0a411
python fix
allnes Jul 24, 2023
29990d8
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Jul 25, 2023
94ee091
add comments update
allnes Jul 25, 2023
94d67e7
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Jul 25, 2023
5ea9aa3
Update acl_deconv.hpp
allnes Jul 27, 2023
a8fd03d
Merge branch 'master' into an/exp_deconv_1
allnes Jul 27, 2023
ff3e12c
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Jul 28, 2023
d76f768
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Jul 28, 2023
f322131
update strides performance
allnes Jul 28, 2023
104990f
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Aug 1, 2023
49766ba
fix comments - part 1
allnes Aug 1, 2023
060890c
fix comments - part 2
allnes Aug 1, 2023
a7a7645
fix comments - final
allnes Aug 1, 2023
6524185
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Aug 1, 2023
36ec08e
fix comments - ci failed
allnes Aug 1, 2023
1019541
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
allnes Aug 2, 2023
03847d2
add changes after new comments
allnes Aug 2, 2023
efa7c76
add changes after new comments - 2
allnes Aug 2, 2023
261e3f8
fix failed test
allnes Aug 2, 2023
8982c77
fix failed test 2
allnes Aug 2, 2023
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
Update quantized_group_convolution_backprop_data.cpp
  • Loading branch information
allnes authored Jul 19, 2023
commit 9c6f24a7f0cb08c5e2900998514c851764409d5b
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using namespace ngraph::helpers;
namespace {

const std::vector<InferenceEngine::Precision> netPrecisions = {
InferenceEngine::Precision::FP32
InferenceEngine::Precision::FP32
};

const std::vector<size_t> numOutChannels = {16, 32};
Expand Down