import pycuda.driver as cuda import atexit # Initialize CUDA cuda.init() from pycuda.tools import make_default_context # noqa: E402 global context context = make_default_context() device = context.get_device() def _finish_up(): global context context.pop() context = None from pycuda.tools import clear_context_caches clear_context_caches() atexit.register(_finish_up)