-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2571 from xiezheng-XD/master
Update Dockerfile and testResource.py
- Loading branch information
Showing
2 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
#!/usr/bin/python | ||
import sys | ||
import os | ||
from subprocess import Popen, PIPE, STDOUT | ||
|
||
root_dir = sys.argv[1] | ||
print('root: ', root_dir) | ||
|
||
forwardType = " 0 " | ||
if len(sys.argv) > 2: | ||
forwardType = ' ' + sys.argv[2] + ' ' | ||
|
||
thredhold = ' 0.001 ' | ||
if len(sys.argv) > 3: | ||
thredhold = ' ' + sys.argv[3] + ' ' | ||
|
||
import os | ||
def run_cmd(args): | ||
from subprocess import Popen, PIPE, STDOUT | ||
stdout, _ = Popen(args, stdout=PIPE, stderr=STDOUT).communicate() | ||
return stdout | ||
process = Popen(args, stdout=PIPE, stderr=PIPE, universal_newlines=True) | ||
stdout, stderr = process.communicate() | ||
return stdout, stderr | ||
|
||
for name in os.listdir(root_dir): | ||
if name.startswith("."): | ||
continue | ||
modelName = os.path.join(root_dir, name, 'temp.bin') | ||
inputName = os.path.join(root_dir, name, 'input_0.txt') | ||
outputName = os.path.join(root_dir, name, 'output.txt') | ||
print modelName | ||
print(modelName) | ||
|
||
print run_cmd(['./testModel.out', modelName, inputName, outputName, forwardType, thredhold]) | ||
stdout, stderr = run_cmd(['./testModel.out', modelName, inputName, outputName, forwardType, thredhold]) | ||
print(stdout) | ||
if stderr: | ||
print("Error:", stderr) |