You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Problem: * Currently NNE QA is optimizing model on the fly and thus require a runtime dependency of the model optimizer on platforms * Also it scaling poorly with the amount of tests and models we need, especially as the DDC is not used. * It also mean cooking and packaging flow are not used by the tests. Solution: Create a QA asset containing all the needed data for the test description as well as the related UNNEModelData. The QA asset and the UNNEModelData subasset can then be cooked, also all the import step such as model optimization are only done once at the test asset import time. How: This CL is providing the test asset mechanisum, the current NNE uasset and json and model are on a different repo that should be sync manually. Tests: win64 editor: Style transfer demo + all NNE tests. win64 standalone: Style transfer demo + all NNE tests. #rb ue-nni #rnx [CL 27872753 by florent guinier in ue5-main branch]