Skip to content

Commit ab31176

Browse files
committed
Update ai_model.c
1 parent 1999fa7 commit ab31176

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/ai/ai_model.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ void ai_scheduler_wait(ai_job_t* job) {
6161
}
6262
}
6363

64+
#if 0
6465
static void ai_worker_loop(void* arg) {
6566
(void)arg;
6667
while (ai_scheduler_running) {
@@ -89,11 +90,12 @@ static void ai_worker_loop(void* arg) {
8990
}
9091
}
9192
}
93+
#endif
9294

9395
void ai_scheduler_init(uint32_t n_workers) {
9496
ai_scheduler_running = 1;
9597
ai_worker_count = n_workers;
96-
diag_log(DIAG_INFO, "AI Neural Scheduler starting with %d workers", n_workers);
98+
diag_log(DIAG_INFO, "AI Neural Scheduler: Initializing workers...");
9799

98100
// In a real implementation, we would spawn kernel threads here
99101
// For now, we assume this is called during SMP init

0 commit comments

Comments
 (0)