Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-cluster
Commits
d83cfe9d
Commit
d83cfe9d
authored
Jan 24, 2019
by
rusty1s
Browse files
removed a bug that occurred if there were more neighbors than allowed
parent
dfe188ab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
cuda/radius_kernel.cu
cuda/radius_kernel.cu
+1
-1
No files found.
cuda/radius_kernel.cu
View file @
d83cfe9d
...
@@ -39,7 +39,7 @@ radius_kernel(const scalar_t *__restrict__ x, const scalar_t *__restrict__ y,
...
@@ -39,7 +39,7 @@ radius_kernel(const scalar_t *__restrict__ x, const scalar_t *__restrict__ y,
}
}
if
(
count
>=
max_num_neighbors
)
{
if
(
count
>=
max_num_neighbors
)
{
continue
;
break
;
}
}
}
}
}
}
...
...
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