For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /get-started.md).
Mojo function
parallel_memcpy
def parallel_memcpy[dtype: DType](*, dest: Optional[Pointer[Scalar[dtype], origin]], src: Optional[Pointer[Scalar[dtype], origin]], count: Int, count_per_task: Int, num_tasks: Int)
Copies count elements from a memory buffer src to dest in parallel by spawning num_tasks tasks each copying count_per_task elements.
Safety:
dest or src can only be None when count == 0.
Deprecated: 'parallel_memcpy' is deprecated, use 'unsafe_parallel_memcpy' instead
Parameters:
- βdtype (
DType): The element dtype.
Args:
def parallel_memcpy[dtype: DType](*, dest: Optional[Pointer[Scalar[dtype], origin]], src: Optional[Pointer[Scalar[dtype], origin]], count: Int)
Copies count elements from a memory buffer src to dest in parallel.
Safety:
dest or src can only be None when count == 0.
Deprecated: 'parallel_memcpy' is deprecated, use 'unsafe_parallel_memcpy' instead
Parameters:
- βdtype (
DType): The element dtype.
Args:
- βdest (
Optional[Pointer[Scalar[dtype], origin]]): The destination pointer. - βsrc (
Optional[Pointer[Scalar[dtype], origin]]): The source pointer. - βcount (
Int): The number of elements to copy.