mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 19:15:46 +00:00
glasm: Implement barriers
This commit is contained in:
parent
e63efa1b56
commit
65e81c75e9
1 changed files with 3 additions and 3 deletions
|
@ -53,15 +53,15 @@ void EmitDemoteToHelperInvocation(EmitContext& ctx) {
|
|||
}
|
||||
|
||||
void EmitBarrier(EmitContext& ctx) {
|
||||
NotImplemented();
|
||||
ctx.Add("BAR;");
|
||||
}
|
||||
|
||||
void EmitWorkgroupMemoryBarrier(EmitContext& ctx) {
|
||||
NotImplemented();
|
||||
ctx.Add("MEMBAR.CTA;");
|
||||
}
|
||||
|
||||
void EmitDeviceMemoryBarrier(EmitContext& ctx) {
|
||||
NotImplemented();
|
||||
ctx.Add("MEMBAR;");
|
||||
}
|
||||
|
||||
void EmitPrologue(EmitContext& ctx) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue