pytorch/kineto

[Plugin-Bug]The Operators of baseline-run and exp-run are showed in a misaligned order

Closed this issue · 1 comments

When using DIFF tool of tb_plugin, I find that the operators of baseline-run and exp-run are showed in a misaligned order, resulting in wrong comparisons.

  1. The first comparison is between "cpu_1.13.1" run and itself, giving the correct operator name and corresponding calls:
    image
  2. In the second comparison, only replace the baseline with "gpu_1.13.1" run. It can be seen that "Exp Calls" are obviously inconsistent with "Operator" name:
    image

This bug is caused by code in frontend. It should show the comparison results using operator name, rather than sequence number.

After modification in #883, the bug can be fixed:
image