# Problem Currently the *base frame sampler* class has no strategy in place to improve performance (e.g. take advantage of *multi-cor processors*). # Solution Introduce some form of `concurrency` and/or `parallelism` into the *base class*. ## References + https://en.wikipedia.org/wiki/Concurrency_(computer_science) + https://en.wikipedia.org/wiki/Parallel_computing + https://docs.python.org/3/library/concurrency.html
Problem
Currently the base frame sampler class has no strategy in place to improve performance (e.g. take advantage of multi-cor processors).
Solution
Introduce some form of
concurrencyand/orparallelisminto the base class.References