We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 114e70e commit a24af43Copy full SHA for a24af43
vcu118-run.py
@@ -376,6 +376,7 @@ def load_and_start_kernel(
376
if num_cores > 1:
377
args += ["-ex", "set $entry_point = $pc"] # Record the entry point to the bios
378
for core in range(1, num_cores):
379
+ args += ["-ex", f"thread {core + 1:d}"] # switch to thread (core + 1) (GDB counts from 1)
380
args += ["-ex", "set $pc=$entry_point"] # set every other core to the start of the bios
381
args += ["-ex", "thread 1"] # switch back to core 0
382
if extra_gdb_commands is not None:
0 commit comments