You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I converted ASTRA-sim 1.0 text input files Resnet50_DataParallel.txt into Chakra traces. However, I observed that the COMM node was skipped by the workload layer of ASTRA-sim. This means that ASTRA-sim only output the time consumed by computation, without considering communication.
This issue was caused by the text converter not setting the is_cpu_op attribute of the COMM node to false. The default value of true causes the workload to skip the node, leading to the anomaly as shown in the following code (Workload.cc):
I converted ASTRA-sim 1.0 text input files Resnet50_DataParallel.txt into Chakra traces. However, I observed that the COMM node was skipped by the workload layer of ASTRA-sim. This means that ASTRA-sim only output the time consumed by computation, without considering communication.
This issue was caused by the text converter not setting the is_cpu_op attribute of the COMM node to false. The default value of true causes the workload to skip the node, leading to the anomaly as shown in the following code (Workload.cc):
The text was updated successfully, but these errors were encountered: