drivanov commented on issue #16218: Improving performance of argmax operator URL: https://github.com/apache/incubator-mxnet/pull/16218#issuecomment-534664788 Later today I will try your approach: ``` from benchmark.opperf.utils.benchmark_utils import run_performance_test import mxnet as mx from mxnet import nd print(run_performance_test(nd.argmax, run_backward=True, dtype='float32', ctx=mx.cpu(),inputs=[{"data":(1024,1024), "axis":1}],warmup=10, runs=25, profiler='python')) print(run_performance_test(nd.argmax, run_backward=True, dtype='float32', ctx=mx.cpu(),inputs=[{"data":(1024,1024), "axis":0}],warmup=10, runs=25, profiler='python')) ```
---------------------------------------------------------------- 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
