From 36e3b7aca91f5f933d5eca5e023ca3b21855bc88 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Mon, 26 Oct 2015 01:34:35 -0700 Subject: [PATCH] Compiler made register restrictions unnecessary --- cuburn/code/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuburn/code/util.py b/cuburn/code/util.py index 6405dbd..67f802d 100644 --- a/cuburn/code/util.py +++ b/cuburn/code/util.py @@ -86,7 +86,7 @@ def assemble_code(*libs): map(go, libs) return ''.join(sum(zip(*out), ())) -DEFAULT_CMP_OPTIONS = ('-use_fast_math', '-maxrregcount', '42') +DEFAULT_CMP_OPTIONS = ('-use_fast_math',) DEFAULT_SAVE_KERNEL = True def compile(name, src, opts=DEFAULT_CMP_OPTIONS, save=DEFAULT_SAVE_KERNEL, arch=None):