MKehayov commented on code in PR #1698:
URL: https://github.com/apache/systemds/pull/1698#discussion_r981246297


##########
scripts/staging/SIMD-double-vectors/systemds:
##########
@@ -167,7 +167,7 @@ Worker Usage: $0 [-r] WORKER [SystemDS.jar] <portnumber> 
[arguments] [-help]
 
     port         : The port to open for the federated worker.
 
-Federated Monitoring Usage: $0 [-r] FEDMONITOR [SystemDS.jar] <portnumber> 
[arguments] [-help]
+Federated Monitoring Usage: $0 [-r] FEDMONITORING [SystemDS.jar] <portnumber> 
[arguments] [-help]

Review Comment:
   Done, I removed the line with the federated monitoring.



##########
scripts/monitoring/src/app/utils.ts:
##########
@@ -22,7 +22,7 @@ export class Utils {
                return a.x < b.x ? -1 : (a.x > b.x ? 1 : 0);
        }
 
-       public static sortStartDate(a, b) {
-               return a.startTime < b.startTime ? -1 : (a.startTime > 
b.startTime ? 1 : 0);
+       public static sortEventsStartDate(a, b) {
+               return a.stages[0].startTime < b.stages[0].startTime ? -1 : 
(a.stages[0].startTime > b.stages[0].startTime ? 1 : 0);

Review Comment:
   Done.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to