Skip to content

Commit

Permalink
Disable main C-Executor to avoid misunderstandings; this code is unde…
Browse files Browse the repository at this point in the history
…r development
  • Loading branch information
fractasy committed Oct 27, 2023
1 parent 85658f6 commit d467dcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/executor/executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ void Executor::process_batch (ProverRequest &proverRequest)
}
case 5: // fork_5
{
if (config.useMainExecC)
/*if (config.useMainExecC)
{
//zklog.info("Executor::process_batch() fork 5 C");
mainExecutorC_fork_5.execute(proverRequest);
}
else if (config.useMainExecGenerated)
else*/ if (config.useMainExecGenerated)
{
//zklog.info("Executor::process_batch() fork 5 generated");
fork_5::main_exec_generated_fast(mainExecutor_fork_5, proverRequest);
Expand Down Expand Up @@ -177,12 +177,12 @@ void Executor::process_batch (ProverRequest &proverRequest)
}
case 6: // fork_6
{
if (config.useMainExecC)
/*if (config.useMainExecC)
{
//zklog.info("Executor::process_batch() fork 6 C");
mainExecutorC_fork_6.execute(proverRequest);
}
else if (config.useMainExecGenerated)
else*/ if (config.useMainExecGenerated)
{
//zklog.info("Executor::process_batch() fork 5 generated");
fork_6::main_exec_generated_fast(mainExecutor_fork_6, proverRequest);
Expand Down

0 comments on commit d467dcb

Please sign in to comment.