[BUGFIX] Reject duplicate input names in C Predict API#21141
[BUGFIX] Reject duplicate input names in C Predict API#21141tunalloc wants to merge 1 commit intoapache:v1.xfrom
Conversation
|
Hey @tunalloc , Thanks for submitting the PR
CI supported jobs: [clang, edge, centos-cpu, centos-gpu, website, windows-cpu, miscellaneous, unix-cpu, unix-gpu, sanity, windows-gpu] Note: |
26fa682 to
33176c0
Compare
|
Apologies for the build failure. Updated the PR. The first version had been prepared on an earlier branch. It should be working now. |
|
Looks like just unix-gpu is failing now. The failures look likely to be unrelated to this change. |
|
@mxnet-bot run ci [unix-gpu] |
|
Jenkins CI successfully triggered : [unix-gpu] |
Description
Avoid a potential uninitialized read when using the C Predict API with symbols where the same input name occurs on more than one node. Other parts of MXNet appear to treat this as an error, so this change makes the C API reject it with an error too.
Since the C Predict API has been removed in MXNet v2 this PR is for merging into the 1.x branch.
Checklist
Essentials
I could not find any existing tests for the C Predict API. Please let me know if there's documentation that should be updated.
Changes
Comments
It's possible to cause an uninitialized read in the C Predict API. If I construct a symbol and parameters file using the Python API as follows:
Then substitute the contents of the generated files into this C++ code. This causes an uninitialized read and fails the final assertion.
If instead I generate the symbol as follows the test passes:
I believe the API should reject symbols where an input name appears more than once. This seems to happen in other parts of the code. For example the following code fails with an assertion error:
This change makes the C Predict API reject such symbols. With this change the above C++ code fails on the first assertion.