CUDA 13.0 has replaced the older cuCtxCreate() function with a new version, v4, having the following signature:
context CUresult CUDAAPI cuCtxCreate(
CUcontext *pctx,
CUctxCreateParams *ctxCreateParams,
unsigned int flags,
CUdevice dev);
This can be used with a default-initialized params structure, for the same effect as earlier-CUDA-version cuCtxCreate(); let's do that.