Skip to content
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

Update developer documentation to reflect new compute_schema changes #1341

Merged
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
7fd1c4e
Remove unused method
dagardner-nv Nov 3, 2023
fcac874
Update out of date comments and variable names
dagardner-nv Nov 3, 2023
19acdf0
Don't run milvus tests by default, running 'pytest --run_slow' now ta…
dagardner-nv Oct 17, 2023
8e82ba3
Consolidate milvus fixtures
dagardner-nv Oct 17, 2023
5c9379b
Set an explicit storage dir for milvus, ensuring that we always get a…
dagardner-nv Oct 17, 2023
5513dad
Defining MORPHEUS_MILVUS_URI env var avoids milvus startup, milvus_se…
dagardner-nv Oct 18, 2023
e849600
Add _get_random_port method
dagardner-nv Nov 3, 2023
2c48a07
Use new tuple type-hint
dagardner-nv Nov 4, 2023
f79475a
Update code snippets, todo: Updating text
dagardner-nv Nov 4, 2023
bbde0a8
Update to reflect recent changes [no ci]
dagardner-nv Nov 6, 2023
e906235
Use newer tuple type hint
dagardner-nv Nov 6, 2023
42e1388
Update docs for RecipientFeaturesStage
dagardner-nv Nov 6, 2023
4c49102
wip [no ci]
dagardner-nv Nov 6, 2023
65ae66e
wip [no ci]
dagardner-nv Nov 6, 2023
e289018
wip [no ci]
dagardner-nv Nov 6, 2023
9d71d75
Set log level to INFO to ensure monitor output [no ci]
dagardner-nv Nov 6, 2023
efedc35
wip [no ci]
dagardner-nv Nov 6, 2023
077af27
Fix long-standing bug in pass-thru example, the C++ impl only works w…
dagardner-nv Nov 6, 2023
04f2396
Update the example to include two instances of the PassThruStage, the…
dagardner-nv Nov 6, 2023
a154a04
WIP [no ci]
dagardner-nv Nov 6, 2023
f65d8b4
Remove uneeded return statement
dagardner-nv Nov 6, 2023
fa7738c
WIP [no ci]
dagardner-nv Nov 6, 2023
e776419
WIP [no ci]
dagardner-nv Nov 6, 2023
ff76387
No need to rename the stage
dagardner-nv Nov 6, 2023
d2ee5a7
WIP [no ci]
dagardner-nv Nov 6, 2023
e9b7d44
Remove pylint directive from docs [no ci]
dagardner-nv Nov 6, 2023
70d16a5
Remove unused imports and formatting [no ci]
dagardner-nv Nov 6, 2023
480c86c
formatting [no ci]
dagardner-nv Nov 6, 2023
3e91fb7
WIP [no ci]
dagardner-nv Nov 6, 2023
27135a9
Formatting [no ci]
dagardner-nv Nov 7, 2023
442da9b
WIP [no ci]
dagardner-nv Nov 7, 2023
73b3797
WIP
dagardner-nv Nov 7, 2023
4d74e25
WIP [no ci]
dagardner-nv Nov 7, 2023
e090091
Ensure the module instance always receives a unique name by prependin…
dagardner-nv Nov 7, 2023
fcc8844
Add missing module config to builder.load_module calls, update module…
dagardner-nv Nov 7, 2023
affa261
Update to use a simple df of floats
dagardner-nv Nov 7, 2023
e3546ff
wip: [no ci]
dagardner-nv Nov 7, 2023
5231c81
Formatting [no ci]
dagardner-nv Nov 7, 2023
15fad5a
formatting [no ci]
dagardner-nv Nov 7, 2023
b6bd48f
formatting [no ci]
dagardner-nv Nov 7, 2023
d5f9201
Update code snippets to match api changes [no ci]
dagardner-nv Nov 7, 2023
50293db
Add end-to-end test for the code snippets used in the python_modules …
dagardner-nv Nov 7, 2023
262800f
Formatting [no ci]
dagardner-nv Nov 7, 2023
9bf6508
Make task names lower-case to be consistent [no ci]
dagardner-nv Nov 7, 2023
8d3336d
Rename out_streams to out_nodes
dagardner-nv Nov 7, 2023
b9290af
Fix path to renamed script
dagardner-nv Nov 7, 2023
57ecb18
Fix import order
dagardner-nv Nov 7, 2023
943e8b7
Merge branch 'branch-23.11' of github.com:nv-morpheus/Morpheus into d…
dagardner-nv Nov 17, 2023
7163dba
Merge branch 'branch-23.11' into david-23.11-docs-1252
dagardner-nv Nov 22, 2023
c8801b8
Merge branch 'branch-23.11' into david-23.11-docs-1252
dagardner-nv Nov 22, 2023
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
Prev Previous commit
Next Next commit
Use newer tuple type hint
  • Loading branch information
dagardner-nv committed Nov 6, 2023
commit e9062351e3347660e4b4ed7a2a8d00f2cc49f6ec
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import typing

import mrc
from mrc.core import operators as ops

Expand Down Expand Up @@ -65,7 +63,7 @@ def __init__(self, config: Config, sep_token: str = '[SEP]'):
def name(self) -> str:
return "recipient-features"

def accepted_types(self) -> typing.Tuple:
def accepted_types(self) -> tuple:
return (MessageMeta, )

def supports_cpp_node(self) -> bool:
Expand Down