From e0b92c138090e67898a8f55d9197ef1966cb8dbe Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Thu, 16 Dec 2021 18:37:51 -0800 Subject: [PATCH] [FRONTEND] Reverted `from .random import *`. There are still some namespace errors in the Triton frontend apparently --- python/triton/language/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/triton/language/__init__.py b/python/triton/language/__init__.py index 2f3f4ea05..a7f341f16 100644 --- a/python/triton/language/__init__.py +++ b/python/triton/language/__init__.py @@ -1,3 +1,3 @@ from . import core, random from .core import * -from .random import rand, randint, randint4x, randn +from .random import *