USM allocation template - jimmytwei/oneAPI-samples GitHub Wiki

USM allocation template

Prefer using the template for malloc_shared, malloc_device​

  • Verbose SYCL style:​
float *p = (float*)malloc_shared(N*sizeof(float),q);​
  • Simplified DPC++ style:​
float *p = malloc_shared<float>(N,q);
⚠️ **GitHub.com Fallback** ⚠️