From 388df18f41191bf833513589b4d2193c1384af98 Mon Sep 17 00:00:00 2001 From: Carlos Gutierrez Date: Sun, 5 Oct 2025 00:34:27 -0400 Subject: [PATCH] updating --- scripts/simple_config.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/simple_config.py b/scripts/simple_config.py index 40cb885..c8606b3 100644 --- a/scripts/simple_config.py +++ b/scripts/simple_config.py @@ -49,10 +49,8 @@ process = Process() process.executable = args.cmd process.cmd = [args.cmd] -# Create Linux workload and set the executable -system.cpu.workload = SEWorkload.init_compatible("hello") -system.cpu.workload.executable = args.cmd -system.cpu.workload.cmd = [args.cmd] +# Assign workload to CPU +system.cpu.workload = process system.cpu.createThreads() # Create root and run simulation