More accessible machine learning functionality.

This commit is contained in:
Marcel Keller
2023-02-16 12:34:22 +11:00
parent 7266f3b877
commit 5153c63d2f
119 changed files with 3853 additions and 965 deletions

View File

@@ -126,7 +126,7 @@ BreakType Program::execute(Processor<T>& Proc, U& dynamic_memory,
cout << "complexity at " << time << ": " << Proc.complexity << endl;
#endif
}
while (Proc.complexity < (1 << 19));
while (Proc.complexity < (size_t) OnlineOptions::singleton.batch_size);
Proc.time = time;
#ifdef DEBUG_ROUNDS
cout << "breaking at time " << Proc.time << endl;