Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

최적화 기본 단계를 1로 #38

Merged
merged 3 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion aheui/option.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
""")
Expand Down
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'
Loading