Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions process/io/mfile_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"""

import sys
import scipy
import numpy
import argparse
import process.io.mfile as mf
from numpy import isfinite
Expand Down Expand Up @@ -323,7 +323,7 @@ def main(arg):
if "normres" in v:
continue

values = scipy.zeros(n)
values = numpy.zeros(n) # replaced scipy with numpy

if v not in get_dicts()["DICT_VAR_TYPE"].keys():
try:
Expand Down
44 changes: 22 additions & 22 deletions process/io/mfile_to_csv_vars.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"vars": [
"minmax",
"pinjalw",
"pnetelin",
"ripmax",
"tbrnmn",
"alstroh",
"sig_tf_wp_max",
"thwcndut",
"fcohbop",
"alstroh",
"rmajor",
"tfcth",
"ohcth",
"cpttf",
"dr_tf_wp",
"ddwex",
"shldoth",
"divfix",
"rmajor"
]
}
"vars": [
"minmax",
"pinjalw",
"pnetelin",
"ripmax",
"tbrnmn",
"alstroh",
"sig_tf_wp_max",
"thwcndut",
"fcohbop",
"alstroh",
"rmajor",
"tfcth",
"ohcth",
"cpttf",
"dr_tf_wp",
"ddwex",
"shldoth",
"divfix",
"rmajor"
]
}