Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
codes
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
38
Issues
38
List
Boards
Labels
Milestones
Merge Requests
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
codes
codes
Commits
6866d12e
Commit
6866d12e
authored
Aug 19, 2015
by
Jonathan Jenkins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove uses of scalatrace
parent
e64e38f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
13 deletions
+2
-13
src/models/network-workloads/model-net-dumpi-traces-dump.c
src/models/network-workloads/model-net-dumpi-traces-dump.c
+0
-1
src/models/network-workloads/model-net-mpi-wrklds.c
src/models/network-workloads/model-net-mpi-wrklds.c
+2
-12
No files found.
src/models/network-workloads/model-net-dumpi-traces-dump.c
View file @
6866d12e
...
...
@@ -134,7 +134,6 @@ void nw_test_init(nw_state* s, tw_lp* lp)
{
/* initialize the LP's and load the data */
char
*
params
;
scala_trace_params
params_sc
;
dumpi_trace_params
params_d
;
s
->
nw_id
=
lp
->
gid
;
...
...
src/models/network-workloads/model-net-mpi-wrklds.c
View file @
6866d12e
...
...
@@ -1096,8 +1096,7 @@ static void update_message_time_rc(
void
nw_test_init
(
nw_state
*
s
,
tw_lp
*
lp
)
{
/* initialize the LP's and load the data */
char
*
params
;
scala_trace_params
params_sc
;
char
*
params
=
NULL
;
dumpi_trace_params
params_d
;
codes_mapping_get_lp_info
(
lp
->
gid
,
lp_group_name
,
&
mapping_grp_id
,
lp_type_name
,
...
...
@@ -1111,16 +1110,7 @@ void nw_test_init(nw_state* s, tw_lp* lp)
if
(
!
num_net_traces
)
num_net_traces
=
num_net_lps
;
if
(
strcmp
(
workload_type
,
"scalatrace"
)
==
0
){
if
(
params_sc
.
offset_file_name
[
0
]
==
'\0'
){
tw_error
(
TW_LOC
,
"required argument for scalatrace offset_file"
);
return
;
}
strcpy
(
params_sc
.
offset_file_name
,
offset_file
);
strcpy
(
params_sc
.
nw_wrkld_file_name
,
workload_file
);
params
=
(
char
*
)
&
params_sc
;
}
else
if
(
strcmp
(
workload_type
,
"dumpi"
)
==
0
){
if
(
strcmp
(
workload_type
,
"dumpi"
)
==
0
){
strcpy
(
params_d
.
file_name
,
workload_file
);
params_d
.
num_net_traces
=
num_net_traces
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment