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
platform_ = platform_;
Results in not initializing platform_ member field with platforms[0] as I suppose was intended.
Currently clang build doesn't work and I am planning to enable it for the project (at-very least for x86-64).
The reason is that clang has '-Wself-assignment' option and will be able catch typos like those.
I have not learned how to run test suit for OpenCL yet. Does the CI run any of the OpenCL tests to degree I can put my faith into?
Cheers
/P
The text was updated successfully, but these errors were encountered:
Hello,
Noticed this issue by reviewing the code.
That's surely a bug:
nntrainer/nntrainer/opencl/opencl_context_manager.cpp
Line 156 in 89e8b7c
platform_ = platform_;
Results in not initializing
platform_
member field withplatforms[0]
as I suppose was intended.Currently clang build doesn't work and I am planning to enable it for the project (at-very least for x86-64).
The reason is that clang has '-Wself-assignment' option and will be able catch typos like those.
I have not learned how to run test suit for OpenCL yet. Does the CI run any of the OpenCL tests to degree I can put my faith into?
Cheers
/P
The text was updated successfully, but these errors were encountered: