197 lines
7.7 KiB
Python
197 lines
7.7 KiB
Python
#
|
|
# SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
import subprocess as sp
|
|
|
|
import numpy as np
|
|
import pytest
|
|
import tensorrt as trt
|
|
|
|
from polygraphy import util, mod
|
|
from polygraphy.backend.onnx import GsFromOnnx, OnnxFromBytes
|
|
from polygraphy.backend.onnxrt import OnnxrtRunner, SessionFromOnnx
|
|
from polygraphy.backend.pluginref import PluginRefRunner
|
|
from polygraphy.backend.trt import (
|
|
EngineFromNetwork,
|
|
NetworkFromOnnxBytes,
|
|
TrtRunner,
|
|
network_from_onnx_bytes,
|
|
)
|
|
from polygraphy.backend.trt.util import get_all_tensors
|
|
from polygraphy.comparator import (
|
|
Comparator,
|
|
CompareFunc,
|
|
DataLoader,
|
|
IterationResult,
|
|
PostprocessFunc,
|
|
RunResults,
|
|
)
|
|
from polygraphy.exception import PolygraphyException
|
|
from tests.models.meta import ONNX_MODELS
|
|
|
|
build_torch = lambda a, **kwargs: util.array.to_torch(np.array(a, **kwargs))
|
|
|
|
|
|
class TestComparator:
|
|
def test_warmup_runs(self):
|
|
onnx_loader = ONNX_MODELS["identity"].loader
|
|
runner = OnnxrtRunner(SessionFromOnnx(onnx_loader))
|
|
run_results = Comparator.run([runner], warm_up=2)
|
|
assert len(run_results[runner.name]) == 1
|
|
|
|
def test_list_as_data_loader(self):
|
|
onnx_loader = ONNX_MODELS["identity"].loader
|
|
runner = OnnxrtRunner(SessionFromOnnx(onnx_loader), name="onnx_runner")
|
|
|
|
data = [{"x": np.ones((1, 1, 2, 2), dtype=np.float32)}] * 2
|
|
run_results = Comparator.run([runner], data_loader=data)
|
|
iter_results = run_results["onnx_runner"]
|
|
assert len(iter_results) == 2
|
|
for actual, expected in zip(iter_results, data):
|
|
assert np.all(actual["y"] == expected["x"])
|
|
|
|
def test_generator_as_data_loader(self):
|
|
onnx_loader = ONNX_MODELS["identity"].loader
|
|
runner = OnnxrtRunner(SessionFromOnnx(onnx_loader), name="onnx_runner")
|
|
|
|
def data():
|
|
for feed_dict in [{"x": np.ones((1, 1, 2, 2), dtype=np.float32)}] * 2:
|
|
yield feed_dict
|
|
|
|
run_results = Comparator.run([runner], data_loader=data())
|
|
iter_results = run_results["onnx_runner"]
|
|
assert len(iter_results) == 2
|
|
for actual, expected in zip(iter_results, data()):
|
|
assert np.all(actual["y"] == expected["x"])
|
|
|
|
def test_multiple_runners(self):
|
|
onnx_bytes = ONNX_MODELS["identity"].loader()
|
|
build_onnxrt_session = SessionFromOnnx(onnx_bytes)
|
|
load_engine = EngineFromNetwork(NetworkFromOnnxBytes(onnx_bytes))
|
|
gs_graph = GsFromOnnx(OnnxFromBytes(onnx_bytes))
|
|
|
|
runners = [
|
|
OnnxrtRunner(build_onnxrt_session),
|
|
PluginRefRunner(gs_graph),
|
|
TrtRunner(load_engine),
|
|
]
|
|
|
|
run_results = Comparator.run(runners)
|
|
compare_func = CompareFunc.simple(check_shapes=True)
|
|
assert bool(Comparator.compare_accuracy(run_results, compare_func=compare_func))
|
|
assert len(list(run_results.values())[0]) == 1 # Default number of iterations
|
|
|
|
def test_postprocess(self):
|
|
onnx_loader = ONNX_MODELS["identity"].loader
|
|
run_results = Comparator.run([OnnxrtRunner(SessionFromOnnx(onnx_loader))])
|
|
# Output shape is (1, 1, 2, 2)
|
|
postprocessed = Comparator.postprocess(
|
|
run_results, postprocess_func=PostprocessFunc.top_k(k=(1, -1))
|
|
)
|
|
for _, results in postprocessed.items():
|
|
for result in results:
|
|
for _, output in result.items():
|
|
assert output.shape == (1, 1, 2, 1)
|
|
|
|
def test_errors_do_not_hang(self):
|
|
# Should error because interface is not implemented correctly.
|
|
class FakeRunner:
|
|
def __init__(self):
|
|
self.name = "fake"
|
|
|
|
runners = [FakeRunner()]
|
|
with pytest.raises(PolygraphyException):
|
|
Comparator.run(runners, use_subprocess=True, subprocess_polling_interval=1)
|
|
|
|
def test_segfault_does_not_hang(self):
|
|
def raise_called_process_error():
|
|
class FakeSegfault(sp.CalledProcessError):
|
|
pass
|
|
|
|
raise FakeSegfault(-11, ["simulate", "segfault"])
|
|
|
|
runners = [TrtRunner(EngineFromNetwork(raise_called_process_error))]
|
|
with pytest.raises(PolygraphyException):
|
|
Comparator.run(runners, use_subprocess=True, subprocess_polling_interval=1)
|
|
|
|
def test_multirun_outputs_are_different(self):
|
|
onnx_loader = ONNX_MODELS["identity"].loader
|
|
runner = TrtRunner(EngineFromNetwork(NetworkFromOnnxBytes(onnx_loader)))
|
|
run_results = Comparator.run([runner], data_loader=DataLoader(iterations=2))
|
|
|
|
iteration0 = run_results[runner.name][0]
|
|
iteration1 = run_results[runner.name][1]
|
|
for name in iteration0.keys():
|
|
assert util.array.any(iteration0[name] != iteration1[name])
|
|
|
|
@pytest.mark.parametrize("array_type", [np.array, build_torch])
|
|
def test_validate_nan(self, array_type):
|
|
run_results = RunResults()
|
|
run_results["fake-runner"] = [
|
|
IterationResult(outputs={"x": array_type(np.nan)})
|
|
]
|
|
assert not Comparator.validate(run_results)
|
|
|
|
@pytest.mark.parametrize("array_type", [np.array, build_torch])
|
|
def test_validate_inf(self, array_type):
|
|
run_results = RunResults()
|
|
run_results["fake-runner"] = [
|
|
IterationResult(outputs={"x": array_type(np.inf)})
|
|
]
|
|
assert not Comparator.validate(run_results, check_inf=True)
|
|
|
|
def test_dim_param_trt_onnxrt(self):
|
|
load_onnx_bytes = ONNX_MODELS["dim_param"].loader
|
|
build_onnxrt_session = SessionFromOnnx(load_onnx_bytes)
|
|
load_engine = EngineFromNetwork(NetworkFromOnnxBytes(load_onnx_bytes))
|
|
|
|
runners = [
|
|
OnnxrtRunner(build_onnxrt_session),
|
|
TrtRunner(load_engine),
|
|
]
|
|
|
|
run_results = Comparator.run(runners)
|
|
compare_func = CompareFunc.simple(check_shapes=True)
|
|
assert bool(Comparator.compare_accuracy(run_results, compare_func=compare_func))
|
|
assert len(list(run_results.values())[0]) == 1 # Default number of iterations
|
|
|
|
@pytest.mark.skipif(
|
|
mod.version(trt.__version__) < mod.version("10.0"),
|
|
reason="Feature not present before 10.0",
|
|
)
|
|
def test_debug_tensors(self):
|
|
model = ONNX_MODELS["identity"]
|
|
builder, network, parser = network_from_onnx_bytes(model.loader)
|
|
tensor_map = get_all_tensors(network)
|
|
network.mark_debug(tensor_map["x"])
|
|
load_engine = EngineFromNetwork((builder, network, parser))
|
|
runners = [TrtRunner(load_engine)]
|
|
data = [{"x": np.ones((1, 1, 2, 2), dtype=np.float32)}]
|
|
run_results = Comparator.run(runners, data_loader=data)
|
|
for iteration_list in run_results.values():
|
|
# There should be 2 outputs, debug tensor "x" and output "y"
|
|
assert len(list(iteration_list[0].items())) == 2
|
|
run_results["fake-runner"] = [
|
|
IterationResult(
|
|
outputs={
|
|
"x": np.ones((1, 1, 2, 2), dtype=np.float32),
|
|
"y": np.ones((1, 1, 2, 2), dtype=np.float32),
|
|
}
|
|
)
|
|
]
|
|
compare_func = CompareFunc.simple(check_shapes=True)
|
|
assert bool(Comparator.compare_accuracy(run_results, compare_func=compare_func))
|