@@ -186,14 +186,14 @@ cdef class SyclKernel:
186186
187187cdef api DPCTLSyclKernelRef SyclKernel_GetKernelRef(SyclKernel ker):
188188 """ C-API function to access opaque kernel reference from
189- Python object of type :class:`dpctl.program .SyclKernel`.
189+ Python object of type :class:`dpctl.compiler .SyclKernel`.
190190 """
191191 return ker.get_kernel_ref()
192192
193193
194194cdef api SyclKernel SyclKernel_Make(DPCTLSyclKernelRef KRef, const char * name):
195195 """
196- C-API function to create :class:`dpctl.program .SyclKernel`
196+ C-API function to create :class:`dpctl.compiler .SyclKernel`
197197 instance from opaque sycl kernel reference.
198198 """
199199 cdef DPCTLSyclKernelRef copied_KRef = DPCTLKernel_Copy(KRef)
@@ -252,14 +252,14 @@ cdef api DPCTLSyclKernelBundleRef SyclKernelBundle_GetKernelBundleRef(
252252 SyclKernelBundle kb
253253):
254254 """ C-API function to access opaque kernel bundle reference from
255- Python object of type :class:`dpctl.program .SyclKernelBundle`.
255+ Python object of type :class:`dpctl.compiler .SyclKernelBundle`.
256256 """
257257 return kb.get_kernel_bundle_ref()
258258
259259
260260cdef api SyclKernelBundle SyclKernelBundle_Make(DPCTLSyclKernelBundleRef KBRef):
261261 """
262- C-API function to create :class:`dpctl.program .SyclKernelBundle`
262+ C-API function to create :class:`dpctl.compiler .SyclKernelBundle`
263263 instance from opaque ``sycl::kernel_bundle<sycl::bundle_state::executable>``
264264 reference.
265265 """
@@ -272,7 +272,7 @@ cdef class SpecializationConstant:
272272 SpecializationConstant(spec_id, *args)
273273
274274 Python class representing SYCL specialization constants that can be used
275- when creating a :class:`dpctl.program .SyclKernelBundle` from SPIR-V.
275+ when creating a :class:`dpctl.compiler .SyclKernelBundle` from SPIR-V.
276276
277277 There are multiple ways to create a :class:`.SpecializationConstant`:
278278
0 commit comments