A wrong number (different to what job_count specifies) of jobs for each user is generated.
looks like this is related with this bit of code (in generator.py); paring of app_args and maybe app_logging_level.
num_qubits.append(_randomise(app_cfg["qubits"], def_qubits))
num_shots.append(_randomise(app_cfg["num_shots"], def_shots))
if "app_args" in app_cfg.columns:
t = app_cfg["app_args"].tolist()[0]
if not _check_nan(t):
app_args.append(_to_bytes(t))
if "app_logging_level" in app_cfg.columns:
t = app_cfg["app_logging_level"].tolist()[0]
if not _check_nan(t):
app_logging_level.append(int(t))
i'm fixing this, but putting the issue in to keep track of it.
A wrong number (different to what
job_countspecifies) of jobs for each user is generated.looks like this is related with this bit of code (in
generator.py); paring ofapp_argsand maybeapp_logging_level.i'm fixing this, but putting the issue in to keep track of it.