Files
2026-07-13 12:24:33 +08:00

13 lines
247 B
C

// SPDX-License-Identifier: Apache-2.0
/*
* Adapted from
* https://github.com/vllm-project/vllm/blob/main/csrc/cuda_compat.h
*/
#pragma once
#ifndef USE_ROCM
#define LMCACHE_LDG(arg) __ldg(arg)
#else
#define LMCACHE_LDG(arg) *(arg)
#endif