Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
595c6399
Commit
595c6399
authored
Sep 22, 2016
by
Matthieu Schaller
Browse files
Code formatting
parent
d891c77f
Changes
4
Hide whitespace changes
Inline
Side-by-side
examples/main.c
View file @
595c6399
...
...
@@ -265,7 +265,7 @@ int main(int argc, char *argv[]) {
/* Report CPU frequency. */
cpufreq
=
clocks_get_cpufreq
();
if
(
myrank
==
0
)
{
message
(
"Running on: %s"
,
hostname
());
message
(
"Running on: %s"
,
hostname
());
message
(
"CPU frequency used for tick conversion: %llu Hz"
,
cpufreq
);
}
...
...
src/engine.c
View file @
595c6399
...
...
@@ -2174,15 +2174,18 @@ void engine_print_task_counts(struct engine *e) {
int
counts
[
task_type_count
+
1
];
for
(
int
k
=
0
;
k
<=
task_type_count
;
k
++
)
counts
[
k
]
=
0
;
for
(
int
k
=
0
;
k
<
sched
->
nr_tasks
;
k
++
)
{
if
(
sched
->
tasks
[
k
].
skip
)
counts
[
task_type_count
]
+=
1
;
else
counts
[(
int
)
sched
->
tasks
[
k
].
type
]
+=
1
;
if
(
sched
->
tasks
[
k
].
skip
)
counts
[
task_type_count
]
+=
1
;
else
counts
[(
int
)
sched
->
tasks
[
k
].
type
]
+=
1
;
}
#ifdef WITH_MPI
printf
(
"[%04i] %s engine_print_task_counts: task counts are [ %s=%i"
,
e
->
nodeID
,
clocks_get_timesincestart
(),
taskID_names
[
0
],
counts
[
0
]);
#else
printf
(
"%s engine_print_task_counts: time step:%d task counts are [ %s=%i"
,
clocks_get_timesincestart
(),
e
->
ti_current
,
taskID_names
[
0
],
counts
[
0
]);
clocks_get_timesincestart
(),
e
->
ti_current
,
taskID_names
[
0
],
counts
[
0
]);
#endif
for
(
int
k
=
1
;
k
<
task_type_count
;
k
++
)
printf
(
" %s=%i"
,
taskID_names
[
k
],
counts
[
k
]);
...
...
@@ -2796,7 +2799,7 @@ void engine_step(struct engine *e) {
mask
|=
1
<<
task_type_recv
;
submask
|=
1
<<
task_subtype_tend
;
}
engine_print_task_counts
(
e
);
if
(
e
->
verbose
)
engine_print_task_counts
(
e
);
...
...
@@ -3364,13 +3367,14 @@ void engine_init(struct engine *e, struct space *s,
nr_nodes
*
nr_threads
);
e
->
file_timesteps
=
fopen
(
timestepsfileName
,
"w"
);
fprintf
(
e
->
file_timesteps
,
"# Host: %s
\n
# Branch: %s
\n
# Revision: %s
\n
# Compiler: %s, Version: %s
\n
# "
"# Host: %s
\n
# Branch: %s
\n
# Revision: %s
\n
# Compiler: %s, "
"Version: %s
\n
# "
"Number of threads: %d
\n
# Number of MPI ranks: %d
\n
# Hydrodynamic "
"scheme: %s
\n
# Hydrodynamic kernel: %s
\n
# No. of neighbours: %.2f "
"+/- %.2f
\n
# Eta: %f
\n
"
,
hostname
(),
git_branch
(),
git_revision
(),
compiler_name
(),
compiler_version
(),
e
->
nr_threads
,
e
->
nr_nodes
,
SPH_IMPLEMENTATION
,
kernel_name
,
e
->
hydro_properties
->
target_neighbours
,
hostname
(),
git_branch
(),
git_revision
(),
compiler_name
(),
compiler_version
(),
e
->
nr_threads
,
e
->
nr_nodes
,
SPH_IMPLEMENTATION
,
kernel_name
,
e
->
hydro_properties
->
target_neighbours
,
e
->
hydro_properties
->
delta_neighbours
,
e
->
hydro_properties
->
eta_neighbours
);
...
...
src/version.c
View file @
595c6399
...
...
@@ -62,8 +62,7 @@ const char *hostname(void) {
static
int
initialised
=
0
;
if
(
!
initialised
)
{
buf
[
255
]
=
'\0'
;
if
(
gethostname
(
buf
,
255
))
sprintf
(
buf
,
"%s"
,
"Unknown host"
);
if
(
gethostname
(
buf
,
255
))
sprintf
(
buf
,
"%s"
,
"Unknown host"
);
initialised
=
1
;
}
return
buf
;
...
...
src/version.h
View file @
595c6399
...
...
@@ -22,7 +22,7 @@
const
char
*
package_description
(
void
);
const
char
*
package_version
(
void
);
const
char
*
hostname
(
void
);
const
char
*
hostname
(
void
);
const
char
*
git_revision
(
void
);
const
char
*
git_branch
(
void
);
const
char
*
compiler_name
(
void
);
...
...
Write
Preview
Supports
Markdown
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