Skip to content

Commit

Permalink
Merge pull request #38 from aheui/opt1
Browse files Browse the repository at this point in the history
최적화 기본 단계를 1로
youknowone authored Apr 5, 2024
2 parents 198dcac + f42c7f0 commit 10c67b7
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -35,10 +35,10 @@ install: rpaheui-c rpaheui-bigint-c
cp rpaheui-c /usr/local/bin/rpaheui
ln -s /usr/local/bin/rpaheui /usr/local/bin/aheui

test-bigint:
test-bigint-c:
cd snippets && AHEUI="../rpaheui-bigint-c" bash test.sh

test-smallint:
test-c:
cd snippets && AHEUI="../rpaheui-c" bash test.sh --disable integer

test-py:
2 changes: 1 addition & 1 deletion aheui/option.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@


parser = ArgumentParser(prog='aheui')
parser.add_argument('--opt', '-O', default='2', choices='0,1,2', description='Set optimization level.', full_description="""\t0: No optimization.
parser.add_argument('--opt', '-O', default='1', choices='0,1,2', description='Set optimization level.', full_description="""\t0: No optimization.
\t1: Quickly resolve deadcode by rough stacksize emulation and merge constant operations.
\t2: Perfectly resolve deadcode by stacksize emulation, reserialize code chunks and merge constant operations.
""")
2 changes: 1 addition & 1 deletion aheui/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.2.4'
VERSION = '1.2.5'

0 comments on commit 10c67b7

Please sign in to comment.