chore: import upstream snapshot with attribution
Docker Image CI / build-ubuntu2004 (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:36:55 +08:00
commit c8a779b1bb
1887 changed files with 3245738 additions and 0 deletions
@@ -0,0 +1,17 @@
#
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# 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.
#
from polygraphy.backend.pluginref.runner import *
@@ -0,0 +1,102 @@
#
# 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.
#
from polygraphy import mod
from polygraphy.logger import G_LOGGER
np = mod.lazy_import("numpy")
gs = mod.lazy_import("onnx_graphsurgeon")
OP_REGISTRY = {} # Dict[str, Callable]: Maps op names to reference implementations
def register(op):
"""
Registers a function as the reference implementation for a given op.
Args:
op (str): The name of the op for which to register this function.
"""
def register_impl(func):
def wrapped_func(node, intermediate_tensors):
inputs = []
for inp in node.inputs:
if inp.is_empty(): # Optional input
inputs.append(None)
elif isinstance(inp, gs.Constant):
inputs.append(inp.values)
elif inp.name in intermediate_tensors:
inputs.append(intermediate_tensors[inp.name])
else:
G_LOGGER.internal_error(
f"Input: {inp.name} was not found in intermediate tensors and is not a constant.\nNote: Intermediate tensors include: {list(intermediate_tensors.keys())}"
)
outputs = func(node.attrs, *inputs)
if len(outputs) != len(node.outputs):
G_LOGGER.internal_error(
f"{op} reference implementation returned the wrong number of outputs.\nNote: Expected {len(node.outputs)} but recevied {len(outputs)}"
)
return {
out_tensor.name: out for out_tensor, out in zip(node.outputs, outputs)
}
OP_REGISTRY[op] = wrapped_func
return wrapped_func
return register_impl
@register("Identity")
def run_identity(attrs, x):
return [x]
@register("InstanceNormalization")
def run_instancenorm(attrs, x, weights, bias):
epsilon = attrs.get("epsilon", 1.0e-5)
rank = len(x.shape)
axis = tuple(range(2, rank))
mean = np.mean(x, axis=axis, keepdims=True)
var = np.var(x, axis=axis, keepdims=True)
# Weights and bias needs to be broadcasted to shape of X. C dimension should be a wildcard.
broadcast_shape = [-1] + [1] * (rank - 2)
weights = weights.reshape(broadcast_shape)
bias = bias.reshape(broadcast_shape)
res = weights * (x - mean) / np.sqrt(var + epsilon) + bias
return [res]
@register("MeanVarianceNormalization")
def run_meanvarnorm(attrs, x):
epsilon = 1.0e-9
axes = attrs.get("axes", [0, 2, 3])
axes = tuple(axes)
data_mean = np.mean(x, axis=axes, keepdims=True)
data_mean_squared = np.power(data_mean, 2)
data_squared = np.power(x, 2)
data_squared_mean = np.mean(data_squared, axis=axes, keepdims=True)
std = np.sqrt(data_squared_mean - data_mean_squared)
res = (x - data_mean) / (std + epsilon)
return [res]
@@ -0,0 +1,2 @@
numpy
onnx_graphsurgeon
@@ -0,0 +1,83 @@
#
# 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 copy
import time
from collections import OrderedDict
from polygraphy import mod, util
from polygraphy.backend.base import BaseRunner
from polygraphy.backend.pluginref.references import OP_REGISTRY
from polygraphy.logger import G_LOGGER
np = mod.lazy_import("numpy")
onnx_util = mod.lazy_import("polygraphy.backend.onnx.util")
@mod.export()
class PluginRefRunner(BaseRunner):
"""
Runs inference using custom CPU reference implementations
"""
def __init__(self, graph, name=None):
"""
Args:
graph (Union[onnx_graphsurgeon.Graph, Callable() -> onnx_graphsurgeon.Graph]):
An ONNX-GraphSurgeon graph or a callable that returns one.
name (str):
The human-readable name prefix to use for this runner.
A runner count and timestamp will be appended to this prefix.
"""
super().__init__(name=name, prefix="pluginref-runner")
self._graph = graph
@util.check_called_by("activate")
def activate_impl(self):
self.graph, _ = util.invoke_if_callable(self._graph)
@util.check_called_by("get_input_metadata")
def get_input_metadata_impl(self):
return onnx_util.meta_from_gs_tensors(self.graph.inputs)
@util.check_called_by("infer")
def infer_impl(self, feed_dict):
start = time.time()
intermediate_tensors = copy.copy(feed_dict)
for node in self.graph.nodes:
if node.op not in OP_REGISTRY:
G_LOGGER.critical(
f"Op: {node.op} does not have a reference implementation registered!"
)
intermediate_tensors.update(
OP_REGISTRY[node.op](node, intermediate_tensors)
)
outputs = OrderedDict()
for out in self.graph.outputs:
outputs[out.name] = intermediate_tensors[out.name]
end = time.time()
self.inference_time = end - start
return outputs
@util.check_called_by("deactivate")
def deactivate_impl(self):
del self.graph