-
Notifications
You must be signed in to change notification settings - Fork 22
MEAN add MKL kernel #119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MEAN add MKL kernel #119
Conversation
Codecov Report
@@ Coverage Diff @@
## master #119 +/- ##
=======================================
Coverage 51.45% 51.45%
=======================================
Files 19 19
Lines 1240 1240
Branches 329 329
=======================================
Hits 638 638
Misses 340 340
Partials 262 262 Continue to review full report at Codecov.
|
|
||
custom_sum_c<_DataType>(array1_in, sum, size); | ||
cl::sycl::event event = mkl_stats::mean(DPNP_QUEUE, dataset, result); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add a comment with documentation pointer to this functionality from MKL?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
something like
// http://asdada
result[0] = static_cast<_ResultType>(sum[0]) / static_cast<_ResultType>(size); | ||
|
||
dpnp_memory_free_c(sum); | ||
} | ||
|
||
#if 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, please delete this debug code
No description provided.