We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1999fa7 commit ab31176Copy full SHA for ab31176
1 file changed
src/ai/ai_model.c
@@ -61,6 +61,7 @@ void ai_scheduler_wait(ai_job_t* job) {
61
}
62
63
64
+#if 0
65
static void ai_worker_loop(void* arg) {
66
(void)arg;
67
while (ai_scheduler_running) {
@@ -89,11 +90,12 @@ static void ai_worker_loop(void* arg) {
89
90
91
92
93
+#endif
94
95
void ai_scheduler_init(uint32_t n_workers) {
96
ai_scheduler_running = 1;
97
ai_worker_count = n_workers;
- diag_log(DIAG_INFO, "AI Neural Scheduler starting with %d workers", n_workers);
98
+ diag_log(DIAG_INFO, "AI Neural Scheduler: Initializing workers...");
99
100
// In a real implementation, we would spawn kernel threads here
101
// For now, we assume this is called during SMP init
0 commit comments