mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-06 07:49:02 +00:00
26 lines
1015 B
Mathematica
26 lines
1015 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=4 sw=4 et
|
|
%---------------------------------------------------------------------------%
|
|
% Copyright (C) 2009-2010 The University of Melbourne.
|
|
% Copyright (C) 2017 The Mercury team.
|
|
% 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.
|
|
%---------------------------------------------------------------------------%
|