-
Notifications
You must be signed in to change notification settings - Fork 2
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
problems with logistic regressions #1
Comments
The second The second problem is troubling though. I'll take a look. |
The logistic regression issue is resolved. |
We could turn the general matrix multiply into a parfor over a sequential reduction, or with the recent support on reduction, a parfor over a parfor. Thoughts? |
Currently, the matrix multiply (first dot) is a parfor over a sequential reduction. I don't see any benefit for the parfor over parfor approach for this code since the reduction dimension is small. |
Add tests and configuration capacity for SVML implemented by Stuart
Implemented TBB parfor layer, aligned workqueue signatures
Fix test_function_incompatible_templates test
Type system implementation #1: Added initial implementation for a new type system using redundancies.
Type system implementation #1: Added initial implementation for a new type system using redundancies.
I've noticed two problems with logistic_regression:
The second
dot
operation is not matched and turned into parfor.Result will be wrong if
w -= ...
is rewritten asw = w - ...
in source code.The text was updated successfully, but these errors were encountered: