I saw the following answer in FAQ: "In SE mode, simply create a system with multiple CPUs and assign a different workload object to each CPU's workload parameter. If you're using the O3 model, you can also assign a vector of workload objects to one CPU, in which case the CPU will run all of the workloads concurrently in SMT mode." I see a program line in se.py as: if options.cpu_type == "detailed" or options.cpu_type == "inorder": #check for SMT workload workloads = options.cmd.split(';') it looks like the separator is a semi-colon (;) how do I assign different workload to each CPU? is it by running se.py with the following options
--cmd=benchmark1 --options=option1; --cmd=benchmark2 --options=option2 doing this it ignore anything after the semi-colon or --cmd=benchmark1;benchmark2 --options=option1;option2 any idea? Thanks
_______________________________________________ gem5-users mailing list gem5-users@gem5.org http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users