samskalicky edited a comment on issue #16131: Fix for duplicate subgraph inputs/outputs URL: https://github.com/apache/incubator-mxnet/pull/16131#issuecomment-586647293 @mseth10 looks like we made an aux an arg somehow, thats why the MKLDNN tests are failing: | in_args_map | arg_names | arg_names | |---|---|---| data|data|data| conv1_weight|conv1_weight|conv1_weight| bn1_gamma|bn1_gamma|bn1_gamma| bn1_beta|bn1_beta|bn1_beta| conv2_weight|conv2_weight|conv2_weight| bn2_gamma|bn2_gamma|bn2_gamma| bn2_beta|bn2_beta|bn2_beta| | | | **bn2_moving_mean** | So this is why the error says ``` MXNetError: Check failed: arg_names.size() == in_args_map.size() (8 vs. 7) : ``` Theres one extra name in `arg_names` for `bn2_moving_mean`
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
