
Run 1B option simulations
Experiment: European call option
import math
from dataclasses import dataclass
import numpy as np
from burla import remote_parallel_map
TOTAL = 1_000_000_000
N_CHUNKS = 2_000
PER_CHUNK = TOTAL // N_CHUNKSStep 1: Plan independent chunks
Step 2: Simulate on the worker
Step 3: Smoke test one chunk
Step 4: Run and reduce locally
What's the point?
Last updated