From feb7a2a0dc617fc00221cbf87b99d910adeaf09e Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Tue, 28 Jun 2022 00:24:02 -0700 Subject: [PATCH] [FRONTEND] Hotfix for `store` argument order (#567) --- python/triton/language/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/triton/language/core.py b/python/triton/language/core.py index 3ba2d2f21..ee99aab2e 100644 --- a/python/triton/language/core.py +++ b/python/triton/language/core.py @@ -782,7 +782,7 @@ def load(pointer, mask=None, other=None, cache_modifier="", eviction_policy="", @builtin -def store(pointer, value, eviction_policy="", mask=None, _builder=None): +def store(pointer, value, mask=None, eviction_policy="", _builder=None): """ Stores :code:`value` tensor of elements in memory, element-wise, at the memory locations specified by :code:`pointer`.