-
Notifications
You must be signed in to change notification settings - Fork 769
[SYCL][FPGA] Minor fix to the fpga_lsu header #2233
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
Conversation
Actually, closing for now. This may not be an actual problem. |
These look like actual problems... |
The changes in the doc need to be fixed for sure. |
3f66098
to
e698175
Compare
@mohammadfawaz, could you resolve merge conflict, please? |
e698175
to
33636e9
Compare
The load function should not return a ref. The translator expects the pointer annotation result to be loaded directly. Also, small minor fixes to the spec
33636e9
to
5b2e1eb
Compare
@intel/dpcpp-specification-reviewers, @intel/llvm-reviewers-runtime, ping. |
@mlychkov Could you please, review? |
) Pointer named Expected was taken by reference to closure to be executed later by Mutator. Mutator executes the closure in his destructor which happens after the destruction of Expected pointer stack frame. This fix clears some ASan errors from #2233. Original commit: KhronosGroup/SPIRV-LLVM-Translator@c7cd904
Allocated SPIRVExecutionMode class wasn't added as dependant resource in SPIRVModule. Fix some ASan errors in issue #2233. Original commit: KhronosGroup/SPIRV-LLVM-Translator@1a19f6f
…2265) ImageOpMask pointer was passed to closure as reference. Closure is executed outside of original stack frame which renders reference invalid. Fixes some ASan errors from issue #2233. Original commit: KhronosGroup/SPIRV-LLVM-Translator@29d4cd3
Improvements to align CTS and Spec for Memory
The load function should not return a ref. The translator expects the pointer
annotation result to be loaded directly.
Also, small minor fixes to the spec