This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 0d48361 [REALY][OP] fix typo (#5315)
0d48361 is described below
commit 0d48361a0b284dd312c05a6cde08799ede52eedc
Author: windclarion <[email protected]>
AuthorDate: Mon Apr 13 22:55:33 2020 +0800
[REALY][OP] fix typo (#5315)
Signed-off-by: windclarion <[email protected]>
---
python/tvm/relay/op/strategy/generic.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/tvm/relay/op/strategy/generic.py
b/python/tvm/relay/op/strategy/generic.py
index 0a26080..c3eadce 100644
--- a/python/tvm/relay/op/strategy/generic.py
+++ b/python/tvm/relay/op/strategy/generic.py
@@ -118,7 +118,7 @@ def wrap_compute_softmax(topi_compute):
def softmax_strategy(attrs, inputs, out_type, target):
"""softmax generic strategy"""
strategy = _op.OpStrategy()
- strategy.add_implemenation(
+ strategy.add_implementation(
wrap_compute_softmax(topi.nn.softmax),
wrap_topi_schedule(topi.generic.schedule_softmax),
name="softmax.generic")