-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[microNPU] Add unary elementwise operator infrastructure with ABS
* Added unary elementwise ABS legalization support and tests * Added unary_elementwise Relay to TIR lowering and tests * Added TIR to Vela translation and tests * Added codegen tests Co-authored-by: Rishabh Jain <[email protected]>
- Loading branch information
Showing
17 changed files
with
1,142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
python/tvm/relay/backend/contrib/ethosu/op/unary_elementwise.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you 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. | ||
# pylint: disable=unused-argument | ||
"""Relay operator for unary elementwise operations for Arm(R) Ethos(TM)-U NPU""" | ||
import tvm | ||
from tvm.relay.op import _make | ||
from tvm.topi.generic import schedule_injective | ||
from tvm.relay.op.op import OpStrategy | ||
from tvm.relay.op import strategy as _strategy | ||
|
||
from ..te import unary_elementwise_compute | ||
|
||
|
||
def _extract_ethosu_unary_elementwise_params(attrs, args): | ||
"""Get the parameters necessary to construct a ethosu_unary_elementwise compute TE | ||
from a ethosu_unary_elementwise Relay call.""" | ||
ifm = args[0] | ||
lut = args[1] | ||
operator_type = attrs.operator_type | ||
ifm_scale = attrs.ifm_scale | ||
ifm_zero_point = attrs.ifm_zero_point | ||
ofm_scale = attrs.ofm_scale | ||
ofm_zero_point = attrs.ofm_zero_point | ||
ofm_channels = attrs.ofm_channels | ||
activation = attrs.activation | ||
clip_min = attrs.clip_min | ||
clip_max = attrs.clip_max | ||
ifm_layout = attrs.ifm_layout | ||
ofm_layout = attrs.ofm_layout | ||
|
||
return ( | ||
ifm, | ||
lut, | ||
operator_type, | ||
ifm_scale, | ||
ifm_zero_point, | ||
ofm_scale, | ||
ofm_zero_point, | ||
ofm_channels, | ||
activation, | ||
clip_min, | ||
clip_max, | ||
ifm_layout, | ||
ofm_layout, | ||
) | ||
|
||
|
||
@tvm.ir.register_op_attr("contrib.ethosu.unary_elementwise", "FTVMCompute") | ||
def create_ethosu_unary_elementwise_compute(attrs, args, out_type): | ||
"""Create an ethosu_unary_elementwise compute op.""" | ||
params = _extract_ethosu_unary_elementwise_params(attrs, args) | ||
op = unary_elementwise_compute(*params) | ||
return [op] | ||
|
||
|
||
@tvm.ir.register_op_attr("contrib.ethosu.unary_elementwise", "FTVMStrategy") | ||
def unary_elementwise_strategy_ethosu(attrs, inputs, out_type, target): | ||
strategy = OpStrategy() | ||
strategy.add_implementation( | ||
create_ethosu_unary_elementwise_compute, | ||
_strategy.wrap_topi_schedule(schedule_injective), | ||
name="ethosu_unary_elementwise", | ||
) | ||
return strategy | ||
|
||
|
||
def ethosu_unary_elementwise( | ||
ifm: tvm.relay.Expr, | ||
lut: tvm.relay.Expr, | ||
operator_type: str, | ||
ifm_scale: float, | ||
ifm_zero_point: int, | ||
ofm_scale: float, | ||
ofm_zero_point: int, | ||
ofm_channels: int, | ||
activation: str = "NONE", | ||
clip_min: int = 0, | ||
clip_max: int = 0, | ||
ifm_layout: str = "NHWC", | ||
ofm_layout: str = "NHWC", | ||
) -> tvm.relay.Call: | ||
"""This is a quantized unary elementwise operation as supported by the | ||
NPU. It accepts either NHWC or NHCWB16 format for the input data. | ||
Parameters | ||
---------- | ||
ifm : tvm.relay.Expr | ||
The Input Feature Map tensor (IFM). | ||
lut : tvm.relay.Expr | ||
The look-up table values to use if activation = "LUT". | ||
operator_type: str | ||
The type of the unary elementwise operator. | ||
"ABS" | ||
ifm_scale : float | ||
The quantization scale for the Input Feature Map tensor. | ||
ifm_zero_point : int | ||
The quantization zero point for the Input Feature Map tensor. | ||
ofm_scale : float | ||
The quantization scale for the Output Feature Map tensor. | ||
ofm_zero_point : int | ||
The quantization zero point for the Output Feature Map tensor. | ||
ofm_channels : int | ||
The number of OFM channels. | ||
activation : str, optional | ||
The activation function to use. | ||
"NONE" - no activation function. | ||
"CLIP" - clip the output between clip_min and clip_max. | ||
"TANH" - tanh activation function. | ||
"SIGMOID" - sigmoid activation function. | ||
"LUT" - use a look-up table to perform the activation function. | ||
clip_min : int, optional | ||
The minimum clipping value if activation = "CLIP". | ||
clip_max : int, optional | ||
The maximum clipping value if activation = "CLIP". | ||
ifm_layout : str, optional | ||
The layout of the Input Feature Map tensor. Can be "NHWC" or "NHCWB16". | ||
ofm_layout : str, optional | ||
The layout of the Output Feature Map tensor. Can be "NHWC" or "NHCWB16". | ||
Returns | ||
------- | ||
out : tvm.relay.Call | ||
A call to the ethosu_binary_elementwise op. | ||
""" | ||
return _make.ethosu_unary_elementwise( | ||
ifm, | ||
lut, | ||
operator_type, | ||
ifm_scale, | ||
ifm_zero_point, | ||
ofm_scale, | ||
ofm_zero_point, | ||
ofm_channels, | ||
activation, | ||
clip_min, | ||
clip_max, | ||
ifm_layout, | ||
ofm_layout, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
119 changes: 119 additions & 0 deletions
119
python/tvm/relay/backend/contrib/ethosu/te/unary_elementwise.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you 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. | ||
# pylint: disable=invalid-name,unused-argument | ||
"""Tensor Expressions for unary_elementwise for the NPU""" | ||
|
||
from tvm import te | ||
from .dma import dma_ofm_compute, dma_ifm_compute | ||
|
||
|
||
def unary_elementwise_compute( | ||
ifm: te.Tensor, | ||
lut: te.Tensor, | ||
operator_type: str, | ||
ifm_scale: float, | ||
ifm_zero_point: int, | ||
ofm_scale: float, | ||
ofm_zero_point: int, | ||
ofm_channels: int, | ||
activation: str, | ||
clip_min: int, | ||
clip_max: int, | ||
ifm_layout: str, | ||
ofm_layout: str, | ||
) -> te.Tensor: | ||
"""A compute operator representing the capabilities of unary_elementwise for the NPU. | ||
Parameters | ||
---------- | ||
ifm : te.Tensor | ||
The Input Feature Map tensor (IFM). | ||
lut : te.Tensor | ||
The look-up table values to use if activation = "LUT". | ||
operator_type: str | ||
The type of the unary elementwise operator. | ||
"ABS" | ||
ifm_scale : float | ||
The quantization scale for the Input Feature Map tensor. | ||
ifm_zero_point : int | ||
The quantization zero point for the Input Feature Map tensor. | ||
ofm_scale : float | ||
The quantization scale for the Output Feature Map tensor. | ||
ofm_zero_point : int | ||
The quantization zero point for the Output Feature Map tensor. | ||
ofm_channels : int | ||
The number of OFM channels. | ||
activation : str | ||
The activation function to use. | ||
"NONE" - no activation function. | ||
"CLIP" - clip the output between clip_min and clip_max. | ||
"TANH" - tanh activation function. | ||
"SIGMOID" - sigmoid activation function. | ||
"LUT" - use a look-up table to perform the activation function. | ||
clip_min : int | ||
The minimum clipping value if activation = "CLIP". | ||
clip_max : int | ||
The maximum clipping value if activation = "CLIP". | ||
ifm_layout : str, optional | ||
The layout of the Input Feature Map tensor. Can be "NHWC" or "NHCWB16". | ||
ofm_layout : str, optional | ||
The layout of the Output Feature Map tensor. Can be "NHWC" or "NHCWB16". | ||
Returns | ||
------- | ||
te.Tensor | ||
The OFM tensor. | ||
""" | ||
assert ifm.shape[0] == 1 | ||
assert ifm_layout in {"NHWC", "NHCWB16"} | ||
assert ofm_layout in {"NHWC", "NHCWB16"} | ||
|
||
# Changing the ifm and ofm scale to conform with that expected by Vela API | ||
ofm_scale = ifm_scale / ofm_scale | ||
ifm_scale = 1.0 | ||
|
||
# Compute operation for the IFM DMA pipeline | ||
dmaed_ifm = dma_ifm_compute( | ||
ifm, ifm_layout, ifm_zero_point, ifm_scale, ofm_channels, (0, 0, 0, 0) | ||
) | ||
|
||
# Unary elementwise compute operation | ||
ofm_height = dmaed_ifm.shape[1] | ||
ofm_width = dmaed_ifm.shape[2] | ||
|
||
unary_elementwise_attrs = { | ||
"op": "ethosu_unary_elementwise", | ||
"operator_type": operator_type, | ||
"activation": activation, | ||
"clip_min": clip_min, | ||
"clip_max": clip_max, | ||
} | ||
|
||
operators = {"ABS": te.abs} | ||
|
||
unary_elementwise = te.compute( | ||
(1, ofm_height, ofm_width, ofm_channels), | ||
lambda nn, hh, ww, cc: operators[operator_type]( | ||
dmaed_ifm(nn, hh, ww, cc).astype(ifm.dtype) | ||
), | ||
name="ethosu_unary_elementwise", | ||
attrs=unary_elementwise_attrs, | ||
) | ||
|
||
# Compute operation for the OFM DMA pipeline | ||
return dma_ofm_compute(unary_elementwise, ofm_layout, ofm_zero_point, ofm_scale, ofm_channels) |
Oops, something went wrong.