···243243void kes_cmd_memset(KesCommandList command_list, kes_gpuptr_t addr, size_t size, uint32_t value);
244244245245/**
246246+ * Record a memory copy command in the command list.
247247+ * @param command_list The command list to record the command in.
248248+ * @param dst The GPU address to copy memory to.
249249+ * @param src The GPU address to copy memory from.
250250+ * @param size The size of the copy in bytes.
251251+ */
252252+void kes_cmd_memcpy(KesCommandList command_list, kes_gpuptr_t dst, kes_gpuptr_t src, size_t size);
253253+254254+/**
246255 * Record a timestamp write command in the command list. Writes a 64-bit unsigned timestamp in ticks to the provided address.
247256 * @param command_list The command list to record the command in.
248257 * @param addr The GPU address to write the timestamp to.