Is there an alternative to the C function calloc() in SYCL?
Or the only alternative to imitate the behaviour is to use malloc_host() / malloc_device() and then memset()? I've tested out this last option and the performance drops dramatically. That's the main reason I would like to know.
Thank you very much.