public void AddLayerDispatch(DispatchInfo dispatchInfo)
 {
     Assert.IsNotNull(CurrentModelExecutionReport);
     CurrentModelExecutionReport.AddLayerDispatch(dispatchInfo);
 }
 public void SetLayerALUAndMemStats(long alu, long bytes)
 {
     Assert.IsNotNull(CurrentModelExecutionReport);
     CurrentModelExecutionReport.SetLayerALUAndMemStats(alu, bytes);
 }
 public void LayerExecutionCompleted()
 {
     Assert.IsNotNull(CurrentModelExecutionReport);
     CurrentModelExecutionReport.LayerExecutionCompleted();
 }
 public void SetLayerSummary(string message)
 {
     Assert.IsNotNull(CurrentModelExecutionReport);
     CurrentModelExecutionReport.SetLayerSummary(message);
 }
 public void LayerExecutionStarted(Layer layer)
 {
     Assert.IsNotNull(CurrentModelExecutionReport);
     CurrentModelExecutionReport.LayerExecutionStarted(layer);
 }