With this patch, OpenMP on AMDGCN will use the math functions provided by ROCm ocml library. Linking device code to the ocml will be done in the next patch. Reviewed By: JonChesterfield, jdoerfert, scchan Differential Revision: https://reviews.llvm.org/D104904
6 lines
165 B
Plaintext
6 lines
165 B
Plaintext
#pragma once
|
|
|
|
namespace std {
|
|
template<class T> constexpr const T& min(const T& a, const T& b);
|
|
template<class T> constexpr const T& max(const T& a, const T& b);
|
|
} |