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

Impl adaptive avgpool #3301

Open
wants to merge 53 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
d197108
init
hieule88 Aug 5, 2024
3c90908
skeleton code
hieule88 Aug 5, 2024
86a5073
add solver, kernel
hieule88 Aug 6, 2024
ca4ad97
add gtest
hieule88 Aug 7, 2024
0492fc7
add driver test
hieule88 Aug 12, 2024
881e796
change kinfor to ksize
hieule88 Aug 16, 2024
3612897
change params
hieule88 Aug 19, 2024
930d47e
fix gtest
hieule88 Aug 20, 2024
5a35738
passed gtest
hieule88 Aug 21, 2024
27470a2
skeleton code
hieule88 Sep 30, 2024
2e131c7
small fix
hieule88 Oct 3, 2024
0e773fa
Merge remote-tracking branch 'origin/develop-moreh' into impl_adaptiv…
hieule88 Oct 3, 2024
7d3a0a6
add isOverRocm3d
hieule88 Oct 3, 2024
dfbb6c7
add const Tgpu
hieule88 Oct 3, 2024
88179b0
add resolve comment Rocm PR
hieule88 Oct 4, 2024
d2b2d1f
add issametype
hieule88 Oct 4, 2024
0dc61de
rm ENV gtest
hieule88 Oct 4, 2024
194ab40
rm magic number in driver test
hieule88 Oct 4, 2024
36b0662
change to AddTensorFlag
hieule88 Oct 4, 2024
99ff4bb
small fix
hieule88 Oct 4, 2024
42b54a7
fix driver as comments
hieule88 Oct 7, 2024
22ae98a
for to parford
hieule88 Oct 7, 2024
6ef45f6
resolved comments
hieule88 Oct 7, 2024
796adb1
rm large number of cast in kernel
hieule88 Oct 7, 2024
93985d4
resolved comments
hieule88 Oct 7, 2024
7795a19
add T
hieule88 Oct 7, 2024
cde0f8b
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 7, 2024
eabac2a
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 7, 2024
58bcf1e
reorder
hieule88 Oct 7, 2024
f5ae9f2
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 8, 2024
335f1d5
small fix
hieule88 Oct 8, 2024
021c790
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 9, 2024
a9660b0
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 15, 2024
702443b
rerun CI
hieule88 Oct 16, 2024
4988f01
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 16, 2024
bd72a3e
rerun CI
hieule88 Oct 17, 2024
db0f439
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
hieule88 Oct 23, 2024
45810bf
Merge branch 'develop' into impl_adaptive_avgpool
long10024070 Nov 1, 2024
84d45fc
Merge remote-tracking branch 'MIOpen/develop' into impl_adaptive_avgpool
hieule88 Nov 4, 2024
a47cada
Merge remote-tracking branch 'MIOpen/develop' into impl_adaptive_avgpool
hieule88 Nov 5, 2024
f58fb6a
rerun CI
hieule88 Nov 5, 2024
983e629
Merge branch 'develop' of https://github.com/ROCm/MIOpen into impl_ad…
Nov 6, 2024
16c5eb2
rerun CI
Nov 6, 2024
e33ebca
Merge branch 'develop' into impl_adaptive_avgpool
hieule88 Nov 15, 2024
297e759
fix CICD
hieule88 Nov 22, 2024
5e84623
Merge remote-tracking branch 'MIOpen/develop' into impl_adaptive_avgpool
hieule88 Nov 22, 2024
322047c
rerun CICD
Nov 25, 2024
f7aac50
Merge branch 'develop' into impl_adaptive_avgpool
long10024070 Dec 3, 2024
75f67f5
Merge remote-tracking branch 'upstream/develop' into impl_adaptive_av…
Dec 5, 2024
be5c06e
small fix CICD
Jan 16, 2025
567331f
Merge branch 'develop' of https://github.com/ROCm/MIOpen into impl_ad…
Jan 16, 2025
cdc423f
Merge branch 'develop' into impl_adaptive_avgpool
long10024070 Jan 24, 2025
d835c1e
Merge branch 'develop' into impl_adaptive_avgpool
long10024070 Feb 3, 2025
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,8 @@ build*/

# Python cache
__pycache__/

install_dir/
.cache/
.devcontainer/
.gitignore
1 change: 1 addition & 0 deletions docs/reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ The MIOpen API library is structured as follows:
* :doc:`ReLU <../doxygen/html/group___re_l_u>` (experimental)
* :doc:`Kthvalue <../doxygen/html/group__kthvalue>` (experimental)
* :doc:`GLU <../doxygen/html/group__glu>` (experimental)
* :doc:`AdaptiveAvgPool <../doxygen/html/group__adaptiveavgpool>` (experimental)
1 change: 1 addition & 0 deletions driver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ add_executable(MIOpenDriver
conv_common.cpp
dm_activ.cpp
dm_adam.cpp
dm_adaptiveavgpool.cpp
dm_addlayernorm.cpp
dm_bnorm.cpp
dm_cat.cpp
Expand Down
Loading
Loading