Skip to content
GitLab
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
73d8876b
Commit
73d8876b
authored
Aug 03, 2017
by
Matthieu Schaller
Browse files
Removed outdated debugging checks that what re-introduced by an automatic merge.
parent
42877636
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/scheduler.c
View file @
73d8876b
...
...
@@ -1347,11 +1347,6 @@ void scheduler_enqueue(struct scheduler *s, struct task *t) {
}
else
if
(
t
->
subtype
==
task_subtype_xv
||
t
->
subtype
==
task_subtype_rho
||
t
->
subtype
==
task_subtype_gradient
)
{
#ifdef SWIFT_DEBUG_CHECKS
for
(
int
k
=
0
;
k
<
t
->
ci
->
count
;
k
++
)
if
(
t
->
ci
->
parts
[
k
].
ti_drift
!=
s
->
space
->
e
->
ti_current
)
error
(
"Sending un-drifted particle !"
);
#endif
err
=
MPI_Isend
(
t
->
ci
->
parts
,
t
->
ci
->
count
,
part_mpi_type
,
t
->
cj
->
nodeID
,
t
->
flags
,
MPI_COMM_WORLD
,
&
t
->
req
);
// message( "sending %i parts with tag=%i from %i to %i." ,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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