From eac559b962a1303dbd8f0c39ec1de7f7c91d5d40 Mon Sep 17 00:00:00 2001 From: Xingjian Shi Date: Tue, 20 Oct 2020 03:39:32 -0700 Subject: [PATCH] Update batch_matmul.py --- python/tvm/topi/cuda/batch_matmul.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tvm/topi/cuda/batch_matmul.py b/python/tvm/topi/cuda/batch_matmul.py index 55a5057b4b66a..34359bd46f1be 100644 --- a/python/tvm/topi/cuda/batch_matmul.py +++ b/python/tvm/topi/cuda/batch_matmul.py @@ -140,7 +140,7 @@ def _callback(op): def batch_matmul_cublas(x, y, _): """Computes batch matrix multiplication of `x` and `y` when `x` and `y` are - data in batch.s + data in batch. Parameters ----------