Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions bin/launch_acc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
import multiprocessing
import os
os.environ["KMP_DUPLICATE_LIB_OK"] = "True"
import os

# this environment variable disables an Intel Fortan Runtime Library on Windows (which is internally used by numpy probably)
# to add a handler to the Console interrupts
# this is necessary because this handler tends to crash the program when ctrl+c is pressed, not executing ACCompanion shutdown code
os.environ['FOR_DISABLE_CONSOLE_CTRL_HANDLER'] = '1'

import argparse
import glob
from accompanion import PLATFORM

import sys
sys.path.append("..")


overridable_args = [
"use_mediator",
Expand Down