You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the process of migrating our 22.11 pipeline to 23.07, we noticed that results are now different. Upon investigating we found the source of the discrepancy was the output the PreprocessFILStage, both the C++ and Python versions. We noticed in 22.11, the cpp PreprocessFILStage creates a c_contiguous array, while the python version creates a f_continguous array. This can be resolved in the 23.07 Python version (preprocess_fil_stage.py) by changing:
data = cp.asarray([df.to](http://df.to/)_cupy())
to
data = cp.ascontiguousarray([df.to_cupy()).
Issue still exists when running pipeline in 23.11.
Minimum reproducible example
No response
Relevant log output
No response
Full env printout
No response
Other/Misc.
No response
Code of Conduct
I agree to follow Morpheus' Code of Conduct
I have searched the open bugs and have found no duplicates for this bug report
The text was updated successfully, but these errors were encountered:
Version
23.11
Which installation method(s) does this occur on?
Docker
Describe the bug.
In the process of migrating our 22.11 pipeline to 23.07, we noticed that results are now different. Upon investigating we found the source of the discrepancy was the output the
PreprocessFILStage
, both the C++ and Python versions. We noticed in 22.11, the cpp PreprocessFILStage creates a c_contiguous array, while the python version creates a f_continguous array. This can be resolved in the 23.07 Python version (preprocess_fil_stage.py
) by changing:to
Issue still exists when running pipeline in 23.11.
Minimum reproducible example
No response
Relevant log output
No response
Full env printout
No response
Other/Misc.
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: