From bd754ac8badafb681cb94d73c672edf1d77a096d Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 20 Apr 2023 01:08:04 +0200 Subject: [PATCH] Add full run launch config --- .vscode/launch.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5d227e0..8fcc03d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: unimore_bda_6", + "name": "Test run", "type": "python", "request": "launch", "module": "unimore_bda_6", @@ -14,6 +14,20 @@ "NLTK_DATA": "./data/nltk", }, "cwd": "${workspaceFolder}", + }, + { + "name": "Full run", + "type": "python", + "request": "launch", + "module": "unimore_bda_6", + "justMyCode": false, + "env": { + "NLTK_DATA": "./data/nltk", + "WORKING_SET_SIZE": "30000000", + "TARGET_RUNS": "10", + "MAXIMUM_RUNS": "100", + }, + "cwd": "${workspaceFolder}", } ] }