%---------------------------------------------------------------------------% % vim: ft=mercury ts=4 sw=4 et %---------------------------------------------------------------------------% % Copyright (C) 2009-2010 The University of Melbourne. % This file may only be copied under the terms of the GNU General % Public License - see the file COPYING in the Mercury distribution. %---------------------------------------------------------------------------% % % File: mdprof_fb.m. % Author: pbone. % % Deep profiling feedback procedures. Each submodule gathers some deep % profiling feedback information for use by the compiler. % %---------------------------------------------------------------------------% :- module mdprof_fb. :- interface. :- include_module mdprof_fb.automatic_parallelism. %---------------------------------------------------------------------------% :- end_module mdprof_fb. %---------------------------------------------------------------------------%