Robin Söderholm

Results 6 issues of Robin Söderholm

I want to set up a small framework in which I automatically create graph dependencies depending on the output of a certain task, but it became problematic when one task...

Compile the following code with SDL3: ```cpp #include #include "stdlib.h" #include "stdio.h" #define SHOW_SDL_BUG_WORKAROUND 0 void show_sld_bug_render_rect(SDL_Window*w, SDL_Renderer* r) { SDL_RenderClear(r); #if SHOW_SDL_BUG_WORKAROUND SDL_RenderPresent(r); #endif SDL_Rect total_size{}; SDL_GetWindowSize(w, &total_size.w, &total_size.h);...

Today Taskflow and Task:s uses `std::function` unconditionally for all type-erasing operations. Sometimes, however, a user may need to use their own type-erasure, or there are circumstances that make the standard...

Since the update to 3.10 the capturing functions has been removed. We are now to use (if I understand correctly) either native cuda calls or the `cudaStream::begin_capture()`+`cudaStream::end_capture()`. However, these calls...

help wanted

Currently only CUDA is supported by the cudaGraph, but I wonder if a "hiplikeGraphBase" could be implemented instead that is specialised for CUDA, HIP and ROCm as to allow more...

Allow cudaGraphs to be added to existing graphs as subgraphs. Add exposed constructor for cudaTask:s from native cudaGraphNode_t that can be used for manual, native modifications to a native cuda...