1main: { 2 multithreading: { 3 fork: true, 4 threads: [ 5 { 6 name: "Memory" 7 instruction: { 8 mem_alloc: { 9 size: 5000000000 10 } 11 offset_us: 5000000 12 } 13 }, 14 { 15 name: "Util" 16 instruction: { 17 cpu_work: { 18 utilization: 0.3, 19 } 20 repeat: 300, 21 period_us: 100000 22 }, 23 spawn: 2 24 }, 25 { 26 name: "MemGrow" 27 instruction: { 28 mem_alloc: { 29 size: 5000000 30 } 31 repeat: 300, 32 period_us: 100000 33 } 34 } 35 ] 36 } 37} 38global: {} 39