Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dlm

dlm is a library for optimised memory transfers between heterogeneous devices and main memory, that includes GPUs, NICs, etc. It chooses the most efficient way of data copying considering DMA, zero-copy technique (e.g. DMA-BUF) and peer-to-peer. It supports various HPC frameworks and provides distinct memory entity with a common abstract interface.

Supported frameworks

  • virtual memory storage, vms (RAM)
  • OpenCL
  • Infiniband (ibverbs)

Prerequisites

  • gcc
  • OpenCL 1.2+ SDK
  • rdma-core
  • CMake 2.6
  • cmocka

Installation

mkdir build && cd ./build
cmake ../ && make

# run tests
ctest

Example

#include <dlm/providers/vms.h>
#include <dlm/providers/opencl.h>

// initialise
struct dlm_mem_vms *vms = dlm_vms_allocate_memory(size);
struct dlm_mem_cl *cl = dlm_cl_allocate_memory(ctx, size, CL_MEM_READ_WRITE);

check(vms, cl);
sz = vms->mem.size; // equal or greater
fill_array((char *)vms->va, sz);

// request memory_copy
struct dlm_mem *dvms = dlm_to_mem(vms);
struct dlm_mem *dcl = dlm_to_mem(cl);

ret = dlm_mem_copy(dvms, dcl);
check(ret);

// synchronise (standard poll)
// e.g. use <mem>->fd to integrate it in libevent
wait_with_epoll(cl->mem.fd); // or vms->mem.fd to use vms
check(cl->err);

// use the copyied memory
cl_mem opencl_mem = cl->clmem;
run_opencl(opencl_mem);

// deallocate
// dlm uses ref counting via retain/release.
dlm_mem_release(&vms->mem);
dlm_mem_release(&cl->mem);

About

abstraction library for devices memory copy with cross-framework support

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.