| 107 | |
| 108 | |
| 109 | class CudaBNBNativeLibrary(BNBNativeLibrary): |
| 110 | compiled_with_cuda = True |
| 111 | |
| 112 | def __init__(self, lib: ct.CDLL): |
| 113 | super().__init__(lib) |
| 114 | lib.get_context.restype = ct.c_void_p |
| 115 | lib.cget_managed_ptr.restype = ct.c_void_p |
| 116 | |
| 117 | |
| 118 | class XpuBNBNativeLibrary(BNBNativeLibrary): |
no outgoing calls
no test coverage detected