Skip to content

Commit

Permalink
change maximum instruction parameter to 64-bit and max_insts1 default…
Browse files Browse the repository at this point in the history
… to 50 billion
  • Loading branch information
mgoldstein322 committed Jul 18, 2024
1 parent 8136d00 commit 9a2adfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions def/core.param.def
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ param<SIMD_ALLOCQ_INDEX, siaq_index, int, 3>

param<ONE_CYCLE_EXEC, one_cycle_exec, bool, 0>

param<MAX_INSTS, max_insts, uns32, 1000>
param<SIM_CYCLE_COUNT, sim_cycle_count, uns32, 1000000>
param<MAX_INSTS, max_insts, uns64, 1000>
param<SIM_CYCLE_COUNT, sim_cycle_count, uns64, 1000000>

param<FORWARD_PROGRESS_LIMIT, forward_progress_limit, uns64, 100000>

Expand Down
2 changes: 1 addition & 1 deletion def/general.param.def
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ param<STDOUT_FILE, stdout, string,
param<FILE_TAG, file_tag, string, NULL>
param<STATISTICS_OUT_DIRECTORY, out, string, .>
param<MAX_BLOCK_PER_CORE, max_block_per_core, int, 4>
param<MAX_INSTS1, max_insts1, uns64, 10000000000>
param<MAX_INSTS1, max_insts1, uns64, 50000000000>
param<ENABLE_CONDITIONAL_EXECUTION, enable_conditional_execution, bool, false>
param<TEMPERATURE, temperature, int, 320>

Expand Down

0 comments on commit 9a2adfa

Please sign in to comment.