UVM_SCOREBOARD

In UVM_SCOREBOARD, IN WHICH PHASE CAN I COMPARE DATA EXCEPT RUN PHASE.

In reply to Henriques:

You can make your scorebboard compares in any pahse after the run_phase.
Please not it is not recommended tocompare your data ouside of the run_phase, because you have to store all transactions. This requires a big mount of memory and will slow down your verification process.

In reply to Henriques:

Also please pay attention that only run_phase is task i.e. can consume time.
All other phases are functions ( cannot consume time)