prefetch.h 217 B

12345678910111213
  1. #pragma once
  2. namespace NYql {
  3. inline void PrefetchForRead(const void* ptr) {
  4. __builtin_prefetch(ptr, 0, 3);
  5. }
  6. inline void PrefetchForWrite(void* ptr) {
  7. __builtin_prefetch(ptr, 1, 3);
  8. }
  9. } // namespace NYql