Search Issue Tracker
By Design
Votes
0
Found in
2019.3.0a1
2019.3.0f2
Issue ID
1203358
Regression
Yes
[Performance Regression] Prefab PerformanceTest: MeasureSaveTimeForPrefab(20,1,1,1000) is significantly slower
The PrefabSaveTests test: Test: MeasureSaveTimeForPrefab(20,1,1,1000) is significantly slower in 2019.3 than 2019.2 or 18.4
It looks like the regression was introduced with the change-set: 2019.3.0a1 (25828b1b312)
There is a second, even worse regression introduced in 2020.1.a5 (1e4819d07b04)
Platform observed on - MacOS
To observe the issue:
https://observer.cds.internal.unity3d.com/afb89201c7d5c267b5743e5f7de3f8c2fd091ba0
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- ArgumentOutOfRangeException: Index was out of range when converting subgraph properties and nodes to Subgraph Operator
- A black bar appears on the Game View toolbar when the Game View is resized vertically
- Double separation lines are present in Override Controls in a DefaultVolumeProfile Asset
- Silent crash when multiple child GameObject Colliders are triggered while attached to a Parent GameObject with Transform Scale set as (0; 0; 0)
- Numbers of output expressions does not match number of output error is thrown when converting node to property Output
Resolution Note (2019.3.X):
The regression with performance is due to the performance tests are leaking objects. If you run the performance test just one, v1 and v2 performance is similar. Asset db v1 runs a garbage collection during import and with v2 the garbage collection has been removed. In v2 we want the import to leave the loaded objects state the same before and after imports. By added a single clean up of objects (EditorUtility.UnloadUnusedAssetsImmediate();) in the test, the performance test runs much fast with v2.