Skip to content

Commit e3007cf

Browse files
committed
Add task validator
1 parent 03a3103 commit e3007cf

File tree

21 files changed

+89
-157
lines changed

21 files changed

+89
-157
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
Unable to import quantization op. Please install modelopt library (https://github.com/NVIDIA/TensorRT-Model-Optimizer?tab=readme-ov-file#installation) to add support for compiling quantized models
2+
TensorRT-LLM is not installed. Please install TensorRT-LLM or set TRTLLM_PLUGINS_PATH to the directory containing libnvinfer_plugin_tensorrt_llm.so to use converters for torch.distributed ops
3+
[10/22/2025-06:29:03] [TRT] [W] Functionality provided through tensorrt.plugin module is experimental.
4+
Traceback (most recent call last):
5+
File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
6+
return _run_code(code, main_globals, None,
7+
File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
8+
exec(code, run_globals)
9+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 576, in <module>
10+
main(args=args)
11+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 523, in main
12+
assert os.path.isdir(args.model_path)
13+
AssertionError
14+
Unable to import quantization op. Please install modelopt library (https://github.com/NVIDIA/TensorRT-Model-Optimizer?tab=readme-ov-file#installation) to add support for compiling quantized models
15+
TensorRT-LLM is not installed. Please install TensorRT-LLM or set TRTLLM_PLUGINS_PATH to the directory containing libnvinfer_plugin_tensorrt_llm.so to use converters for torch.distributed ops
16+
[10/22/2025-06:29:10] [TRT] [W] Functionality provided through tensorrt.plugin module is experimental.
17+
Traceback (most recent call last):
18+
File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
19+
return _run_code(code, main_globals, None,
20+
File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
21+
exec(code, run_globals)
22+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 576, in <module>
23+
main(args=args)
24+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 523, in main
25+
assert os.path.isdir(args.model_path)
26+
AssertionError
27+
Unable to import quantization op. Please install modelopt library (https://github.com/NVIDIA/TensorRT-Model-Optimizer?tab=readme-ov-file#installation) to add support for compiling quantized models
28+
TensorRT-LLM is not installed. Please install TensorRT-LLM or set TRTLLM_PLUGINS_PATH to the directory containing libnvinfer_plugin_tensorrt_llm.so to use converters for torch.distributed ops
29+
[10/22/2025-06:29:18] [TRT] [W] Functionality provided through tensorrt.plugin module is experimental.
30+
Traceback (most recent call last):
31+
File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
32+
return _run_code(code, main_globals, None,
33+
File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
34+
exec(code, run_globals)
35+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 576, in <module>
36+
main(args=args)
37+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 523, in main
38+
assert os.path.isdir(args.model_path)
39+
AssertionError
40+
Unable to import quantization op. Please install modelopt library (https://github.com/NVIDIA/TensorRT-Model-Optimizer?tab=readme-ov-file#installation) to add support for compiling quantized models
41+
TensorRT-LLM is not installed. Please install TensorRT-LLM or set TRTLLM_PLUGINS_PATH to the directory containing libnvinfer_plugin_tensorrt_llm.so to use converters for torch.distributed ops
42+
[10/22/2025-06:29:26] [TRT] [W] Functionality provided through tensorrt.plugin module is experimental.
43+
Traceback (most recent call last):
44+
File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
45+
return _run_code(code, main_globals, None,
46+
File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
47+
exec(code, run_globals)
48+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 576, in <module>
49+
main(args=args)
50+
File "/work/GraphNet/graph_net/torch/test_compiler.py", line 523, in main
51+
assert os.path.isdir(args.model_path)
52+
AssertionError
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="_add_batch_dim"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="_log_api_usage_once"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="_remove_batch_dim"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="_set_grad_enabled"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="_vmap_decrement_nesting"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="_vmap_increment_nesting"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh

todo_works/unstable_api_to_stable_api/avg_pool2d/avg_pool2d_files.txt

Lines changed: 0 additions & 150 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="fft_fftn"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export DISALLOWED_UNSTABLE_API="fft_irfft"
2+
bash todo_works/unstable_api_to_stable_api/test_unstable_to_stable.sh

0 commit comments

Comments
 (0)