forked from IntelPython/scikit-learn_bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make it work on win, MPI having issues still
- Loading branch information
Showing
14 changed files
with
286 additions
and
187 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
if "%PY3K%"=="1" ( | ||
set ARGS="" | ||
) else { | ||
set ARGS="--old-and-unmanageable" | ||
} | ||
|
||
set DAAL4PY_VERSION=%PKG_VERSION% | ||
set CNCROOT=%PREFIX% | ||
set TBBROOT=%PREFIX% | ||
set DAALROOT=%PREFIX% | ||
|
||
%PYTHON% setup.py install %ARGS% |
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,8 +1,9 @@ | ||
#!/bin/bash | ||
|
||
if [ -n "$PY_VER" ] && [ "${PY_VER:0:1}" -lt "3" ]; then | ||
ARG="--old-and-unmanageable" | ||
if [ "$PY3K" == "1" ]; then | ||
ARGS="" | ||
else | ||
ARG="" | ||
ARGS="--old-and-unmanageable" | ||
fi | ||
DAAL4PY_VERSION=$PKG_VERSION CNCROOT=${PREFIX} TBBROOT=${PREFIX} DAALROOT=${PREFIX} ${PYTHON} setup.py install $ARG | ||
|
||
DAAL4PY_VERSION=$PKG_VERSION CNCROOT=${PREFIX} TBBROOT=${PREFIX} DAALROOT=${PREFIX} ${PYTHON} setup.py install $ARGS |
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#******************************************************************************* | ||
# Copyright 2014-2017 Intel Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
#******************************************************************************/ | ||
|
||
import os | ||
import platform | ||
import struct | ||
import subprocess | ||
import sys | ||
|
||
from os.path import join as jp | ||
from time import gmtime, strftime | ||
|
||
exdir = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
IS_WIN = platform.system() == 'Windows' | ||
|
||
assert 8 * struct.calcsize('P') in [32, 64] | ||
|
||
if 8 * struct.calcsize('P') == 32: | ||
logdir = jp(exdir, '_results', 'ia32') | ||
else: | ||
logdir = jp(exdir, '_results', 'intel64') | ||
|
||
def get_exe_cmd(ex): | ||
if 'batch' in ex: | ||
return '"' + sys.executable + '" "' + ex + '"' | ||
else: | ||
return 'mpirun -n 4 -genv DIST_CNC=MPI "' + sys.executable + '" "' + ex + '"' | ||
|
||
def run_all(): | ||
success = 0 | ||
n = 0 | ||
if not os.path.exists(logdir): | ||
os.makedirs(logdir) | ||
for (dirpath, dirnames, filenames) in os.walk(exdir): | ||
for script in filenames: | ||
if script.endswith('.py') and script not in ['run_examples.py', '__init__.py']: | ||
n += 1 | ||
logfn = jp(logdir, script.replace('.py', '.res')) | ||
with open(logfn, 'w') as logfile: | ||
print('\n##### ' + jp(dirpath, script)) | ||
execute_string = get_exe_cmd(jp(dirpath, script)) | ||
proc = subprocess.Popen(execute_string if IS_WIN else ['/bin/bash', '-c', execute_string], | ||
stdout=subprocess.PIPE, | ||
stderr=subprocess.STDOUT, | ||
shell=(True if IS_WIN else False)) | ||
out = proc.communicate()[0] | ||
logfile.write(out.decode('ascii')) | ||
if proc.returncode: | ||
print(out) | ||
print(strftime("%H:%M:%S", gmtime()) + '\tFAILED\t' + script + '\twith errno\t' + str(proc.returncode)) | ||
else: | ||
success += 1 | ||
print(strftime("%H:%M:%S", gmtime()) + '\tPASSED\t' + script) | ||
if success != n: | ||
print('{}/{} examples passed, {} failed'.format(success,n, n - success)) | ||
print('Error(s) occured. Logs can be found in ' + logdir) | ||
else: | ||
print('{}/{} examples passed'.format(success,n)) | ||
|
||
if __name__ == '__main__': | ||
run_all() |
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
Oops, something went wrong.