From 0c36bc079b432fd467f784b00db0be58abf6b22d Mon Sep 17 00:00:00 2001 From: kp992 Date: Wed, 23 Apr 2025 18:55:29 -0700 Subject: [PATCH] Reduce loop iteration for wasm --- lectures/monte_carlo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/monte_carlo.md b/lectures/monte_carlo.md index 9f66c229..2797dd97 100644 --- a/lectures/monte_carlo.md +++ b/lectures/monte_carlo.md @@ -650,7 +650,7 @@ Now let's try with larger $M$ to get a more accurate calculation. ```{code-cell} ipython3 %%time -compute_call_price(M=10_000_000) +compute_call_price(M=500_000) ```