From 6c9aa1516babe351587a6a8660a3fe9440c9edf1 Mon Sep 17 00:00:00 2001 From: David Gardner <96306125+dagardner-nv@users.noreply.github.com> Date: Tue, 4 Apr 2023 09:09:30 -0700 Subject: [PATCH] Misc Documentation fixes for 23.03 (#840) * Fix accidental parsing of license headers (fixes #837 ) * Exclude auto-generated namespaces prefixed with '@' from doxygen (fixes #836) * Fix documentation for `CHECK_TRITON` and `CHECK_KAFKA` macros (fixes #835) Authors: - David Gardner (https://github.com/dagardner-nv) Approvers: - Pete MacKinnon (https://github.com/pdmack) - Devin Robison (https://github.com/drobison00) URL: https://github.com/nv-morpheus/Morpheus/pull/840 --- docs/source/conf.py | 2 +- .../include/morpheus/io/data_loader_registry.hpp | 2 +- morpheus/_lib/include/morpheus/io/deserializers.hpp | 2 +- morpheus/_lib/include/morpheus/io/serializers.hpp | 2 +- morpheus/_lib/include/morpheus/messages/control.hpp | 2 +- .../morpheus/messages/memory/inference_memory.hpp | 2 +- .../messages/memory/inference_memory_fil.hpp | 2 +- .../messages/memory/inference_memory_nlp.hpp | 2 +- .../morpheus/messages/memory/response_memory.hpp | 2 +- .../messages/memory/response_memory_probs.hpp | 2 +- .../morpheus/messages/memory/tensor_memory.hpp | 2 +- morpheus/_lib/include/morpheus/messages/meta.hpp | 2 +- morpheus/_lib/include/morpheus/messages/multi.hpp | 2 +- .../include/morpheus/messages/multi_inference.hpp | 2 +- .../morpheus/messages/multi_inference_fil.hpp | 2 +- .../morpheus/messages/multi_inference_nlp.hpp | 2 +- .../include/morpheus/messages/multi_response.hpp | 2 +- .../morpheus/messages/multi_response_probs.hpp | 2 +- .../_lib/include/morpheus/messages/multi_tensor.hpp | 2 +- .../include/morpheus/modules/data_loader_module.hpp | 4 ++-- .../_lib/include/morpheus/objects/data_table.hpp | 2 +- .../_lib/include/morpheus/objects/dev_mem_info.hpp | 2 +- morpheus/_lib/include/morpheus/objects/dtype.hpp | 2 +- .../include/morpheus/objects/factory_registry.hpp | 4 ++-- .../_lib/include/morpheus/objects/fiber_queue.hpp | 2 +- .../_lib/include/morpheus/objects/file_types.hpp | 2 +- .../_lib/include/morpheus/objects/filter_source.hpp | 2 +- .../include/morpheus/objects/memory_descriptor.hpp | 2 +- .../morpheus/objects/mutable_table_ctx_mgr.hpp | 2 +- .../include/morpheus/objects/python_data_table.hpp | 2 +- .../_lib/include/morpheus/objects/rmm_tensor.hpp | 2 +- .../_lib/include/morpheus/objects/table_info.hpp | 2 +- .../include/morpheus/objects/table_info_data.hpp | 2 +- morpheus/_lib/include/morpheus/objects/tensor.hpp | 2 +- .../_lib/include/morpheus/objects/tensor_object.hpp | 2 +- .../include/morpheus/objects/wrapped_tensor.hpp | 2 +- .../include/morpheus/stages/add_classification.hpp | 2 +- .../_lib/include/morpheus/stages/add_scores.hpp | 2 +- .../morpheus/stages/add_scores_stage_base.hpp | 2 +- .../_lib/include/morpheus/stages/deserialize.hpp | 2 +- .../_lib/include/morpheus/stages/file_source.hpp | 2 +- .../include/morpheus/stages/filter_detection.hpp | 2 +- .../_lib/include/morpheus/stages/kafka_source.hpp | 2 +- .../_lib/include/morpheus/stages/preallocate.hpp | 2 +- .../_lib/include/morpheus/stages/preprocess_fil.hpp | 2 +- .../_lib/include/morpheus/stages/preprocess_nlp.hpp | 2 +- morpheus/_lib/include/morpheus/stages/serialize.hpp | 2 +- .../include/morpheus/stages/triton_inference.hpp | 2 +- .../_lib/include/morpheus/stages/write_to_file.hpp | 2 +- morpheus/_lib/include/morpheus/types.hpp | 2 +- .../_lib/include/morpheus/utilities/cudf_util.hpp | 2 +- .../_lib/include/morpheus/utilities/cupy_util.hpp | 2 +- .../_lib/include/morpheus/utilities/matx_util.hpp | 2 +- .../_lib/include/morpheus/utilities/python_util.hpp | 2 +- .../_lib/include/morpheus/utilities/stage_util.hpp | 2 +- .../_lib/include/morpheus/utilities/string_util.hpp | 2 +- .../_lib/include/morpheus/utilities/table_util.hpp | 2 +- .../_lib/include/morpheus/utilities/tensor_util.hpp | 2 +- morpheus/_lib/src/io/data_loader.cpp | 2 +- morpheus/_lib/src/io/data_loader_registry.cpp | 4 ++-- morpheus/_lib/src/io/deserializers.cpp | 2 +- morpheus/_lib/src/io/serializers.cpp | 2 +- morpheus/_lib/src/messages/control.cpp | 2 +- .../_lib/src/messages/memory/inference_memory.cpp | 2 +- .../src/messages/memory/inference_memory_fil.cpp | 2 +- .../src/messages/memory/inference_memory_nlp.cpp | 2 +- .../_lib/src/messages/memory/response_memory.cpp | 2 +- .../src/messages/memory/response_memory_probs.cpp | 2 +- morpheus/_lib/src/messages/memory/tensor_memory.cpp | 2 +- morpheus/_lib/src/messages/meta.cpp | 2 +- morpheus/_lib/src/messages/multi.cpp | 2 +- morpheus/_lib/src/messages/multi_inference.cpp | 2 +- morpheus/_lib/src/messages/multi_inference_fil.cpp | 2 +- morpheus/_lib/src/messages/multi_inference_nlp.cpp | 2 +- morpheus/_lib/src/messages/multi_response.cpp | 2 +- morpheus/_lib/src/messages/multi_response_probs.cpp | 2 +- morpheus/_lib/src/messages/multi_tensor.cpp | 2 +- morpheus/_lib/src/modules/data_loader_module.cpp | 2 +- morpheus/_lib/src/objects/data_table.cpp | 2 +- morpheus/_lib/src/objects/dev_mem_info.cpp | 2 +- morpheus/_lib/src/objects/dtype.cpp | 2 +- morpheus/_lib/src/objects/fiber_queue.cpp | 2 +- morpheus/_lib/src/objects/file_types.cpp | 2 +- morpheus/_lib/src/objects/memory_descriptor.cpp | 4 ++-- morpheus/_lib/src/objects/mutable_table_ctx_mgr.cpp | 2 +- morpheus/_lib/src/objects/python_data_table.cpp | 2 +- morpheus/_lib/src/objects/rmm_tensor.cpp | 2 +- morpheus/_lib/src/objects/table_info.cpp | 2 +- morpheus/_lib/src/objects/table_info_data.cpp | 2 +- morpheus/_lib/src/objects/tensor.cpp | 2 +- morpheus/_lib/src/objects/tensor_object.cpp | 2 +- morpheus/_lib/src/objects/wrapped_tensor.cpp | 2 +- morpheus/_lib/src/python_modules/common.cpp | 2 +- morpheus/_lib/src/python_modules/messages.cpp | 2 +- morpheus/_lib/src/python_modules/modules.cpp | 2 +- morpheus/_lib/src/python_modules/stages.cpp | 2 +- morpheus/_lib/src/stages/add_classification.cpp | 2 +- morpheus/_lib/src/stages/add_scores.cpp | 2 +- morpheus/_lib/src/stages/add_scores_stage_base.cpp | 2 +- morpheus/_lib/src/stages/deserialize.cpp | 2 +- morpheus/_lib/src/stages/file_source.cpp | 2 +- morpheus/_lib/src/stages/filter_detection.cpp | 2 +- morpheus/_lib/src/stages/kafka_source.cpp | 13 ++++++++++++- morpheus/_lib/src/stages/preprocess_fil.cpp | 2 +- morpheus/_lib/src/stages/preprocess_nlp.cpp | 2 +- morpheus/_lib/src/stages/serialize.cpp | 2 +- morpheus/_lib/src/stages/triton_inference.cpp | 12 +++++++++++- morpheus/_lib/src/stages/write_to_file.cpp | 2 +- morpheus/_lib/src/utilities/cudf_util.cpp | 4 ++-- morpheus/_lib/src/utilities/cupy_util.cpp | 2 +- morpheus/_lib/src/utilities/matx_util.cu | 2 +- morpheus/_lib/src/utilities/python_util.cpp | 2 +- morpheus/_lib/src/utilities/string_util.cpp | 2 +- morpheus/_lib/src/utilities/table_util.cpp | 2 +- morpheus/_lib/src/utilities/tensor_util.cpp | 2 +- morpheus/_lib/tests/test_cuda.cu | 2 +- morpheus/_lib/tests/test_dev_mem_info.cpp | 2 +- morpheus/_lib/tests/test_main.cpp | 2 +- morpheus/_lib/tests/test_matx_util.cpp | 2 +- morpheus/_lib/tests/test_morpheus.cpp | 2 +- morpheus/_lib/tests/test_morpheus.hpp | 2 +- morpheus/_lib/tests/test_tensor.cpp | 2 +- 122 files changed, 148 insertions(+), 127 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 4a5c925e2a..09dc69959c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -114,7 +114,7 @@ BUILTIN_STL_SUPPORT = YES DOT_IMAGE_FORMAT = svg EXCLUDE_PATTERNS = */tests/* */include/nvtext/* */__pycache__/* - EXCLUDE_SYMBOLS = "@85" "cudf*" "py::literals" "RdKafka" "mrc*" "std*" + EXCLUDE_SYMBOLS = "@*" "cudf*" "py::literals" "RdKafka" "mrc*" "std*" EXTENSION_MAPPING = cu=C++ cuh=C++ EXTRACT_ALL = YES FILE_PATTERNS = *.c *.cc *.cpp *.h *.hpp *.cu *.cuh *.md diff --git a/morpheus/_lib/include/morpheus/io/data_loader_registry.hpp b/morpheus/_lib/include/morpheus/io/data_loader_registry.hpp index 57df5e3a81..ccfaa4b3ef 100644 --- a/morpheus/_lib/include/morpheus/io/data_loader_registry.hpp +++ b/morpheus/_lib/include/morpheus/io/data_loader_registry.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/io/deserializers.hpp b/morpheus/_lib/include/morpheus/io/deserializers.hpp index cda149cc18..8426033977 100644 --- a/morpheus/_lib/include/morpheus/io/deserializers.hpp +++ b/morpheus/_lib/include/morpheus/io/deserializers.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/io/serializers.hpp b/morpheus/_lib/include/morpheus/io/serializers.hpp index 3372fdcb0b..e31e22ef46 100644 --- a/morpheus/_lib/include/morpheus/io/serializers.hpp +++ b/morpheus/_lib/include/morpheus/io/serializers.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/control.hpp b/morpheus/_lib/include/morpheus/messages/control.hpp index ebec332879..d9f3ece88c 100644 --- a/morpheus/_lib/include/morpheus/messages/control.hpp +++ b/morpheus/_lib/include/morpheus/messages/control.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/memory/inference_memory.hpp b/morpheus/_lib/include/morpheus/messages/memory/inference_memory.hpp index 7fedfb2903..a7f8686e2b 100644 --- a/morpheus/_lib/include/morpheus/messages/memory/inference_memory.hpp +++ b/morpheus/_lib/include/morpheus/messages/memory/inference_memory.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/memory/inference_memory_fil.hpp b/morpheus/_lib/include/morpheus/messages/memory/inference_memory_fil.hpp index 6000941d40..2ab9a2f82e 100644 --- a/morpheus/_lib/include/morpheus/messages/memory/inference_memory_fil.hpp +++ b/morpheus/_lib/include/morpheus/messages/memory/inference_memory_fil.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/memory/inference_memory_nlp.hpp b/morpheus/_lib/include/morpheus/messages/memory/inference_memory_nlp.hpp index a98186a95c..12be7a4370 100644 --- a/morpheus/_lib/include/morpheus/messages/memory/inference_memory_nlp.hpp +++ b/morpheus/_lib/include/morpheus/messages/memory/inference_memory_nlp.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/memory/response_memory.hpp b/morpheus/_lib/include/morpheus/messages/memory/response_memory.hpp index d697c877bf..3eb34fb145 100644 --- a/morpheus/_lib/include/morpheus/messages/memory/response_memory.hpp +++ b/morpheus/_lib/include/morpheus/messages/memory/response_memory.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/memory/response_memory_probs.hpp b/morpheus/_lib/include/morpheus/messages/memory/response_memory_probs.hpp index d7554860f4..787e746456 100644 --- a/morpheus/_lib/include/morpheus/messages/memory/response_memory_probs.hpp +++ b/morpheus/_lib/include/morpheus/messages/memory/response_memory_probs.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/memory/tensor_memory.hpp b/morpheus/_lib/include/morpheus/messages/memory/tensor_memory.hpp index 4615d3c24b..9972fef5fd 100644 --- a/morpheus/_lib/include/morpheus/messages/memory/tensor_memory.hpp +++ b/morpheus/_lib/include/morpheus/messages/memory/tensor_memory.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/meta.hpp b/morpheus/_lib/include/morpheus/messages/meta.hpp index 4ea7ddba27..12368744e2 100644 --- a/morpheus/_lib/include/morpheus/messages/meta.hpp +++ b/morpheus/_lib/include/morpheus/messages/meta.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi.hpp b/morpheus/_lib/include/morpheus/messages/multi.hpp index bba59c5495..8817ce4cd8 100644 --- a/morpheus/_lib/include/morpheus/messages/multi.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi_inference.hpp b/morpheus/_lib/include/morpheus/messages/multi_inference.hpp index fc17d690e0..2ceb8ac73c 100644 --- a/morpheus/_lib/include/morpheus/messages/multi_inference.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi_inference.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi_inference_fil.hpp b/morpheus/_lib/include/morpheus/messages/multi_inference_fil.hpp index a5e31cfdb7..b1bdac40a7 100644 --- a/morpheus/_lib/include/morpheus/messages/multi_inference_fil.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi_inference_fil.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi_inference_nlp.hpp b/morpheus/_lib/include/morpheus/messages/multi_inference_nlp.hpp index c802516598..c4007051e2 100644 --- a/morpheus/_lib/include/morpheus/messages/multi_inference_nlp.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi_inference_nlp.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi_response.hpp b/morpheus/_lib/include/morpheus/messages/multi_response.hpp index 5a830cf73a..53dbfa047d 100644 --- a/morpheus/_lib/include/morpheus/messages/multi_response.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi_response.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi_response_probs.hpp b/morpheus/_lib/include/morpheus/messages/multi_response_probs.hpp index 0761a30192..a85ac5ad77 100644 --- a/morpheus/_lib/include/morpheus/messages/multi_response_probs.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi_response_probs.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/messages/multi_tensor.hpp b/morpheus/_lib/include/morpheus/messages/multi_tensor.hpp index 9574fba44e..b8247403eb 100644 --- a/morpheus/_lib/include/morpheus/messages/multi_tensor.hpp +++ b/morpheus/_lib/include/morpheus/messages/multi_tensor.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/modules/data_loader_module.hpp b/morpheus/_lib/include/morpheus/modules/data_loader_module.hpp index 5777d803a2..72b9b3ba8d 100644 --- a/morpheus/_lib/include/morpheus/modules/data_loader_module.hpp +++ b/morpheus/_lib/include/morpheus/modules/data_loader_module.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * @@ -47,4 +47,4 @@ class DataLoaderModule : public mrc::modules::SegmentModule, public mrc::modules DataLoader m_data_loader{}; }; #pragma GCC visibility pop -} // namespace morpheus \ No newline at end of file +} // namespace morpheus diff --git a/morpheus/_lib/include/morpheus/objects/data_table.hpp b/morpheus/_lib/include/morpheus/objects/data_table.hpp index 4517a90db3..42d3ae8d65 100644 --- a/morpheus/_lib/include/morpheus/objects/data_table.hpp +++ b/morpheus/_lib/include/morpheus/objects/data_table.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/dev_mem_info.hpp b/morpheus/_lib/include/morpheus/objects/dev_mem_info.hpp index abad4b509d..ecb54d8eb3 100644 --- a/morpheus/_lib/include/morpheus/objects/dev_mem_info.hpp +++ b/morpheus/_lib/include/morpheus/objects/dev_mem_info.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/dtype.hpp b/morpheus/_lib/include/morpheus/objects/dtype.hpp index 8000a8ab30..3f87acf838 100644 --- a/morpheus/_lib/include/morpheus/objects/dtype.hpp +++ b/morpheus/_lib/include/morpheus/objects/dtype.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/factory_registry.hpp b/morpheus/_lib/include/morpheus/objects/factory_registry.hpp index b591237412..f1c60f055b 100644 --- a/morpheus/_lib/include/morpheus/objects/factory_registry.hpp +++ b/morpheus/_lib/include/morpheus/objects/factory_registry.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * @@ -114,4 +114,4 @@ std::map(nlohmann: #pragma GCC visibility pop -} // namespace morpheus \ No newline at end of file +} // namespace morpheus diff --git a/morpheus/_lib/include/morpheus/objects/fiber_queue.hpp b/morpheus/_lib/include/morpheus/objects/fiber_queue.hpp index bcad0a9d5a..c929f12c44 100644 --- a/morpheus/_lib/include/morpheus/objects/fiber_queue.hpp +++ b/morpheus/_lib/include/morpheus/objects/fiber_queue.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/file_types.hpp b/morpheus/_lib/include/morpheus/objects/file_types.hpp index 4937a66b3e..ac38bc3dbd 100644 --- a/morpheus/_lib/include/morpheus/objects/file_types.hpp +++ b/morpheus/_lib/include/morpheus/objects/file_types.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/filter_source.hpp b/morpheus/_lib/include/morpheus/objects/filter_source.hpp index 4baa181728..a39bc4b789 100644 --- a/morpheus/_lib/include/morpheus/objects/filter_source.hpp +++ b/morpheus/_lib/include/morpheus/objects/filter_source.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/memory_descriptor.hpp b/morpheus/_lib/include/morpheus/objects/memory_descriptor.hpp index 30870fe21b..894b83f61f 100644 --- a/morpheus/_lib/include/morpheus/objects/memory_descriptor.hpp +++ b/morpheus/_lib/include/morpheus/objects/memory_descriptor.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/mutable_table_ctx_mgr.hpp b/morpheus/_lib/include/morpheus/objects/mutable_table_ctx_mgr.hpp index a21e2e09fb..ba5b14ccf0 100644 --- a/morpheus/_lib/include/morpheus/objects/mutable_table_ctx_mgr.hpp +++ b/morpheus/_lib/include/morpheus/objects/mutable_table_ctx_mgr.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/python_data_table.hpp b/morpheus/_lib/include/morpheus/objects/python_data_table.hpp index 4781ba004c..3ea3e499e4 100644 --- a/morpheus/_lib/include/morpheus/objects/python_data_table.hpp +++ b/morpheus/_lib/include/morpheus/objects/python_data_table.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/rmm_tensor.hpp b/morpheus/_lib/include/morpheus/objects/rmm_tensor.hpp index 17b498e512..5a3f48190f 100644 --- a/morpheus/_lib/include/morpheus/objects/rmm_tensor.hpp +++ b/morpheus/_lib/include/morpheus/objects/rmm_tensor.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/table_info.hpp b/morpheus/_lib/include/morpheus/objects/table_info.hpp index f8de69c6f2..0c1b57d7a1 100644 --- a/morpheus/_lib/include/morpheus/objects/table_info.hpp +++ b/morpheus/_lib/include/morpheus/objects/table_info.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/table_info_data.hpp b/morpheus/_lib/include/morpheus/objects/table_info_data.hpp index 7ee158f326..02cc115734 100644 --- a/morpheus/_lib/include/morpheus/objects/table_info_data.hpp +++ b/morpheus/_lib/include/morpheus/objects/table_info_data.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/tensor.hpp b/morpheus/_lib/include/morpheus/objects/tensor.hpp index ffe65cdf63..a9919e2283 100644 --- a/morpheus/_lib/include/morpheus/objects/tensor.hpp +++ b/morpheus/_lib/include/morpheus/objects/tensor.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/tensor_object.hpp b/morpheus/_lib/include/morpheus/objects/tensor_object.hpp index d2e6f9885c..684ef7ad08 100644 --- a/morpheus/_lib/include/morpheus/objects/tensor_object.hpp +++ b/morpheus/_lib/include/morpheus/objects/tensor_object.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/objects/wrapped_tensor.hpp b/morpheus/_lib/include/morpheus/objects/wrapped_tensor.hpp index ea4c2c04d0..befcbc3ec2 100644 --- a/morpheus/_lib/include/morpheus/objects/wrapped_tensor.hpp +++ b/morpheus/_lib/include/morpheus/objects/wrapped_tensor.hpp @@ -1,5 +1,5 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/add_classification.hpp b/morpheus/_lib/include/morpheus/stages/add_classification.hpp index 2611664ab1..88c37fb973 100644 --- a/morpheus/_lib/include/morpheus/stages/add_classification.hpp +++ b/morpheus/_lib/include/morpheus/stages/add_classification.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/add_scores.hpp b/morpheus/_lib/include/morpheus/stages/add_scores.hpp index 6ff0bf48e4..fb393a51d1 100644 --- a/morpheus/_lib/include/morpheus/stages/add_scores.hpp +++ b/morpheus/_lib/include/morpheus/stages/add_scores.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/add_scores_stage_base.hpp b/morpheus/_lib/include/morpheus/stages/add_scores_stage_base.hpp index 8f87b138d8..eae6fccbe7 100644 --- a/morpheus/_lib/include/morpheus/stages/add_scores_stage_base.hpp +++ b/morpheus/_lib/include/morpheus/stages/add_scores_stage_base.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/deserialize.hpp b/morpheus/_lib/include/morpheus/stages/deserialize.hpp index eb9ccbc799..d03a17b45f 100644 --- a/morpheus/_lib/include/morpheus/stages/deserialize.hpp +++ b/morpheus/_lib/include/morpheus/stages/deserialize.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/file_source.hpp b/morpheus/_lib/include/morpheus/stages/file_source.hpp index e76acff4f9..be39475e10 100644 --- a/morpheus/_lib/include/morpheus/stages/file_source.hpp +++ b/morpheus/_lib/include/morpheus/stages/file_source.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/filter_detection.hpp b/morpheus/_lib/include/morpheus/stages/filter_detection.hpp index cbce1e491c..04d030638e 100644 --- a/morpheus/_lib/include/morpheus/stages/filter_detection.hpp +++ b/morpheus/_lib/include/morpheus/stages/filter_detection.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/kafka_source.hpp b/morpheus/_lib/include/morpheus/stages/kafka_source.hpp index 527c836f9e..350ee7b389 100644 --- a/morpheus/_lib/include/morpheus/stages/kafka_source.hpp +++ b/morpheus/_lib/include/morpheus/stages/kafka_source.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/preallocate.hpp b/morpheus/_lib/include/morpheus/stages/preallocate.hpp index fa78a2f42d..02885a06d7 100644 --- a/morpheus/_lib/include/morpheus/stages/preallocate.hpp +++ b/morpheus/_lib/include/morpheus/stages/preallocate.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/preprocess_fil.hpp b/morpheus/_lib/include/morpheus/stages/preprocess_fil.hpp index 4e10122510..005a409bb6 100644 --- a/morpheus/_lib/include/morpheus/stages/preprocess_fil.hpp +++ b/morpheus/_lib/include/morpheus/stages/preprocess_fil.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/preprocess_nlp.hpp b/morpheus/_lib/include/morpheus/stages/preprocess_nlp.hpp index 2598670eac..6968df4a5e 100644 --- a/morpheus/_lib/include/morpheus/stages/preprocess_nlp.hpp +++ b/morpheus/_lib/include/morpheus/stages/preprocess_nlp.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/serialize.hpp b/morpheus/_lib/include/morpheus/stages/serialize.hpp index 7a5c2de4da..d566c1026d 100644 --- a/morpheus/_lib/include/morpheus/stages/serialize.hpp +++ b/morpheus/_lib/include/morpheus/stages/serialize.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/triton_inference.hpp b/morpheus/_lib/include/morpheus/stages/triton_inference.hpp index 91f8bec91e..3ffd6108a3 100644 --- a/morpheus/_lib/include/morpheus/stages/triton_inference.hpp +++ b/morpheus/_lib/include/morpheus/stages/triton_inference.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/stages/write_to_file.hpp b/morpheus/_lib/include/morpheus/stages/write_to_file.hpp index 36025c0550..d19ef4e146 100644 --- a/morpheus/_lib/include/morpheus/stages/write_to_file.hpp +++ b/morpheus/_lib/include/morpheus/stages/write_to_file.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/types.hpp b/morpheus/_lib/include/morpheus/types.hpp index 43a65aa61f..0a2ec1910e 100644 --- a/morpheus/_lib/include/morpheus/types.hpp +++ b/morpheus/_lib/include/morpheus/types.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/cudf_util.hpp b/morpheus/_lib/include/morpheus/utilities/cudf_util.hpp index e54e08f038..39d361cbb0 100644 --- a/morpheus/_lib/include/morpheus/utilities/cudf_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/cudf_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/cupy_util.hpp b/morpheus/_lib/include/morpheus/utilities/cupy_util.hpp index 208aa3363b..e7c2394d71 100644 --- a/morpheus/_lib/include/morpheus/utilities/cupy_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/cupy_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/matx_util.hpp b/morpheus/_lib/include/morpheus/utilities/matx_util.hpp index c5d95b6282..04691b3b46 100644 --- a/morpheus/_lib/include/morpheus/utilities/matx_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/matx_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/python_util.hpp b/morpheus/_lib/include/morpheus/utilities/python_util.hpp index a0b432c38a..cb725ae5d9 100644 --- a/morpheus/_lib/include/morpheus/utilities/python_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/python_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/stage_util.hpp b/morpheus/_lib/include/morpheus/utilities/stage_util.hpp index a72c3ec8f3..3e09ba5cab 100644 --- a/morpheus/_lib/include/morpheus/utilities/stage_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/stage_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/string_util.hpp b/morpheus/_lib/include/morpheus/utilities/string_util.hpp index 7064b3198f..34b7756221 100644 --- a/morpheus/_lib/include/morpheus/utilities/string_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/string_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/table_util.hpp b/morpheus/_lib/include/morpheus/utilities/table_util.hpp index 44531fb9b7..b8ea0c0070 100644 --- a/morpheus/_lib/include/morpheus/utilities/table_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/table_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/include/morpheus/utilities/tensor_util.hpp b/morpheus/_lib/include/morpheus/utilities/tensor_util.hpp index 6668302e5f..0381293d2e 100644 --- a/morpheus/_lib/include/morpheus/utilities/tensor_util.hpp +++ b/morpheus/_lib/include/morpheus/utilities/tensor_util.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/io/data_loader.cpp b/morpheus/_lib/src/io/data_loader.cpp index f6d7502289..df7c8e184e 100644 --- a/morpheus/_lib/src/io/data_loader.cpp +++ b/morpheus/_lib/src/io/data_loader.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/io/data_loader_registry.cpp b/morpheus/_lib/src/io/data_loader_registry.cpp index 3277404b6e..0bb3ac447b 100644 --- a/morpheus/_lib/src/io/data_loader_registry.cpp +++ b/morpheus/_lib/src/io/data_loader_registry.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * @@ -71,4 +71,4 @@ void LoaderRegistryProxy::register_factory_cleanup_fn(const std::string& name) } } -} // namespace morpheus \ No newline at end of file +} // namespace morpheus diff --git a/morpheus/_lib/src/io/deserializers.cpp b/morpheus/_lib/src/io/deserializers.cpp index 3ba85742a7..d6fdcd37f5 100644 --- a/morpheus/_lib/src/io/deserializers.cpp +++ b/morpheus/_lib/src/io/deserializers.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/io/serializers.cpp b/morpheus/_lib/src/io/serializers.cpp index b294bef6d9..872d594680 100644 --- a/morpheus/_lib/src/io/serializers.cpp +++ b/morpheus/_lib/src/io/serializers.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/control.cpp b/morpheus/_lib/src/messages/control.cpp index 763b95f39c..0267e4f0df 100644 --- a/morpheus/_lib/src/messages/control.cpp +++ b/morpheus/_lib/src/messages/control.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/memory/inference_memory.cpp b/morpheus/_lib/src/messages/memory/inference_memory.cpp index 353418c06e..f3e1c10cd5 100644 --- a/morpheus/_lib/src/messages/memory/inference_memory.cpp +++ b/morpheus/_lib/src/messages/memory/inference_memory.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/memory/inference_memory_fil.cpp b/morpheus/_lib/src/messages/memory/inference_memory_fil.cpp index 1c74c27965..039744295f 100644 --- a/morpheus/_lib/src/messages/memory/inference_memory_fil.cpp +++ b/morpheus/_lib/src/messages/memory/inference_memory_fil.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/memory/inference_memory_nlp.cpp b/morpheus/_lib/src/messages/memory/inference_memory_nlp.cpp index c8a4e6693b..ccbc95545c 100644 --- a/morpheus/_lib/src/messages/memory/inference_memory_nlp.cpp +++ b/morpheus/_lib/src/messages/memory/inference_memory_nlp.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/memory/response_memory.cpp b/morpheus/_lib/src/messages/memory/response_memory.cpp index ad15443a15..908ca7c247 100644 --- a/morpheus/_lib/src/messages/memory/response_memory.cpp +++ b/morpheus/_lib/src/messages/memory/response_memory.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/memory/response_memory_probs.cpp b/morpheus/_lib/src/messages/memory/response_memory_probs.cpp index ae77de0f9d..4e143bcf16 100644 --- a/morpheus/_lib/src/messages/memory/response_memory_probs.cpp +++ b/morpheus/_lib/src/messages/memory/response_memory_probs.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/memory/tensor_memory.cpp b/morpheus/_lib/src/messages/memory/tensor_memory.cpp index 6b87a04136..d6855c83cb 100644 --- a/morpheus/_lib/src/messages/memory/tensor_memory.cpp +++ b/morpheus/_lib/src/messages/memory/tensor_memory.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/meta.cpp b/morpheus/_lib/src/messages/meta.cpp index ef61d37fb6..cf48c3a6b0 100644 --- a/morpheus/_lib/src/messages/meta.cpp +++ b/morpheus/_lib/src/messages/meta.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi.cpp b/morpheus/_lib/src/messages/multi.cpp index ca1f8d7a60..3328e60f4f 100644 --- a/morpheus/_lib/src/messages/multi.cpp +++ b/morpheus/_lib/src/messages/multi.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi_inference.cpp b/morpheus/_lib/src/messages/multi_inference.cpp index 900a30e79f..7569d2a0ac 100644 --- a/morpheus/_lib/src/messages/multi_inference.cpp +++ b/morpheus/_lib/src/messages/multi_inference.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi_inference_fil.cpp b/morpheus/_lib/src/messages/multi_inference_fil.cpp index d7e1c38fdd..f582ebbc1c 100644 --- a/morpheus/_lib/src/messages/multi_inference_fil.cpp +++ b/morpheus/_lib/src/messages/multi_inference_fil.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi_inference_nlp.cpp b/morpheus/_lib/src/messages/multi_inference_nlp.cpp index d4ad6bb5e3..4b31bc11bc 100644 --- a/morpheus/_lib/src/messages/multi_inference_nlp.cpp +++ b/morpheus/_lib/src/messages/multi_inference_nlp.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi_response.cpp b/morpheus/_lib/src/messages/multi_response.cpp index 010f4cf67f..a37a041957 100644 --- a/morpheus/_lib/src/messages/multi_response.cpp +++ b/morpheus/_lib/src/messages/multi_response.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi_response_probs.cpp b/morpheus/_lib/src/messages/multi_response_probs.cpp index 2e33a370ed..b59a4f97b2 100644 --- a/morpheus/_lib/src/messages/multi_response_probs.cpp +++ b/morpheus/_lib/src/messages/multi_response_probs.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/messages/multi_tensor.cpp b/morpheus/_lib/src/messages/multi_tensor.cpp index 4828ee8346..186f6e60ab 100644 --- a/morpheus/_lib/src/messages/multi_tensor.cpp +++ b/morpheus/_lib/src/messages/multi_tensor.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/modules/data_loader_module.cpp b/morpheus/_lib/src/modules/data_loader_module.cpp index 6ab3b82e0e..74de7c7299 100644 --- a/morpheus/_lib/src/modules/data_loader_module.cpp +++ b/morpheus/_lib/src/modules/data_loader_module.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/data_table.cpp b/morpheus/_lib/src/objects/data_table.cpp index 5b7390370c..e294463cb8 100644 --- a/morpheus/_lib/src/objects/data_table.cpp +++ b/morpheus/_lib/src/objects/data_table.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/dev_mem_info.cpp b/morpheus/_lib/src/objects/dev_mem_info.cpp index 3c28618dc0..48b690d097 100644 --- a/morpheus/_lib/src/objects/dev_mem_info.cpp +++ b/morpheus/_lib/src/objects/dev_mem_info.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/dtype.cpp b/morpheus/_lib/src/objects/dtype.cpp index e3cd91bb15..fe1adbd82c 100644 --- a/morpheus/_lib/src/objects/dtype.cpp +++ b/morpheus/_lib/src/objects/dtype.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/fiber_queue.cpp b/morpheus/_lib/src/objects/fiber_queue.cpp index 170c12a6b3..ee64fdb0c0 100644 --- a/morpheus/_lib/src/objects/fiber_queue.cpp +++ b/morpheus/_lib/src/objects/fiber_queue.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/file_types.cpp b/morpheus/_lib/src/objects/file_types.cpp index c17dc44259..b99af5a3b9 100644 --- a/morpheus/_lib/src/objects/file_types.cpp +++ b/morpheus/_lib/src/objects/file_types.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/memory_descriptor.cpp b/morpheus/_lib/src/objects/memory_descriptor.cpp index 176b842aef..49753ef098 100644 --- a/morpheus/_lib/src/objects/memory_descriptor.cpp +++ b/morpheus/_lib/src/objects/memory_descriptor.cpp @@ -1,5 +1,5 @@ -/** - * SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +/* + * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/morpheus/_lib/src/objects/mutable_table_ctx_mgr.cpp b/morpheus/_lib/src/objects/mutable_table_ctx_mgr.cpp index cda9deb98e..a0cdc01ed6 100644 --- a/morpheus/_lib/src/objects/mutable_table_ctx_mgr.cpp +++ b/morpheus/_lib/src/objects/mutable_table_ctx_mgr.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/python_data_table.cpp b/morpheus/_lib/src/objects/python_data_table.cpp index fd3787ea0c..276906330a 100644 --- a/morpheus/_lib/src/objects/python_data_table.cpp +++ b/morpheus/_lib/src/objects/python_data_table.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/rmm_tensor.cpp b/morpheus/_lib/src/objects/rmm_tensor.cpp index 14d52164e5..fabfd44382 100644 --- a/morpheus/_lib/src/objects/rmm_tensor.cpp +++ b/morpheus/_lib/src/objects/rmm_tensor.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/table_info.cpp b/morpheus/_lib/src/objects/table_info.cpp index bad3d87826..07fb397a25 100644 --- a/morpheus/_lib/src/objects/table_info.cpp +++ b/morpheus/_lib/src/objects/table_info.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/table_info_data.cpp b/morpheus/_lib/src/objects/table_info_data.cpp index 96d993d2a7..8532b0d99a 100644 --- a/morpheus/_lib/src/objects/table_info_data.cpp +++ b/morpheus/_lib/src/objects/table_info_data.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/tensor.cpp b/morpheus/_lib/src/objects/tensor.cpp index fb3a5b366c..4be4af62a3 100644 --- a/morpheus/_lib/src/objects/tensor.cpp +++ b/morpheus/_lib/src/objects/tensor.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/tensor_object.cpp b/morpheus/_lib/src/objects/tensor_object.cpp index f75dcf4c3d..79ea0a0c4e 100644 --- a/morpheus/_lib/src/objects/tensor_object.cpp +++ b/morpheus/_lib/src/objects/tensor_object.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/objects/wrapped_tensor.cpp b/morpheus/_lib/src/objects/wrapped_tensor.cpp index bec689881d..474189e283 100644 --- a/morpheus/_lib/src/objects/wrapped_tensor.cpp +++ b/morpheus/_lib/src/objects/wrapped_tensor.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/python_modules/common.cpp b/morpheus/_lib/src/python_modules/common.cpp index 14e0610492..edaa53c3d2 100644 --- a/morpheus/_lib/src/python_modules/common.cpp +++ b/morpheus/_lib/src/python_modules/common.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/python_modules/messages.cpp b/morpheus/_lib/src/python_modules/messages.cpp index 80cbf5b2fb..fa62838119 100644 --- a/morpheus/_lib/src/python_modules/messages.cpp +++ b/morpheus/_lib/src/python_modules/messages.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/python_modules/modules.cpp b/morpheus/_lib/src/python_modules/modules.cpp index 673c2df289..a63bb75aa0 100644 --- a/morpheus/_lib/src/python_modules/modules.cpp +++ b/morpheus/_lib/src/python_modules/modules.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/python_modules/stages.cpp b/morpheus/_lib/src/python_modules/stages.cpp index 8e21968614..f260a85f33 100644 --- a/morpheus/_lib/src/python_modules/stages.cpp +++ b/morpheus/_lib/src/python_modules/stages.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/add_classification.cpp b/morpheus/_lib/src/stages/add_classification.cpp index a384e2aa7d..03f3ace60f 100644 --- a/morpheus/_lib/src/stages/add_classification.cpp +++ b/morpheus/_lib/src/stages/add_classification.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/add_scores.cpp b/morpheus/_lib/src/stages/add_scores.cpp index 84f6a20d53..e7d1a31c0e 100644 --- a/morpheus/_lib/src/stages/add_scores.cpp +++ b/morpheus/_lib/src/stages/add_scores.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/add_scores_stage_base.cpp b/morpheus/_lib/src/stages/add_scores_stage_base.cpp index cc75c8f8bb..67f5389439 100644 --- a/morpheus/_lib/src/stages/add_scores_stage_base.cpp +++ b/morpheus/_lib/src/stages/add_scores_stage_base.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/deserialize.cpp b/morpheus/_lib/src/stages/deserialize.cpp index 5896770107..ce88068c00 100644 --- a/morpheus/_lib/src/stages/deserialize.cpp +++ b/morpheus/_lib/src/stages/deserialize.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/file_source.cpp b/morpheus/_lib/src/stages/file_source.cpp index 7d4f2cfe44..0bceb33623 100644 --- a/morpheus/_lib/src/stages/file_source.cpp +++ b/morpheus/_lib/src/stages/file_source.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/filter_detection.cpp b/morpheus/_lib/src/stages/filter_detection.cpp index 357b798e9d..9be104c88f 100644 --- a/morpheus/_lib/src/stages/filter_detection.cpp +++ b/morpheus/_lib/src/stages/filter_detection.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/kafka_source.cpp b/morpheus/_lib/src/stages/kafka_source.cpp index 086b4c7716..1748a4ffd5 100644 --- a/morpheus/_lib/src/stages/kafka_source.cpp +++ b/morpheus/_lib/src/stages/kafka_source.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * @@ -57,6 +57,17 @@ // IWYU pragma: no_include // IWYU pragma: no_include +/** + * @addtogroup stages + * @{ + * @file + */ + +/** + * @brief Checks the error code returned by an RDKafka expression (`command`) against an `expected` code + * (usually `RdKafka::ERR_NO_ERROR`), and logs an error otherwise. + * + */ #define CHECK_KAFKA(command, expected, msg) \ { \ RdKafka::ErrorCode __code = command; \ diff --git a/morpheus/_lib/src/stages/preprocess_fil.cpp b/morpheus/_lib/src/stages/preprocess_fil.cpp index 0a27afc402..b6d6e8c824 100644 --- a/morpheus/_lib/src/stages/preprocess_fil.cpp +++ b/morpheus/_lib/src/stages/preprocess_fil.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/preprocess_nlp.cpp b/morpheus/_lib/src/stages/preprocess_nlp.cpp index 2e19f68a95..34f95aff43 100644 --- a/morpheus/_lib/src/stages/preprocess_nlp.cpp +++ b/morpheus/_lib/src/stages/preprocess_nlp.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/serialize.cpp b/morpheus/_lib/src/stages/serialize.cpp index 671cde5d2b..c1958faa47 100644 --- a/morpheus/_lib/src/stages/serialize.cpp +++ b/morpheus/_lib/src/stages/serialize.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/stages/triton_inference.cpp b/morpheus/_lib/src/stages/triton_inference.cpp index 25024a7786..9d8471db58 100644 --- a/morpheus/_lib/src/stages/triton_inference.cpp +++ b/morpheus/_lib/src/stages/triton_inference.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * @@ -58,6 +58,16 @@ #include // IWYU pragma: no_include +/** + * @addtogroup stages + * @{ + * @file + */ + +/** + * @brief Checks the status object returned by a Triton client call logging any potential errors. + * + */ #define CHECK_TRITON(method) ::InferenceClientStage__check_triton_errors(method, #method, __FILE__, __LINE__); namespace { diff --git a/morpheus/_lib/src/stages/write_to_file.cpp b/morpheus/_lib/src/stages/write_to_file.cpp index 9bb8e961d3..23355578c5 100644 --- a/morpheus/_lib/src/stages/write_to_file.cpp +++ b/morpheus/_lib/src/stages/write_to_file.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/utilities/cudf_util.cpp b/morpheus/_lib/src/utilities/cudf_util.cpp index b0b745efde..1fcd898434 100644 --- a/morpheus/_lib/src/utilities/cudf_util.cpp +++ b/morpheus/_lib/src/utilities/cudf_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * @@ -27,7 +27,7 @@ #include #include // Needed for logging #include // for move -/** +/* * **************This needs to come last.******************** * A note to posterity: We only ever want to have a single place where cudf_helpers_api.h is included in any * translation unit. diff --git a/morpheus/_lib/src/utilities/cupy_util.cpp b/morpheus/_lib/src/utilities/cupy_util.cpp index 18833af887..93459b5052 100644 --- a/morpheus/_lib/src/utilities/cupy_util.cpp +++ b/morpheus/_lib/src/utilities/cupy_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/utilities/matx_util.cu b/morpheus/_lib/src/utilities/matx_util.cu index 4f438d40ff..c8ded8ed2a 100644 --- a/morpheus/_lib/src/utilities/matx_util.cu +++ b/morpheus/_lib/src/utilities/matx_util.cu @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/utilities/python_util.cpp b/morpheus/_lib/src/utilities/python_util.cpp index 8499225ba1..ac080867b5 100644 --- a/morpheus/_lib/src/utilities/python_util.cpp +++ b/morpheus/_lib/src/utilities/python_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/utilities/string_util.cpp b/morpheus/_lib/src/utilities/string_util.cpp index 5073a195ff..4d52517de0 100644 --- a/morpheus/_lib/src/utilities/string_util.cpp +++ b/morpheus/_lib/src/utilities/string_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/utilities/table_util.cpp b/morpheus/_lib/src/utilities/table_util.cpp index 8ba1d616d3..c6cb832772 100644 --- a/morpheus/_lib/src/utilities/table_util.cpp +++ b/morpheus/_lib/src/utilities/table_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/src/utilities/tensor_util.cpp b/morpheus/_lib/src/utilities/tensor_util.cpp index 9f9632a791..876dcd043e 100644 --- a/morpheus/_lib/src/utilities/tensor_util.cpp +++ b/morpheus/_lib/src/utilities/tensor_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_cuda.cu b/morpheus/_lib/tests/test_cuda.cu index 33cda73903..47c9d43f54 100644 --- a/morpheus/_lib/tests/test_cuda.cu +++ b/morpheus/_lib/tests/test_cuda.cu @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_dev_mem_info.cpp b/morpheus/_lib/tests/test_dev_mem_info.cpp index 8f713a30bc..1228038a03 100644 --- a/morpheus/_lib/tests/test_dev_mem_info.cpp +++ b/morpheus/_lib/tests/test_dev_mem_info.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_main.cpp b/morpheus/_lib/tests/test_main.cpp index 19f2c73c13..69c430859d 100644 --- a/morpheus/_lib/tests/test_main.cpp +++ b/morpheus/_lib/tests/test_main.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_matx_util.cpp b/morpheus/_lib/tests/test_matx_util.cpp index d2b9c6d9a7..ddef030127 100644 --- a/morpheus/_lib/tests/test_matx_util.cpp +++ b/morpheus/_lib/tests/test_matx_util.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_morpheus.cpp b/morpheus/_lib/tests/test_morpheus.cpp index 5d3e55d30a..c4526c6e7e 100644 --- a/morpheus/_lib/tests/test_morpheus.cpp +++ b/morpheus/_lib/tests/test_morpheus.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2018-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_morpheus.hpp b/morpheus/_lib/tests/test_morpheus.hpp index e015fd0b79..e7e4d66981 100644 --- a/morpheus/_lib/tests/test_morpheus.hpp +++ b/morpheus/_lib/tests/test_morpheus.hpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2018-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * diff --git a/morpheus/_lib/tests/test_tensor.cpp b/morpheus/_lib/tests/test_tensor.cpp index dcc505a4f6..88edf87414 100644 --- a/morpheus/_lib/tests/test_tensor.cpp +++ b/morpheus/_lib/tests/test_tensor.cpp @@ -1,4 +1,4 @@ -/** +/* * SPDX-FileCopyrightText: Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: Apache-2.0 *