We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e6bd7 commit 6422746Copy full SHA for 6422746
reinstall.sh
@@ -149,7 +149,8 @@ trtllm() {
149
build
150
fi
151
152
- pip install --no-cache-dir $WHEELS_DIR/tensorrt_llm*.whl --extra-index-url https://pypi.nvidia.com || true
+ pip install --no-cache-dir $WHEELS_DIR/tensorrt_llm*.whl --extra-index-url https://pypi.nvidia.com &&
153
+ sed -i '57d' /usr/local/lib/python3.12/dist-packages/torch_tensorrt/dynamo/conversion/custom_ops_converters.py || true
154
155
}
156
tests/export/test_tensorrt_lazy_compiler.py
@@ -17,6 +17,7 @@
17
import tempfile
18
import unittest
19
from unittest.mock import MagicMock, patch
20
+
21
import pytest
22
import torch.nn as nn
23
0 commit comments