Giovanni Lenzi Baraldi
9038cfac07
Fixing some accumulate metrics ( #1089 )
...
* Fixing some accumulate metrics
* Fixing some more accumulate metrics
---------
Co-authored-by: Benjamin Welton <bewelton@amd.com >
[ROCm/rocprofiler-sdk commit: fa7fc7ec5d ]
2024-10-03 09:44:31 -07:00
Giovanni Lenzi Baraldi
fa7fc7ec5d
Fixing some accumulate metrics ( #1089 )
...
* Fixing some accumulate metrics
* Fixing some more accumulate metrics
---------
Co-authored-by: Benjamin Welton <bewelton@amd.com >
2024-10-03 09:44:31 -07:00
akolliasAMD
9c4ac4cae5
Regression timing fix ( #1361 )
...
* Removed testbed initialization on standalone tests
* .jenkins renabled all tests
[ROCm/rccl commit: 7fb9189760 ]
2024-10-03 10:41:26 -06:00
akolliasAMD
7fb9189760
Regression timing fix ( #1361 )
...
* Removed testbed initialization on standalone tests
* .jenkins renabled all tests
2024-10-03 10:41:26 -06:00
Giovanni Lenzi Baraldi
dc85966562
SWDEV-467350: Skipping tool counter iteration for unsupported hardware ( #1083 )
...
[ROCm/rocprofiler-sdk commit: 1d6a0b5c80 ]
2024-10-03 09:04:42 -07:00
Giovanni Lenzi Baraldi
1d6a0b5c80
SWDEV-467350: Skipping tool counter iteration for unsupported hardware ( #1083 )
2024-10-03 09:04:42 -07:00
Ben Richard
4da8b0dc46
Skip output lines that have UTF8 decoding error ( #441 )
...
* Avoid crash if non-UTF8 character is encountered in output
Signed-off-by: benrichard-amd <ben.richard@amd.com >
* Ignore lines with non-UTF-8 characters. Do not print error.
Signed-off-by: benrichard-amd <ben.richard@amd.com >
* Remove trailing whitespace
Signed-off-by: benrichard-amd <ben.richard@amd.com >
---------
Signed-off-by: benrichard-amd <ben.richard@amd.com >
[ROCm/rocprofiler-compute commit: fb210abcd0 ]
2024-10-03 11:27:55 -04:00
Ben Richard
fb210abcd0
Skip output lines that have UTF8 decoding error ( #441 )
...
* Avoid crash if non-UTF8 character is encountered in output
Signed-off-by: benrichard-amd <ben.richard@amd.com >
* Ignore lines with non-UTF-8 characters. Do not print error.
Signed-off-by: benrichard-amd <ben.richard@amd.com >
* Remove trailing whitespace
Signed-off-by: benrichard-amd <ben.richard@amd.com >
---------
Signed-off-by: benrichard-amd <ben.richard@amd.com >
2024-10-03 11:27:55 -04:00
pghafari
38ad03660a
SWDEV-467263 - Allow hipMalloc to use sys memory
...
PAL supports allocating from system memory once device memory is used up
or allocation is larger than the device memory.
Change-Id: Iccd3377e95a6cc6d23e45d4738a17af8b9ee32d7
[ROCm/clr commit: b07178618c ]
2024-10-03 11:14:08 -04:00
pghafari
b07178618c
SWDEV-467263 - Allow hipMalloc to use sys memory
...
PAL supports allocating from system memory once device memory is used up
or allocation is larger than the device memory.
Change-Id: Iccd3377e95a6cc6d23e45d4738a17af8b9ee32d7
2024-10-03 11:14:08 -04:00
Bertan Dogancay
974c13cd62
[BUILD] Move code generation to python from CMake ( #1360 )
...
* Use generate.py for func generation
* Convert AddUnroll.cmake to bash
[ROCm/rccl commit: 2dd10c8f17 ]
2024-10-03 10:21:19 -04:00
Bertan Dogancay
2dd10c8f17
[BUILD] Move code generation to python from CMake ( #1360 )
...
* Use generate.py for func generation
* Convert AddUnroll.cmake to bash
2024-10-03 10:21:19 -04:00
AravindanC
cbd270ab58
SWDEV-461080 - Remove Hard Coded Install Permission
...
Change-Id: Idf14ddbd83b304d7a4830467b1f9d14db38dda58
[ROCm/hip-tests commit: 64eed879df ]
2024-10-03 06:47:55 -07:00
AravindanC
64eed879df
SWDEV-461080 - Remove Hard Coded Install Permission
...
Change-Id: Idf14ddbd83b304d7a4830467b1f9d14db38dda58
2024-10-03 06:47:55 -07:00
avinashkethineedi
69784a7423
Add fence and quiet functionality
...
* Perform atomic stores to enforce memory ordering
[ROCm/rocshmem commit: 979aed105a ]
2024-10-03 06:28:12 +00:00
avinashkethineedi
979aed105a
Add fence and quiet functionality
...
* Perform atomic stores to enforce memory ordering
2024-10-03 06:28:12 +00:00
Benjamin Welton
9532bd7032
Update limit for max counter records in rocprof-tool ( #1073 )
...
A fixed sized std::array is used to store counter records in rocprofiler SDK. This limit was breached in SWDEV-484742. Upping the limit to 512 to be less likely to reach this limit again.
[ROCm/rocprofiler-sdk commit: a159fb47c7 ]
2024-10-02 16:56:42 -07:00
Benjamin Welton
a159fb47c7
Update limit for max counter records in rocprof-tool ( #1073 )
...
A fixed sized std::array is used to store counter records in rocprofiler SDK. This limit was breached in SWDEV-484742. Upping the limit to 512 to be less likely to reach this limit again.
2024-10-02 16:56:42 -07:00
Benjamin Welton
ee620bf7dc
[SWDEV-484495] Fix int truncation in CSV output ( #1098 )
...
CSV output truncates doubles to ints when it shouldn't. Derived metrics
are (mostly) doubles and lose precision (or become worthless) if treated
as an int. Converted these to double to match the format we return from
rocprof-sdk.
Co-authored-by: Benjamin Welton <ben@amd.com >
[ROCm/rocprofiler-sdk commit: 4f05850efd ]
2024-10-02 16:55:00 -07:00
Benjamin Welton
4f05850efd
[SWDEV-484495] Fix int truncation in CSV output ( #1098 )
...
CSV output truncates doubles to ints when it shouldn't. Derived metrics
are (mostly) doubles and lose precision (or become worthless) if treated
as an int. Converted these to double to match the format we return from
rocprof-sdk.
Co-authored-by: Benjamin Welton <ben@amd.com >
2024-10-02 16:55:00 -07:00
dependabot[bot]
152738dcc9
Bump rocm-docs-core from 1.7.2 to 1.8.2 in /docs/sphinx ( #1348 )
...
Bumps [rocm-docs-core](https://github.com/ROCm/rocm-docs-core ) from 1.7.2 to 1.8.2.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/v1.8.2/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.7.2...v1.8.2 )
---
updated-dependencies:
- dependency-name: rocm-docs-core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rccl commit: 038517b169 ]
2024-10-02 16:33:26 -06:00
dependabot[bot]
038517b169
Bump rocm-docs-core from 1.7.2 to 1.8.2 in /docs/sphinx ( #1348 )
...
Bumps [rocm-docs-core](https://github.com/ROCm/rocm-docs-core ) from 1.7.2 to 1.8.2.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/v1.8.2/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.7.2...v1.8.2 )
---
updated-dependencies:
- dependency-name: rocm-docs-core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-02 16:33:26 -06:00
Bertan Dogancay
b915c3c154
Merge pull request #1358 from BertanDogancay/nccl-2.21-sync
...
[ROCm/rccl commit: 833b185a2d ]
2024-10-02 18:21:06 -04:00
Bertan Dogancay
833b185a2d
Merge pull request #1358 from BertanDogancay/nccl-2.21-sync
2024-10-02 18:21:06 -04:00
Kiriti Gowda
021e32bc21
Find rocDecode - Support added ( #428 )
...
* Find rocDecode - Support added
* Find rocDecode - Updates
* Find rocDecode - Version fix
* Find rocDecode - Version Var
* Minor cleanup
* Test - Find package updates
* CTest - Upgrades
* CTest - Enhancements
---------
Co-authored-by: Aryan Salmanpour <aryan.salmanpour@amd.com >
[ROCm/rocdecode commit: befc6f6562 ]
2024-10-02 17:35:56 -04:00
Kiriti Gowda
befc6f6562
Find rocDecode - Support added ( #428 )
...
* Find rocDecode - Support added
* Find rocDecode - Updates
* Find rocDecode - Version fix
* Find rocDecode - Version Var
* Minor cleanup
* Test - Find package updates
* CTest - Upgrades
* CTest - Enhancements
---------
Co-authored-by: Aryan Salmanpour <aryan.salmanpour@amd.com >
2024-10-02 17:35:56 -04:00
Maisam Arif
e402fe7f36
Udpated market name
...
Signed-off-by: Maisam Arif <Maisam.Arif@amd.com >
Change-Id: I71948b185b6ac60610fedf2d48dd9c95c26e5777
2024-10-02 14:24:03 -05:00
Maisam Arif
d759e8d704
Udpated market name
...
Signed-off-by: Maisam Arif <Maisam.Arif@amd.com >
Change-Id: I71948b185b6ac60610fedf2d48dd9c95c26e5777
[ROCm/amdsmi commit: e402fe7f36 ]
2024-10-02 14:24:03 -05:00
Nusrat Islam
1f7945286c
Enable MSCCLPP use in CPX mode ( #1355 )
...
This PR enables the use of MSCCLPP in CPX mode for 8 GPUs.
[ROCm/rccl commit: d13f9c44f5 ]
2024-10-02 11:52:04 -05:00
Nusrat Islam
d13f9c44f5
Enable MSCCLPP use in CPX mode ( #1355 )
...
This PR enables the use of MSCCLPP in CPX mode for 8 GPUs.
2024-10-02 11:52:04 -05:00
Ioannis Assiouras
3a07931ad4
SWDEV-483134 - Deprecate hipHostMalloc and hipHostFree APIs
...
Change-Id: I55432d34ea7e9357e6528089cf38addcb5b22ddf
[ROCm/hip commit: d8906fa045 ]
2024-10-02 12:36:23 -04:00
Ioannis Assiouras
d8906fa045
SWDEV-483134 - Deprecate hipHostMalloc and hipHostFree APIs
...
Change-Id: I55432d34ea7e9357e6528089cf38addcb5b22ddf
2024-10-02 12:36:23 -04:00
Julia Jiang
8977f07def
SWDEV-488771 - Adding build dependency on LLVM
...
Change-Id: I63c381a406ee4b0211a4f5a6c9c519eb7313b6c1
[ROCm/hip commit: cda9c38b8f ]
2024-10-02 11:03:41 -04:00
Julia Jiang
cda9c38b8f
SWDEV-488771 - Adding build dependency on LLVM
...
Change-Id: I63c381a406ee4b0211a4f5a6c9c519eb7313b6c1
2024-10-02 11:03:41 -04:00
Aravindan Cheruvally
9e559345d2
Revert "SWDEV-342167, SWDEV-461080 - Remove Hard Coded Install Permission"
...
This reverts commit e495390b7f .
Reason for revert: Observing issue SWDEV-488249 due to catch test permission settings.
Change-Id: Ifdc55e4eb3938c9bc0b9af0a4e9dc9ba366614b3
[ROCm/hip-tests commit: c2671515df ]
2024-10-02 10:33:03 -04:00
Aravindan Cheruvally
c2671515df
Revert "SWDEV-342167, SWDEV-461080 - Remove Hard Coded Install Permission"
...
This reverts commit 38eedf86cf .
Reason for revert: Observing issue SWDEV-488249 due to catch test permission settings.
Change-Id: Ifdc55e4eb3938c9bc0b9af0a4e9dc9ba366614b3
2024-10-02 10:33:03 -04:00
BertanDogancay
9059445acb
Merge remote-tracking branch 'nccl/master' into develop
...
[ROCm/rccl commit: 84081064a0 ]
2024-10-02 09:31:25 -05:00
BertanDogancay
84081064a0
Merge remote-tracking branch 'nccl/master' into develop
2024-10-02 09:31:25 -05:00
Ioannis Assiouras
00cb623a67
SWDEV-488851 - Correctly remove the queue from the active set on windows
...
Change-Id: I4d21743ecf7a44636121f85566f898e62ff61e97
[ROCm/clr commit: 07bcc283f9 ]
2024-10-02 12:06:59 +01:00
Ioannis Assiouras
07bcc283f9
SWDEV-488851 - Correctly remove the queue from the active set on windows
...
Change-Id: I4d21743ecf7a44636121f85566f898e62ff61e97
2024-10-02 12:06:59 +01:00
Wenkai Du
74aa13afbe
Add another Rome model ( #1354 )
...
[ROCm/rccl commit: e453f1ced9 ]
2024-10-01 17:41:27 -05:00
Wenkai Du
e453f1ced9
Add another Rome model ( #1354 )
2024-10-01 17:41:27 -05:00
Ranjith Ramakrishnan
f27ae44b8c
cmake component grouping should not be ignored
...
In static build, the dev and binary components are grouped to generate static package
Removed the line that was ignoring the component grouping
Change-Id: Ie0ca9db109f2002891260985634f2e6b1ea7f236
2024-10-01 14:22:21 -07:00
Ranjith Ramakrishnan
7b21e011d2
cmake component grouping should not be ignored
...
In static build, the dev and binary components are grouped to generate static package
Removed the line that was ignoring the component grouping
Change-Id: Ie0ca9db109f2002891260985634f2e6b1ea7f236
[ROCm/ROCR-Runtime commit: f27ae44b8c ]
2024-10-01 14:22:21 -07:00
Ziyue Yang
cf980e9b9c
Fix size matching in MSCCL ( #1318 )
...
[ROCm/rccl commit: 7830af5844 ]
2024-10-01 13:32:41 -07:00
Ziyue Yang
7830af5844
Fix size matching in MSCCL ( #1318 )
2024-10-01 13:32:41 -07:00
Brandon Potter
8e44e5d458
Merge pull request #31 from BKP/ipc_bringup_fine_unit_09-26-24
...
Add IPC Simple Buffer Fine-grained Unit Tests
[ROCm/rocshmem commit: 787cf0ff3f ]
2024-10-01 15:12:30 -05:00
Brandon Potter
787cf0ff3f
Merge pull request #31 from BKP/ipc_bringup_fine_unit_09-26-24
...
Add IPC Simple Buffer Fine-grained Unit Tests
2024-10-01 15:12:30 -05:00
Avinash Kethineedi
5fd890650e
Merge pull request #33 from avinashkethineedi/CI/CD
...
make MPI_Init and MPI_Finalize independent of the test fixtures
[ROCm/rocshmem commit: 64bc3c350a ]
2024-10-01 15:08:27 -05:00
Avinash Kethineedi
64bc3c350a
Merge pull request #33 from avinashkethineedi/CI/CD
...
make MPI_Init and MPI_Finalize independent of the test fixtures
2024-10-01 15:08:27 -05:00