#ifndef CHUNK_SCHEDULER_HPP
#define CHUNK_SCHEDULER_HPP

#include "scheduler_iface.hpp"

// Chunked dynamic: threads grab CHUNK frames per pop instead of one.
// Trades a little load balance for far less mutex traffic.
int run_chunk_scheduler(int F, int K, task_fn_t task, void* ctx, bool affinity);

#endif
