-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
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
[morpheus-refactor] Move morpheus source to python/morpheus #1836
[morpheus-refactor] Move morpheus source to python/morpheus #1836
Conversation
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, my main question is, are in-place python installs still supported? How does it work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
That is a good question. The install is per-functional block. For eg. if you were setting up a dev env it would look something like this -
|
Tested with - 1. configure cmake with -DMORPHEUS_BUILD_DOCS=ON 2. cmake --build build --target morpheus_docs Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
This is to reflect the new directory structure python/morpheus Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
1 similar comment
/ok to test |
This may need to re-evaluated as config needs to run accross all the python modules Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
6f4300f
to
268f2ec
Compare
/ok to test |
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
This change is being done to resolve these errors - ************* Module setup python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_message -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_message -> morpheus.messages.message_meta -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_inference_message -> morpheus.messages.message_meta -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_tensor_message -> morpheus.messages.message_meta -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_ae_message -> morpheus.messages.multi_message -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_tensor_message -> morpheus.messages.memory.tensor_memory -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.memory.inference_memory -> morpheus.messages.memory.tensor_memory -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.memory.response_memory -> morpheus.messages.memory.tensor_memory -> morpheus.messages.message_base) (cyclic-import) python/morpheus/setup.py:1:0: R0401: Cyclic import (morpheus.messages -> morpheus.messages.multi_response_message -> morpheus.messages.multi_tensor_message -> morpheus.messages.message_meta -> morpheus.messages.message_base) (cyclic-import) Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
/ok to test |
1 similar comment
/ok to test |
/merge |
Description
This is the first PR to update the source layout. It moves the morpheus source code to a new sub-tree that will allow breaking out morpheus functional blocks from the morpheus-base -
By Submitting this PR I confirm: