Zha0q1 opened a new issue #15658: profile_symbolic flag not working in profiler URL: https://github.com/apache/incubator-mxnet/issues/15658 We use `profiler.set_config()` to control the profiler's behaviors, i.e. what to profile. `profile_symbolic` and `profile_imperative` are two parameters to control whether to profile operators called in the two modes respectively. However, it seems currently `profiler_symbolic` is not functioning correctly. In the screenshot below, we have a simple scrip that has `plus_scalar` in symbolic mode and `minus_scalar` in imperative mode. `profile_symbolic` and `profile_imperative` are both set to `True` and we do see both events in `profiler.dumps()`.  However, if we set `profile_symbolic` and `profile_imperative` to `False`. The `minus_sclar` event is gone, but we still have the `plus_scalar` event, which is not the expected behavior.  MXNet version: from 1.4 to current (I only tested as far as 1.4) Python version: 2&3
---------------------------------------------------------------- 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
