diff options
| author | J08nY | 2025-03-15 19:43:22 +0100 |
|---|---|---|
| committer | J08nY | 2025-04-16 12:25:06 +0200 |
| commit | c88ce714f6b89acde9215c7289649998841824b5 (patch) | |
| tree | 178c857ae0a3b701871ab6b6e469d4316b43bdd8 /epare/simulate.py | |
| parent | ffbdf8d8e9cd35e8ec05f0002462d2036f4e5985 (diff) | |
| download | ECTester-c88ce714f6b89acde9215c7289649998841824b5.tar.gz ECTester-c88ce714f6b89acde9215c7289649998841824b5.tar.zst ECTester-c88ce714f6b89acde9215c7289649998841824b5.zip | |
Fix kind set in task script.
Diffstat (limited to '')
| -rw-r--r-- | epare/simulate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epare/simulate.py b/epare/simulate.py index f28a57d..2748377 100644 --- a/epare/simulate.py +++ b/epare/simulate.py @@ -103,7 +103,7 @@ if __name__ == "__main__": mwc = mult.with_countermeasure(countermeasure) pool.submit_task(mwc, get_small_scalar_multiples, - mwc, params, bits, samples, seed=chunk_id) + mwc, params, bits, samples, seed=chunk_id, kind=kind) for mult, future in tqdm(pool.as_completed(), desc="Computing small scalar distributions.", total=len(pool.tasks), smoothing=0): if error := future.exception(): print("Error", mult, error) |
