You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just to clarify: arm_compute::IScheduler& scheduler is used internally by the NEGEMM function to create multiple threads for the computation. Each thread will run the same kernel on different non overlapping slices of the data. For example: if there are 4 cpu cores, NEGEMM will use 4 threads and divide the work equally among these threads.
The Scheduler job is to create the threads for each kernel and execute the workloads. You do not have to set the scheduler explicitly, the function NEGEMM already knows how to use it.
From what I read above you would like to run NEGEMM altogether from multiple threads, is this correct?
Problem description:
I now have a matrix multiplication that needs to be called in an external multithread.
But now that I've defined other threads externally, is there any way to set the scheduler's multithreading.
like this, make threads set by the
scheduler
point tothreads
.The text was updated successfully, but these errors were encountered: