[FRONTEND] Hotfix for store argument order (#567)

This commit is contained in:
Philippe Tillet
2022-06-28 00:24:02 -07:00
committed by GitHub
parent 5b4c8f221e
commit feb7a2a0dc

View File

@@ -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`.