aboutsummaryrefslogtreecommitdiff
path: root/epare/simulate.py
diff options
context:
space:
mode:
authorJ08nY2025-03-15 19:43:22 +0100
committerJ08nY2025-04-16 12:25:06 +0200
commitc88ce714f6b89acde9215c7289649998841824b5 (patch)
tree178c857ae0a3b701871ab6b6e469d4316b43bdd8 /epare/simulate.py
parentffbdf8d8e9cd35e8ec05f0002462d2036f4e5985 (diff)
downloadECTester-c88ce714f6b89acde9215c7289649998841824b5.tar.gz
ECTester-c88ce714f6b89acde9215c7289649998841824b5.tar.zst
ECTester-c88ce714f6b89acde9215c7289649998841824b5.zip
Fix kind set in task script.
Diffstat (limited to '')
-rw-r--r--epare/simulate.py2
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)