connorgoggins commented on a change in pull request #17407: Implemented final two binary ops, added default params for functionality URL: https://github.com/apache/incubator-mxnet/pull/17407#discussion_r371388285
########## File path: benchmark/opperf/nd_operations/binary_operators.py ########## @@ -35,7 +35,34 @@ from benchmark.opperf.utils.benchmark_utils import run_op_benchmarks from benchmark.opperf.utils.op_registry_utils import get_all_broadcast_binary_operators, \ - get_all_elemen_wise_binary_operators + get_all_elemen_wise_binary_operators, get_all_misc_binary_operators + + +def run_mx_binary_misc_operators_benchmarks(ctx=mx.cpu(), dtype='float32', profiler='native', warmup=25, runs=100): Review comment: For now, just the two additional ops I implemented (`choose_element_0index` and `reshape_like`), since they did not appear to fall into the broadcast or elementwise binary ops categories. ---------------------------------------------------------------- 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
