Can wpt.fyi indicate results of WebNN API Conformance tests by Chrome and Edge browsers enabled WebNN API flag
Visit https://wpt.fyi/results/webnn/conformance_tests?label=experimental&label=master&aligned, almost WebNN Conformance tests are FAIL since the testing Chrome and Edge browsers didn't enable WebNN API flag.
Can wpt.fyi indicate results of WebNN API Conformance tests by Chrome and Edge browsers enabled WebNN API flag?
Thanks.
I think you want to add --enable-features=WebMachineLearningNeuralNetwork to the default chrome arguments like so:
https://github.com/web-platform-tests/wpt/blob/8289fd3dd37e19918fceb83c6d2c46c4ced3cbc8/tools/wptrunner/wptrunner/browsers/chrome.py#L115-L117
The wpt.fyi results are running under --enable-experimental-web-platform-features, which should enable MachineLearningNeuralNetwork on the Blink side, but it seems the browser-side feature also needs to be enabled.
(This document explains the relationship between Blink-side and browser-side features.)
Thanks @jonathan-j-lee ! I've submitted a pr #46891 to add this flag.