Hi all,
I am receiving the message Error: Can’t initialize nvrm channel over and over in the terminal. I can’t reproduce exactly what causes that error message but it appeared while trying out the TensorFlow/TensorRT Models on the Jetson TX2. Specifially, while running the jupyter notebook detection.ipynb. Even after stopping the Jupyter Notebook, the error message is printed in the original terminal window. Ctrl+C stops it only for a few seconds. My current fix is using a new terminal window but I wanted to find out what the problem is.
Regarding the jupyter notebook, I get the following output after running this block:
trt_graph = trt.create_inference_graph(
input_graph_def=frozen_graph,
outputs=output_names,
max_batch_size=1,
max_workspace_size_bytes=1 << 25,
precision_mode='FP16',
minimum_segment_size=50
)
Does anyone have an idea, what the problem might be?