Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/conda/recipes/morpheus-libs/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ outputs:
- mrc {{ minor_version }}
- nlohmann_json 3.11.*
- pip
- pybind11-stubgen 0.10.5
- pybind11-stubgen 2.4.2
- python {{ python }}
- rapidjson 1.1.0
- scikit-build 0.17.6
Expand Down Expand Up @@ -215,7 +215,7 @@ outputs:
- cython 3.0.*
- glog >=0.7.1,<0.8
- pip
- pybind11-stubgen 0.10.5
- pybind11-stubgen 2.4.2
- python {{ python }}
- rapidjson 1.1.0
- scikit-build 0.17.6
Expand Down
2 changes: 1 addition & 1 deletion ci/conda/recipes/morpheus/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ outputs:
- mrc {{ minor_version }}
- nlohmann_json 3.11.*
- pip
- pybind11-stubgen 0.10.5
- pybind11-stubgen 2.4.2
- python {{ python }}
- rapidjson 1.1.0
- rdma-core >=48 # Needed for DOCA.
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ dependencies:
- pkg-config=0.29
- pluggy=1.3
- pre-commit
- pybind11-stubgen=0.10.5
- pybind11-stubgen=2.4.2
- pydantic
- pylibcudf=24.10
- pylint=3.0.3
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/dev_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies:
- pkg-config=0.29
- pluggy=1.3
- pre-commit
- pybind11-stubgen=0.10.5
- pybind11-stubgen=2.4.2
- pydantic
- pylibcudf=24.10
- pylint=3.0.3
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ dependencies:
- libzlib >=1.3.1,<2
- mrc=25.02
- nlohmann_json=3.11
- pybind11-stubgen=0.10.5
- pybind11-stubgen=2.4.2
- pylibcudf=24.10
- rapidjson=1.1.0
- rdma-core>=48 # Needed for DOCA.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
list(APPEND CMAKE_MESSAGE_CONTEXT "pass_thru_cpp_stage")

morpheus_add_pybind11_module(pass_thru_cpp
MODULE_ROOT
${CMAKE_CURRENT_SOURCE_DIR}
SOURCE_FILES
"pass_thru.cpp"
INCLUDE_DIRS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
from __future__ import annotations
import src.simple_cpp_stage._lib.pass_thru_cpp
import typing
import morpheus._lib.messages
import mrc.core.segment

__all__ = [
"PassThruStage"
]


__all__ = ['PassThruStage']
class PassThruStage(mrc.core.segment.SegmentObject):
def __init__(self, builder: mrc.core.segment.Builder, name: str) -> None: ...
pass
def __init__(self, builder: mrc.core.segment.Builder, name: str) -> None:
...
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
list(APPEND CMAKE_MESSAGE_CONTEXT "rabbitmq_cpp_stage")

morpheus_add_pybind11_module(rabbitmq_cpp_stage
MODULE_ROOT
${CMAKE_CURRENT_SOURCE_DIR}
SOURCE_FILES
"rabbitmq_source.cpp"
INCLUDE_DIRS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
from __future__ import annotations
import src.rabbitmq_cpp_stage._lib.rabbitmq_cpp_stage
import typing
import datetime
import morpheus._lib.messages
import mrc.core.segment

__all__ = [
"RabbitMQSourceStage"
]


__all__ = ['RabbitMQSourceStage']
class RabbitMQSourceStage(mrc.core.segment.SegmentObject):
def __init__(self, builder: mrc.core.segment.Builder, name: str, host: str, exchange: str, exchange_type: str = 'fanout', queue_name: str = '', poll_interval: datetime.timedelta = datetime.timedelta(microseconds=100000)) -> None: ...
pass
def __init__(self, builder: mrc.core.segment.Builder, name: str, host: str, exchange: str, exchange_type: str = 'fanout', queue_name: str = '', poll_interval: datetime.timedelta = datetime.timedelta(microseconds=100000)) -> None:
...
Loading