Searched refs:profile (Results 1 - 25 of 31) sorted by relevance

12

/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mthca/
H A Dmthca_profile.c79 struct mthca_resource *profile; local
83 profile = kzalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL);
84 if (!profile)
87 profile[MTHCA_RES_QP].size = dev_lim->qpc_entry_sz;
88 profile[MTHCA_RES_EEC].size = dev_lim->eec_entry_sz;
89 profile[MTHCA_RES_SRQ].size = dev_lim->srq_entry_sz;
90 profile[MTHCA_RES_CQ].size = dev_lim->cqc_entry_sz;
91 profile[MTHCA_RES_EQP].size = dev_lim->eqpc_entry_sz;
92 profile[MTHCA_RES_EEE
[all...]
H A Dmthca_main.c297 struct mthca_profile profile; local
340 profile = hca_profile;
341 profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
342 profile.uarc_size = 0;
344 profile.num_srq = dev_lim.max_srqs;
346 size = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca);
627 struct mthca_profile profile; local
670 profile = hca_profile;
671 profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
672 profile
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dprofile.c74 struct mlx4_resource *profile; local
78 profile = calloc(MLX4_RES_NUM, sizeof(*profile));
79 if (!profile)
82 profile[MLX4_RES_QP].size = dev_cap->qpc_entry_sz;
83 profile[MLX4_RES_RDMARC].size = dev_cap->rdmarc_entry_sz;
84 profile[MLX4_RES_ALTC].size = dev_cap->altc_entry_sz;
85 profile[MLX4_RES_AUXC].size = dev_cap->aux_entry_sz;
86 profile[MLX4_RES_SRQ].size = dev_cap->srq_entry_sz;
87 profile[MLX4_RES_C
[all...]
H A Den_main.c84 struct mlx4_en_profile *params = &mdev->profile;
221 /* Build device profile according to supplied module parameters */
236 mdev->profile.prof[i].rx_ring_num = 1;
242 mdev->profile.prof[i].rx_ring_num = rounddown_pow_of_two(
269 if (mlx4_en_init_netdev(mdev, i, &mdev->profile.prof[i], queue))
H A Dmlx4_devif_queue.c547 static void process_mod_param_profile(struct mlx4_profile *profile) { argument
558 profile->num_qp = 1 << mod_param_profile.num_qp;
559 profile->num_srq = 1 << mod_param_profile.num_srq;
560 profile->rdmarc_per_qp = 1 << mod_param_profile.rdmarc_per_qp;
561 profile->num_cq = 1 << mod_param_profile.num_cq;
562 profile->num_mcg = 1 << mod_param_profile.num_mcg;
563 profile->num_mpt = 1 << mod_param_profile.num_mpt;
578 profile->num_mtt_segs = 1 << mod_param_profile.num_mtt_segs;
580 profile->num_mtt_segs =
590 mod_param_profile.num_mtt_segs = ilog2(profile
848 struct mlx4_profile profile; local
[all...]
H A Den_netdev.c2446 priv->num_tx_rings_p_up = mdev->profile.num_tx_rings_p_up;
H A Dmlx4_en.h440 struct mlx4_en_profile profile; member in struct:mlx4_en_dev
H A Den_rx.c966 if (priv->mdev->profile.udp_rss) {
/barrelfish-master/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DCumulativeProfile.java36 int[] profile = new int[width];
46 profile[j] += resMin;
50 return profile;
53 int[] profile = new int[width];
62 profile[j] += resMin;
66 return profile;
H A DVisualizerCumulative.java29 * Visualizer for the cumulative constraint as a profile.
57 int[] profile = CumulativeProfile.computeProfile(task,width());
59 openRectSVG(out,posX(i),posY(0),1,profile[i],Colors.UNASSIGNED_COLOR,0.8);
85 int[] profile = CumulativeProfile.computeProfile(task,w);
88 if (profile[i] > limit.getMax()) {
91 if (profile[i] > limit.getMin()) {
H A DVisualizerBinPacking.java98 int[] profile = new int[n];
101 profile[items[j].getIntValue()] += sizes[j];
106 if (profile[i] > bins[i].getMax()){
109 if (profile[i] > bins[i].getMin()){
H A DVisualizerCumulativeCost.java66 int[] profile = CumulativeProfile.computeProfile(task,width());
70 // openRectSVG(out,posX(i),posY(0),1,profile[i],Colors.UNASSIGNED_COLOR);
76 openRectSVG(out,posX(i),posY(0),1,profile[i],Colors.UNASSIGNED_COLOR);
116 int[] profile = CumulativeProfile.computeProfile(task,w);
119 if (profile[i] > limit.getMax()) {
122 if (profile[i] > limit.getMin()) {
H A DVisualizerCumulativeGantt.java57 int[] profile = CumulativeProfile.computeProfile(task, width());
59 if (profile[i] == limit.getMax()) {
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dprofile.pl26 % Version: $Id: profile.pl,v 1.2 2009/07/16 09:11:24 jschimpf Exp $
34 * IDENTIFICATION: profile.pl
41 :- module(profile).
48 :- comment(profile/1, [template:"profile(+Goal)",
50 :- comment(profile/2, [template:"profile(+Goal, +Options)",
56 <DD>show external predicates in the output profile
64 profile/1,
65 profile/
[all...]
H A Dcprof.pl36 % CONTENTS: profile(+N, +Goal)
H A Dtoplevel.pl67 % profile(GoalString)
69 % Like call(GoalString), but wrap the call into profile/1 or
539 state_idle(profile(GoalString)) :- !,
540 exec_goal(GoalString, profile).
776 top_call_local(Goal, Module, profile) :-
778 profile:profile(Goal)@Module label
/barrelfish-master/lib/openssl-1.0.0d/util/pl/
H A Dlinux.pl15 elsif ($profile)
/barrelfish-master/usr/eclipseclp/documents/tutorial/
H A Dprogramanalysis.tex75 ?- profile(Goal).
77 \index{profile/1} is called, the profiler executes the \emph{Goal} in
114 ?- profile(queen([1,2,3,4,5,6,7,8,9],Out)).
137 \verb+profile/1+ predicate itself always succeeds.
153 profile a call to this auxiliary predicate. eg.
166 ?- profile(queen_100).
/barrelfish-master/usr/eclipseclp/documents/applications/
H A DMakefile31 EPSFIGURES = htmlreport.eps profile.eps tracer.eps
/barrelfish-master/lib/openssl-1.0.0d/util/
H A Dcygwin.sh76 PROFILE_DIR=${INSTALL_PREFIX}/etc/profile.d
H A Dmk1mf.pl120 profile - Profiling build
1078 "profile" => \$profile,
/barrelfish-master/usr/eclipseclp/documents/libman/
H A Dfdglobal.tex154 \item[\biptxtref{profile(+StartTimes, +Durations, +Resources, -Profile)}{ic_cumulative:profile/4}{../bips/lib/ic_cumulative/profile-4.html}]\ \\
155 \index{profile/4}
/barrelfish-master/usr/eclipseclp/documents/userman/
H A Dumsprofile.tex62 :- profile(Goal).
74 [eclipse 5]: profile(boyer).
109 The predicate {\bf profile(Goal, Flags)} can be used to change
117 [eclipse 6]: profile(boyer, [simple]).
H A Dumsdeveltools.tex360 ?- profile(Goal).
363 \indextt{profile/1} is called, the profiler executes the \about{Goal} in
373 ?- profile(queen([1,2,3,4,5,6,7,8,9],Out)).
397 \predspec{profile/1} predicate itself always succeeds.
414 The predicate \predspec{profile(Goal,~Flags)} can be used to change
428 profile a call to this auxiliary predicate. e.g.,
446 ?- profile(queen_100).
/barrelfish-master/usr/eclipseclp/documents/megalog/
H A Dmanual.tex91 % \include {profile-sec}

Completed in 301 milliseconds

12