Spaces:
Runtime error
Runtime error
File size: 1,719 Bytes
be11144 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
{
# Descriptive name for the testsuite (required).
"name" : "Thrust Performance Testsuite",
"version" : "2",
"extrapath" : [ "{TR_INSTALL_DIR}/bin/{TR_ARCH_PATH}" ],
# Testsuite owner's email (required).
"owner" : "blelbach@nvidia.com",
# Define paths containing shared libraries required by the tests. Use envvar VULCAN_SHAREDLIB_DIR to refer
# to the platform specific portion of the path (e.g. bin/ for windows, lib64/ for 64-bit
# Linux, etc.)
"librarypath" : [ "{TR_INSTALL_DIR}\/cuda\/_internal\/driver" ],
# Default working directory for test runs (optional).
"cwd" : "{TR_INSTALL_DIR}/bin/{TR_ARCH_PATH}",
# Timeout for entire testsuite, in seconds (optional).
"timeout" : "3600",
# Default timeout for individual tests, in seconds (optional).
"testtimeout" : "3600",
# The tests in the testsuite (required).
"tests" : [
{
"init" : "{PYTHON} {TR_INSTALL_DIR}/GPUConfMgr/GPUConfMgr.py -caseName=set -clock=P0 -VULCAN_INSTALL={TR_INSTALL_DIR}",
"attributes" : [ ]
},
{
"exe": "{PYTHON} {TR_TESTSUITE_DIR}/internal/scripts/eris_perf.py -b {TR_INSTALL_DIR}/bin/{TR_ARCH_PATH}/bench -p {TR_INSTALL_DIR}/thrust/internal/benchmark/combine_benchmark_results.py",
"attributes": [ "result=multi" ]
},
{
"fini" : "{PYTHON} {TR_INSTALL_DIR}/GPUConfMgr/GPUConfMgr.py -caseName=reset -clock=P0 -VULCAN_INSTALL={TR_INSTALL_DIR}",
"attributes" : [ ]
}
]
}
# File /home/rjray/Perforce/general/gpgpu/thrust/thrust_perf_tests.trs
# Converted from /home/rjray/Perforce/general/gpgpu/thrust/thrust_perf_tests.vlct
# Converted by tr_configtool.pl/0.4, on Fri Oct 6 13:07:44 2017
|