morpheus.stages.inference.triton_inference_stage.TritonInferenceWorker

class TritonInferenceWorker(inf_queue, c, model_name, server_url, force_convert_inputs, input_mapping=None, output_mapping=None, use_shared_memory=False, needs_logits=False)[source]

Bases: morpheus.stages.inference.inference_stage.InferenceWorker

Inference worker class for all Triton inference server requests.

Parameters
inf_queue : morpheus.utils.producer_consumer_queue.ProducerConsumerQueue

Inference queue.

c : morpheus.config.Config

Pipeline configuration instance.

model_name

Name of the model specifies which model can handle the inference requests that are sent to Triton inference server.

server_url

Triton server gRPC URL including the port.

force_convert_inputs: bool

Whether to convert the inputs to the type specified by Triton. This will happen automatically if no data would be lost in the conversion (i.e., float -> double). Set this to True to convert the input even if data would be lost (i.e., double -> float).

inout_mapping

Dictionary used to map pipeline input/output names to Triton input/output names. Use this if the Morpheus names do not match the model.

use_shared_memory: bool, default = False

Whether to use CUDA Shared IPC Memory for transferring data to Triton. Using CUDA IPC reduces network transfer time but requires that Morpheus and Triton are located on the same machine.

needs_logits

Determines whether a logits calculation is needed for the value returned by the Triton inference response.

Attributes
needs_logits

Methods

build_output_message(x) Create initial inference response message with result values initialized to zero.
calc_output_dims(x) Calculates the dimensions of the inference output message data given an input message.
init() This function instantiate triton client and memory allocation for inference input and output.
process(batch, callback) This function sends batch of events as a requests to Triton inference server using triton client API.
stop() Override this function to stop the inference workers or carry out any additional cleanups.
supports_cpp_node
build_output_message(x)[source]

Create initial inference response message with result values initialized to zero. Results will be set in message as each inference mini-batch is processed.

Parameters
x : morpheus.pipeline.messages.MultiInferenceMessage

Batch of inference messages.

Returns
morpheus.pipeline.messages.MultiResponseMessage

Response message with probabilities calculated from inference results.

calc_output_dims(x)[source]

Calculates the dimensions of the inference output message data given an input message.

Parameters
x : morpheus.pipeline.messages.MultiInferenceMessage

Pipeline inference input batch before splitting into smaller inference batches.

Returns
typing.Tuple

Output dimensions of response.

init()[source]

This function instantiate triton client and memory allocation for inference input and output.

process(batch, callback)[source]

This function sends batch of events as a requests to Triton inference server using triton client API.

Parameters
batch : morpheus.pipeline.messages.MultiInferenceMessage

Mini-batch of inference messages.

callback : morpheus.pipeline.messages.TensorMemory

Callback to set the values for the inference response.

stop()[source]

Override this function to stop the inference workers or carry out any additional cleanups.

Previous morpheus.stages.inference.triton_inference_stage.TritonInferenceStage
Next morpheus.stages.input
© Copyright 2024, NVIDIA. Last updated on Apr 25, 2024.