Skip to content
Snippets Groups Projects
Commit 71ef0e17 authored by Yifan Sun's avatar Yifan Sun
Browse files

Bug fix in emulator

parent f3cf1e35
No related branches found
No related tags found
Loading
Pipeline #56382850 passed
......@@ -55,11 +55,11 @@ func (cu *ComputeUnit) Handle(evt akita.Event) error {
switch evt := evt.(type) {
case *gcn3.MapWGReq:
return cu.handleMapWGReq(evt)
cu.handleMapWGReq(evt)
case *akita.TickEvent:
return cu.handleTickEvent(evt)
cu.handleTickEvent(evt)
case *WGCompleteEvent:
return cu.handleWGCompleteEvent(evt)
cu.handleWGCompleteEvent(evt)
default:
log.Panicf("cannot handle event %s", reflect.TypeOf(evt))
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment