Skip to content

Commit 1068779

Browse files
authored
modeld: properly release OpenCL context in __dealloc__ method (#34353)
release OpenCL context in __dealloc__
1 parent 55cdf5a commit 1068779

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

common/clutil.cc

+4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ cl_context cl_create_context(cl_device_id device_id) {
7979
return CL_CHECK_ERR(clCreateContext(NULL, 1, &device_id, NULL, NULL, &err));
8080
}
8181

82+
void cl_release_context(cl_context context) {
83+
clReleaseContext(context);
84+
}
85+
8286
cl_program cl_program_from_file(cl_context ctx, cl_device_id device_id, const char* path, const char* args) {
8387
return cl_program_from_source(ctx, device_id, util::read_file(path), args);
8488
}

common/clutil.h

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
cl_device_id cl_get_device_id(cl_device_type device_type);
2525
cl_context cl_create_context(cl_device_id device_id);
26+
void cl_release_context(cl_context context);
2627
cl_program cl_program_from_source(cl_context ctx, cl_device_id device_id, const std::string& src, const char* args = nullptr);
2728
cl_program cl_program_from_binary(cl_context ctx, cl_device_id device_id, const uint8_t* binary, size_t length, const char* args = nullptr);
2829
cl_program cl_program_from_file(cl_context ctx, cl_device_id device_id, const char* path, const char* args);

selfdrive/modeld/models/commonmodel.pxd

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ cdef extern from "common/clutil.h":
1010
cdef unsigned long CL_DEVICE_TYPE_DEFAULT
1111
cl_device_id cl_get_device_id(unsigned long)
1212
cl_context cl_create_context(cl_device_id)
13+
void cl_release_context(cl_context)
1314

1415
cdef extern from "selfdrive/modeld/models/commonmodel.h":
1516
cppclass ModelFrame:

selfdrive/modeld/models/commonmodel_pyx.pyx

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ from libc.stdint cimport uintptr_t
88

99
from msgq.visionipc.visionipc cimport cl_mem
1010
from msgq.visionipc.visionipc_pyx cimport VisionBuf, CLContext as BaseCLContext
11-
from .commonmodel cimport CL_DEVICE_TYPE_DEFAULT, cl_get_device_id, cl_create_context
11+
from .commonmodel cimport CL_DEVICE_TYPE_DEFAULT, cl_get_device_id, cl_create_context, cl_release_context
1212
from .commonmodel cimport mat3, ModelFrame as cppModelFrame, DrivingModelFrame as cppDrivingModelFrame, MonitoringModelFrame as cppMonitoringModelFrame
1313

1414

@@ -17,6 +17,10 @@ cdef class CLContext(BaseCLContext):
1717
self.device_id = cl_get_device_id(CL_DEVICE_TYPE_DEFAULT)
1818
self.context = cl_create_context(self.device_id)
1919

20+
def __dealloc__(self):
21+
if self.context:
22+
cl_release_context(self.context)
23+
2024
cdef class CLMem:
2125
@staticmethod
2226
cdef create(void * cmem):

0 commit comments

Comments
 (0)