We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently we are emitting memcpys both 64bit and 32bit versions The DML shaders will have errors like so:
error: Unsupported intrinsic llvm.memcpy.p3.p3.i32 for DXIL lowering
We emit this error because the memcpy intrinsic is not valid DXIL.
These memcpys tend to be in the hlsl_groupshared ie addressspace(3). This might make the memcpy more involved to serialize into a set of store calls.
hlsl_groupshared
addressspace(3)
tail call void @llvm.memcpy.p3.p3.i32(ptr addrspace(3) align 4 %scevgep, ptr addrspace(3) align 4 %scevgep19, i32 %38, i1 false)
The text was updated successfully, but these errors were encountered:
Look for the recent legalize memset PR to get an idea of where to start on this.
Sorry, something went wrong.
Icohedron
Successfully merging a pull request may close this issue.
Problem
Currently we are emitting memcpys both 64bit and 32bit versions
The DML shaders will have errors like so:
error: Unsupported intrinsic llvm.memcpy.p3.p3.i32 for DXIL lowering
We emit this error because the memcpy intrinsic is not valid DXIL.
These memcpys tend to be in the
hlsl_groupshared
ieaddressspace(3)
. This might make the memcpy more involved to serialize into a set of store calls.Example
The text was updated successfully, but these errors were encountered: