Merge pull request #201 from wanqing0421/main

fixed the cuda compilation error
This commit is contained in:
PhasicFlow 2025-04-21 00:17:48 +03:30 committed by GitHub
commit 1a2ad8ffa3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ Q4Func2(max);
template<typename T>
inline pFlow::quadruple<T>
pFlow::pow(const quadruple<T>& q4, T e)
pFlow::pow(const pFlow::quadruple<T>& q4, T e)
{
return quadruple<T>(pow(q4.s_, e), pow(q4.v_, e));
}