Skip to content

Commit 925d75d

Browse files
authored
Annotate Compiler & Issue Number
1 parent 4c78908 commit 925d75d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/auxiliary/UniquePtr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ namespace auxiliary
6565
} // namespace auxiliary
6666

6767
template <typename T>
68-
#ifdef __HIPCC__
68+
#ifdef __HIPCC__ // ROCm 6.2.4 issue, see #1797
6969
__host__
7070
#endif
7171
UniquePtrWithLambda<T>::UniquePtrWithLambda() = default;

src/backend/BaseRecord.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace internal
5656
typename T_BaseRecord_,
5757
typename T_BaseRecordData_,
5858
typename T_BaseIterator>
59-
#ifdef __HIPCC__
59+
#ifdef __HIPCC__ // ROCm 6.2.4 issue, see #1797
6060
__host__
6161
#endif
6262
ScalarIterator<T_BaseRecord_, T_BaseRecordData_, T_BaseIterator>::

src/snapshots/RandomAccessIterator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ template <typename iterator_t>
1010
RandomAccessIterator<iterator_t>::~RandomAccessIterator() = default;
1111

1212
template <typename iterator_t>
13-
#ifdef __HIPCC__
13+
#ifdef __HIPCC__ // ROCm 6.2.4 issue, see #1797
1414
__host__
1515
#endif
1616
RandomAccessIterator<iterator_t>::RandomAccessIterator(
1717
RandomAccessIterator const &other) = default;
1818
template <typename iterator_t>
19-
#ifdef __HIPCC__
19+
#ifdef __HIPCC__ // ROCm 6.2.4 issue, see #1797
2020
__host__
2121
#endif
2222
RandomAccessIterator<iterator_t>::RandomAccessIterator(

0 commit comments

Comments
 (0)