#include void copy_blocks( torch::Tensor& src, torch::Tensor& dst, const std::map& block_mapping); PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { m.def( "copy_cache_blocks", ©_blocks, "Copy the cache blocks from src to dst"); }