Skip to content

Commit 8e9525f

Browse files
committed
Configure billionRunOptimized for 1 billion patients
1 parent 05c9f0e commit 8e9525f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

research/modules/5-billion-scale-polypharmacy/src/billionRunOptimized.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ const path = require('path');
1616
const os = require('os');
1717

1818
const CONFIG = {
19-
totalPatients: 100_000_000, // 100 Million (validation run)
20-
nSites: 100, // 100 sites
19+
totalPatients: 1_000_000_000, // 1 Billion (final run!)
20+
nSites: 1000, // 1000 sites
2121
patientsPerSite: 1_000_000, // 1M per site
2222
batchSize: os.cpus().length, // Use all CPU cores
23-
outputDir: path.join(__dirname, '../results/optimized_run'),
24-
checkpointInterval: os.cpus().length,
23+
outputDir: path.join(__dirname, '../results/optimized_1billion_run'),
24+
checkpointInterval: os.cpus().length * 10, // Checkpoint every 10 batches
2525
};
2626

2727
class OptimizedBillionRunner {

0 commit comments

Comments
 (0)