From 7c6974dd08f8e6ec33314bb10e4055442b53aed9 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 5 Jul 2018 16:33:26 -0700 Subject: [PATCH] Fix options so it is in /tmp in RAM drive --- compiler/options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/options.py b/compiler/options.py index bc0368ce..72006f1c 100644 --- a/compiler/options.py +++ b/compiler/options.py @@ -13,8 +13,8 @@ class options(optparse.Values): # This is the name of the technology. tech_name = "" # This is the temp directory where all intermediate results are stored. - #openram_temp = "/tmp/openram_{0}_{1}_temp/".format(getpass.getuser(),os.getpid()) - openram_temp = "{0}/openram_temp/".format(os.getenv("HOME")) + openram_temp = "/tmp/openram_{0}_{1}_temp/".format(getpass.getuser(),os.getpid()) + #openram_temp = "{0}/openram_temp/".format(os.getenv("HOME")) # This is the verbosity level to control debug information. 0 is none, 1 # is minimal, etc. debug_level = 0