AndrewZhaoLuo commented on PR #13802: URL: https://github.com/apache/tvm/pull/13802#issuecomment-1402487831
IIRC the expanded tests simply expand the node into things that can be written in terms of existing ops. E.g. If we had an “FMA” node in ONNX which does output = in1 * in2 + in3 , the FMA_test would be just an FMA node but the FMA_expanded_test will be a multiplication node and an addition node. So in FMA_test we would hit the FMA node converter, while for FMA_expanded_test we would hit the multiply and addition node converters https://github.com/microsoft/onnxruntime/blob/main/onnxruntime/test/onnx/main.cc#L699 If we look here, the bernoulli tests are listed as broken so :shrug: -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
