You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling free on memory allocated by new results in undefined behavior, this is not safe. This should be replaced with delete[] activation;
and similarly for the other locations where free is called.
The text was updated successfully, but these errors were encountered:
knn_cuda/src/knn.cpp
Line 56 in 154e2f7
Calling
free
on memory allocated bynew
results in undefined behavior, this is not safe. This should be replaced withdelete[] activation;
and similarly for the other locations where free is called.
The text was updated successfully, but these errors were encountered: