[gem5-users] Re: Basic question on gem5 configuration script for multi-threaded workload

2021-11-15 Thread Gabe Black via gem5-users
I'm not 100% sure this is right, but I think what you do is assign the same process object to each core you want a thread to run on. Gabe On Mon, Nov 15, 2021 at 10:25 AM Sachin Vijay Kumar via gem5-users < gem5-users@gem5.org> wrote: > Hi all, > > I have some basic question about assigning a

[gem5-users] Re: help ------------ the cross compiler version of MIPS

2021-11-15 Thread Gabe Black via gem5-users
The first error is because that is a big endian binary, and gem5 only supports the little endian version of MIPS. The second error is not because of the cross compiler, it's because something is wrong with the configuration (or gem5 itself) and an error is detected while running. Specifically, the

[gem5-users] Basic question on gem5 configuration script for multi-threaded workload

2021-11-15 Thread Sachin Vijay Kumar via gem5-users
Hi all, I have some basic question about assigning a multithreaded program into different cores of ARM in gem5 simulation. Basically, I have hashmark benchmark file which is built for arm core with "m5 threads". The executable takes number of threads to create and a input file as argument.