eyalroz / gpu-kernel-runner

Runs a single CUDA/OpenCL kernel, taking its source from a file and arguments from the command-line

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Set intersection and difference impl bug

eyalroz opened this issue · comments

We use util::difference() for sets, to check whether all of our required preprocessor definitions were provided; and util::difference() uses std::set_difference(). But... std::set_difference() only works for ordered sets (not confusing at all!) ... so let's not use it.