We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
24.03
Source
Happens when C++ mode is enabled
import cudf from morpheus.config import CppConfig from morpheus.messages import MessageMeta def test(): data = {'checklist': [{'question': 'q1', 'response': 'r1'}, {'question': 'q2', 'response': 'r2'}]} df = cudf.DataFrame(data) m = MessageMeta(df) print(f"\nmessage.copy_dataframe()\n{m.copy_dataframe()}") CppConfig.set_should_use_cpp(False) print("C++ Disabled") test() CppConfig.set_should_use_cpp(True) print("C++ Enabled") test()
C++ Disabled message.copy_dataframe() checklist 0 {'question': 'q1', 'response': 'r1'} 1 {'question': 'q2', 'response': 'r2'} C++ Enabled message.copy_dataframe() checklist "" 0 {'0': 'q1', '1': 'r1'} 1 {'0': 'q2', '1': 'r2'}
[Paste the results of print_env.sh here, it will be hidden by default]
No response
The text was updated successfully, but these errors were encountered:
Duplicate of #1527
Sorry, something went wrong.
No branches or pull requests
Version
24.03
Which installation method(s) does this occur on?
Source
Describe the bug.
Happens when C++ mode is enabled
Minimum reproducible example
Relevant log output
Full env printout
Click here to see environment details
Other/Misc.
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: