Skip to content

Commit

Permalink
Merge pull request NVIDIA#10 from pooyadavoodi/experimental_v5/fp16
Browse files Browse the repository at this point in the history
Exclude pause instruction from __aarch64__
  • Loading branch information
drnikolaev committed May 7, 2016
2 parents 9f4961c + b9e5141 commit 0badd73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 3rdparty/cub/cub/host/spinlock.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ namespace cub {
*/
__forceinline__ void YieldProcessor()
{
#ifndef __arm__
#if !defined(__arm__) && !defined(__aarch64__)
asm volatile("pause\n": : :"memory");
#endif // __arm__
#endif // __arm__ && __aarch64__
}

#endif // defined(_MSC_VER)
Expand Down

0 comments on commit 0badd73

Please # to comment.