fix: max streams 8

This commit is contained in:
Andrei Stoian
2025-09-18 22:09:30 +02:00
parent 7faafd6602
commit 70fa68bf52

View File

@@ -139,7 +139,7 @@ class CudaStreamPool
size_t nextStream = 0;
const size_t MAX_STREAMS = 16;
const size_t MAX_STREAMS = 8;
public:
cudaStream_t create_stream(uint32_t gpu_index)