Skip to content

Commit cc64e68

Browse files
committed
Add tanh op to XNNPACK backend
1 parent 173e41f commit cc64e68

File tree

10 files changed

+143
-0
lines changed

10 files changed

+143
-0
lines changed

backends/xnnpack/operators/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@
4949
op_static_constant_pad,
5050
op_static_resize_bilinear_2d,
5151
op_sub,
52+
op_tanh,
5253
op_to_copy,
5354
)

backends/xnnpack/operators/op_tanh.py

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Copyright (c) Meta Platforms, Inc. and affiliates.
2+
# All rights reserved.
3+
#
4+
# This source code is licensed under the BSD-style license found in the
5+
# LICENSE file in the root directory of this source tree.
6+
7+
from typing import Dict
8+
9+
import torch
10+
from executorch.backends.xnnpack.operators.node_visitor import (
11+
NodeVisitor,
12+
register_node_visitor,
13+
)
14+
from executorch.backends.xnnpack.serialization.xnnpack_graph_schema import (
15+
XNNGraph,
16+
XNNTanh,
17+
XNode,
18+
)
19+
from executorch.backends.xnnpack.utils.utils import get_input_node
20+
21+
22+
@register_node_visitor
23+
class LogVisitor(NodeVisitor):
24+
target = "aten.tanh.default"
25+
26+
def __init__(self, *args) -> None:
27+
super().__init__(*args)
28+
29+
def define_node(
30+
self,
31+
node: torch.fx.Node,
32+
xnn_graph: XNNGraph,
33+
vals_to_ids: Dict[torch.fx.Node, int],
34+
debug_handle: int,
35+
) -> None:
36+
self.define_nodes_tensor_inputs_outputs(node, xnn_graph, vals_to_ids)
37+
38+
# input
39+
input_id = vals_to_ids[get_input_node(node, 0)]
40+
41+
# output
42+
output_id = vals_to_ids[node]
43+
44+
ser_node = XNode(
45+
xnode_union=XNNTanh(
46+
input_id=input_id,
47+
output_id=output_id,
48+
flags=0,
49+
),
50+
debug_handle=debug_handle,
51+
)
52+
xnn_graph.xnodes.append(ser_node)

backends/xnnpack/partition/config/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
SoftmaxConfig,
4949
SquareRootConfig,
5050
SubConfig,
51+
TanhConfig,
5152
ToDimOrderCopyConfig,
5253
UpsampleBilinear2dConfig,
5354
)
@@ -98,6 +99,7 @@
9899
PreluConfig,
99100
ReciprocalSquareRootConfig,
100101
ReLUConfig,
102+
TanhConfig,
101103
ToDimOrderCopyConfig,
102104
# SDPAConfig, TODO: D60553559: preserving SDPA for fairseq fails
103105
SigmoidConfig,

backends/xnnpack/partition/config/generic_node_configs.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,11 @@ class LogConfig(GenericNodePartitionerConfig):
363363
def supported_precision_types(self) -> List[ConfigPrecisionType]:
364364
return [ConfigPrecisionType.FP32]
365365

366+
class TanhConfig(GenericNodePartitionerConfig):
367+
target_name = "tanh.default"
368+
369+
def supported_precision_types(self) -> List[ConfigPrecisionType]:
370+
return [ConfigPrecisionType.FP32]
366371

367372
class ToDimOrderCopyConfig(GenericNodePartitionerConfig):
368373
target_name = "_to_dim_order_copy.default"

backends/xnnpack/partition/configs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
exir_ops.edge.aten.addmm.default, # TODO(T163877189) add constraint for addmm
6666
exir_ops.edge.aten.rsqrt.default,
6767
exir_ops.edge.aten.log.default,
68+
exir_ops.edge.aten.tanh.default,
6869
]
6970

7071
SUPPORTED_MODULES = [

backends/xnnpack/runtime/XNNCompiler.cpp

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1448,6 +1448,36 @@ Error defineLogNode(
14481448
return Error::Ok;
14491449
}
14501450

1451+
/*
1452+
Define serialized tanh node into the subgraph, using the remapped ids
1453+
to map the serialized ids, to the new ids generated when defining the
1454+
tensor value
1455+
*/
1456+
Error defineTanhNode(
1457+
xnn_subgraph_t subgraph_ptr,
1458+
const std::unordered_map<uint32_t, uint32_t>& remapped_ids,
1459+
const NodePtr node,
1460+
const fb_xnnpack::XNNGraph* graph) noexcept {
1461+
MAYBE_UNUSED(graph);
1462+
1463+
auto graph_node = node->xnode_union_as_XNNTanh();
1464+
1465+
xnn_status status = xnn_define_tanh(
1466+
subgraph_ptr,
1467+
remapped_ids.at(graph_node->input_id()),
1468+
remapped_ids.at(graph_node->output_id()),
1469+
graph_node->flags());
1470+
1471+
ET_CHECK_OR_RETURN_ERROR(
1472+
status == xnn_status_success,
1473+
Internal,
1474+
"Failed to create tanh node %i with code: %s",
1475+
node->debug_handle(),
1476+
xnn_status_to_string(status));
1477+
1478+
return Error::Ok;
1479+
}
1480+
14511481
/*
14521482
Define serialized ceiling node into the subgraph, using the remapped ids
14531483
to map the serialized ids, to the new ids generated when defining the
@@ -2012,6 +2042,7 @@ DefineNodeFunc getDefineNodeFunc(fb_xnnpack::XNodeUnion nodeType) {
20122042
_DEFINE(Hardswish)
20132043
_DEFINE(LeakyReLU)
20142044
_DEFINE(Log)
2045+
_DEFINE(Tanh)
20152046
_DEFINE(Maximum)
20162047
_DEFINE(Negate)
20172048
_DEFINE(Square)

backends/xnnpack/serialization/runtime_schema.fbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ union XNodeUnion {
140140
XNNConvTranspose2d: _XNNNodeConv,
141141
XNNReciprocalSquareRoot: _XNNNode1x1,
142142
XNNLog: _XNNNode1x1,
143+
XNNTanh: _XNNNode1x1,
143144
}
144145

145146
union XValueUnion {

backends/xnnpack/serialization/schema.fbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ union XNodeUnion {
136136
XNNConvTranspose2d: _XNNNodeConv,
137137
XNNReciprocalSquareRoot: _XNNNode1x1,
138138
XNNLog: _XNNNode1x1,
139+
XNNTanh: _XNNNode1x1,
139140
}
140141

141142
union XValueUnion {

backends/xnnpack/serialization/xnnpack_graph_schema.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,11 @@ class XNNLog(XNNNode1x1):
314314
pass
315315

316316

317+
@dataclass
318+
class XNNTanh(XNNNode1x1):
319+
pass
320+
321+
317322
@dataclass
318323
class XNNMaximum(XNNNode2x1):
319324
pass
@@ -385,6 +390,7 @@ class XNNScaledDotProductAttention:
385390
XNNBatchMatrixMultiply,
386391
XNNReciprocalSquareRoot,
387392
XNNLog,
393+
XNNTanh,
388394
]
389395

390396

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Copyright (c) Meta Platforms, Inc. and affiliates.
2+
# All rights reserved.
3+
#
4+
# This source code is licensed under the BSD-style license found in the
5+
# LICENSE file in the root directory of this source tree.
6+
7+
import unittest
8+
9+
import torch
10+
from executorch.backends.xnnpack.test.tester import Tester
11+
12+
13+
class TestTanh(unittest.TestCase):
14+
def setUp(self):
15+
torch._dynamo.reset()
16+
17+
class Tanh(torch.nn.Module):
18+
def __init__(self):
19+
super().__init__()
20+
21+
def forward(self, x):
22+
return torch.tanh(x)
23+
24+
def run_tanh_test(self, inputs):
25+
(
26+
Tester(self.Tanh(), inputs)
27+
.export()
28+
.check_count({"torch.ops.aten.tanh.default": 1})
29+
.to_edge_transform_and_lower()
30+
.check_count({"torch.ops.higher_order.executorch_call_delegate": 1})
31+
.check_not(["executorch_exir_dialects_edge__ops_aten_tanh_default"])
32+
.to_executorch()
33+
.serialize()
34+
.run_method_and_compare_outputs()
35+
)
36+
37+
def test_fp16_tanh(self):
38+
inputs = (torch.randn(20).to(torch.float16),)
39+
self.run_tanh_test(inputs)
40+
41+
def test_fp32_tanh(self):
42+
inputs = (torch.randn(20),)
43+
self.run_tanh_test(inputs)

0 commit comments

Comments
 (0)