Disabling task system worker local memory as we don't use it today.
diff --git a/iree/task/api.c b/iree/task/api.c index e1f3e86..03cb5df 100644 --- a/iree/task/api.c +++ b/iree/task/api.c
@@ -34,8 +34,9 @@ "threads that would otherwise need to perform the syscalls during\n" "coordination."); +// TODO(benvanik): enable this when we use it - though hopefully we don't! IREE_FLAG( - int32_t, task_worker_local_memory, 64 * 1024, + int32_t, task_worker_local_memory, 0, // 64 * 1024, "Specifies the bytes of per-worker local memory allocated for use by\n" "dispatched tiles. Tiles may use less than this but will fail to dispatch\n" "if they require more. Conceptually it is like a stack reservation and\n"