Skip to content
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

added missing initialization of D buffer in 2mm #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

libmld-dev
Copy link

The initialization of the D buffer used for the GPU kernel was missing.
The GPU (and also the CPU) version adds values to the D buffer:
D[i * nl + j] += tmp[i * nj + k] * C[k * nl + j];
This means the initial values of D does matter for the computation. The D buffer of the CPU versions get initialized in the init_array function, but the GPUs D buffer initialization was missing.
This has only a very small impact on the result (and performance) and is therefore not detected by the compareResults function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant