-
Notifications
You must be signed in to change notification settings - Fork 9.7k
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
[SYCL] Disable iqx on windows as WA #6435
Conversation
auto kmask_iq2xs_ptr_ct1 = kmask_iq2xs.get_ptr(); | ||
auto iq2xxs_grid_ptr_ct1 = &iq2xxs_grid[0]; | ||
auto ksigns_iq2xs_ptr_ct1 = &ksigns_iq2xs[0]; | ||
auto kmask_iq2xs_ptr_ct1 = &kmask_iq2xs[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.
remove kmask_iq2xs_ptr_ct1 and replaced by kmask_iq2xs in next code.
auto kmask_iq2xs_ptr_ct1 = &kmask_iq2xs[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.
It's same for other codes, like:
auto kmask_iq2xs_ptr_ct1 = &kmask_iq2xs[0];
remove them.
* disable iqx on windows as WA * array instead of global_memory
workaround for ollama/ollama#3278