File size: 1,354 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
# Thrust performance tests component configuration. 
{
  # Descriptive name for the testsuite (required).
  "name"        : "Thrust Performance Testsuite",
  # Testsuite owner's email (required).
  "owner"       : "[email protected]",

  # 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.)
  "dllpath"     : [ "${VULCAN_INSTALL_DIR}/cuda/_internal/driver" ],
  # Default working directory for test runs (optional).
  "cwd"         : "${VULCAN_TESTSUITE_DIR}",
  # 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" : [
      {
        "exe" : "${PYTHON} ${VULCAN_INSTALL_DIR}/opencl/_tests/GPUConfMgr/GPUConfMgr.py -caseName=set -clock=P0 -VULCAN_INSTALL=${VULCAN_INSTALL_DIR}",
        "attributes" : [ ]
      },
      {
        "exe": "${PYTHON} eris_perf.py",
        "attributes": [ "result=multi" ]
      },
      {
        "exe" : "${PYTHON} ${VULCAN_INSTALL_DIR}/opencl/_tests/GPUConfMgr/GPUConfMgr.py -caseName=reset -clock=P0 -VULCAN_INSTALL=${VULCAN_INSTALL_DIR}",
        "attributes" : [ ]
      }
 ]
}