% ====================================================================== % ====================================================================== \chapter{Future Work} % ====================================================================== % ====================================================================== \section{Flexible Scheduling} \label{futur:sched} An important part of concurrency is scheduling. Different scheduling algorithm can affact peformance (both in terms of average and variation). However, no single scheduler is optimal for all workloads and therefore there is value in being able to change the scheduler for given programs. One solution is to offer various tweaking options to users, allowing the scheduler to be adjusted the to requirements of the workload. However, in order to be truly flexible, it would be interesting to allow users to add arbitrary data and arbirary scheduling algorithms to the scheduler. For example, a web server could attach Type-of-Service information to threads and have a ``ToS aware'' scheduling algorithm tailored to this specific web server. This path of flexible schedulers will be explored for \CFA. \section{Non-Blocking IO} \label{futur:nbio} While most of the parallelism tools However, many modern workloads are not bound on computation but on IO operations, an common case being webservers and XaaS (anything as a service). These type of workloads often require significant engineering around amortising costs of blocking IO operations. While improving throughtput of these operations is outside what \CFA can do as a language, it can help users to make better use of the CPU time otherwise spent waiting on IO operations. The current trend is to use asynchronous programming using tools like callbacks and/or futurs and promises\cite. However, while these are valid solutions, they lead to code that is harder to read and maintain because it is much less linear \section{Other concurrency tools} \label{futur:tools} While monitors offer a flexible and powerful concurent core for \CFA, other concurrency tools are also necessary for a complete multi-paradigm concurrency package. Example of such tools can include simple locks and condition variables, futures and promises\cite{promises}, and executors. These additional features are useful when monitors offer a level of abstraction which is indaquate for certain tasks. \section{Implicit threading} \label{futur:implcit} Simpler applications can benefit greatly from having implicit parallelism. That is, parallelism that does not rely on the user to write concurrency. This type of parallelism can be achieved both at the language level and at the library level. The cannonical example of implcit parallelism is parallel for loops, which are the simplest example of a divide and conquer algorithm\cite{uC++book}. Listing \ref{lst:parfor} shows three different code examples that accomplish pointwise sums of large arrays. Note that none of these example explicitly declare any concurrency or parallelism objects. \begin{figure} \begin{center} \begin{tabular}[t]{|c|c|c|} Sequential & Library Parallel & Language Parallel \\ \begin{cfacode}[tabsize=3] void big_sum( int* a, int* b, int* o, size_t len) { for( int i = 0; i < len; ++i ) { o[i]=a[i]+b[i]; } } int* a[10000]; int* b[10000]; int* c[10000]; //... fill in a & b big_sum(a,b,c,10000); \end{cfacode} &\begin{cfacode}[tabsize=3] void big_sum( int* a, int* b, int* o, size_t len) { range ar(a, a+len); range br(b, b+len); range or(o, o+len); parfor( ai, bi, oi, []( int* ai, int* bi, int* oi) { oi=ai+bi; }); } int* a[10000]; int* b[10000]; int* c[10000]; //... fill in a & b big_sum(a,b,c,10000); \end{cfacode}&\begin{cfacode}[tabsize=3] void big_sum( int* a, int* b, int* o, size_t len) { parfor (ai,bi,oi) in (a, b, o ) { oi = ai + bi; } } int* a[10000]; int* b[10000]; int* c[10000]; //... fill in a & b big_sum(a,b,c,10000); \end{cfacode} \end{tabular} \end{center} \caption{For loop to sum numbers: Sequential, using library parallelism and language parallelism.} \label{lst:parfor} \end{figure} Implicit parallelism is a general solution and therefore has its limitations. However, it is a quick and simple approach to parallelism which may very well be sufficient for smaller applications and reduces the amount of boiler-plate that is needed to start benefiting from parallelism in modern CPUs.