Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Enable GPU scenario usage to pytests #175

Closed
Devjiu opened this issue Jan 30, 2023 · 2 comments
Closed

Enable GPU scenario usage to pytests #175

Devjiu opened this issue Jan 30, 2023 · 2 comments

Comments

@Devjiu
Copy link
Contributor

Devjiu commented Jan 30, 2023

To enable usage of GPU check python/pyhdk/_sql.pyx and replace CPU to GPU.

--- a/python/pyhdk/_sql.pyx
+++ b/python/pyhdk/_sql.pyx
@@ -92,7 +92,7 @@ cdef class RelAlgExecutor:

   def execute(self, **kwargs):
     cdef const CConfig *config = self.c_rel_alg_executor.get().getExecutor().getConfigPtr().get()
-    cdef CCompilationOptions c_co = CCompilationOptions.defaults(CExecutorDeviceType.CPU)
+    cdef CCompilationOptions c_co = CCompilationOptions.defaults(CExecutorDeviceType.GPU)
     c_co.allow_lazy_fetch = kwargs.get("enable_lazy_fetch", config.rs.enable_lazy_fetch)
     c_co.with_dynamic_watchdog = kwargs.get("enable_dynamic_watchdog", config.exec.watchdog.enable_dynamic)
     cdef unique_ptr[CExecutionOptions] c_eo = make_unique[CExecutionOptions](CExecutionOptions.fromConfig(dereference(config)))

Currently pytest doesn't work with GPU and switching execution back to CPU.

This switching should be done in more convenient and general way.

@Devjiu
Copy link
Contributor Author

Devjiu commented Jan 30, 2023

@ienkovich PTAL

@ienkovich
Copy link
Contributor

Covered by #192

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants