Spaces:
Runtime error
Runtime error
File size: 1,895 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 39 |
# Thrust performance tests component configuration.
{
# Descriptive name for the component
"name" : "Thrust Performance Test Suite",
"type" : "performance",
# Component owner (email address)
"owner" : "[email protected]",
"module" : "CUDA - Thrust",
# Build timeout (in seconds).
"buildtimeout" : "600",
# Define variables usable in this component
"env" : [ "THRUST_TESTS_BIN_DIR=${VULCAN_BUILD_DIR}/bin/${VULCAN_ARCH}_${VULCAN_OS}${VULCAN_ABI}_${VULCAN_BUILD}" ],
# Files included in this component specified with one or more paths.
# Paths are relative to this file location. Path syntax uses wildcards and p4-like '...'.
"files" : [
"...",
{ "include" : "CUDA_TOOLKIT_BUILD_FILES" }
],
# Output produced by this component and the installation location
# for each output. The install location is relative to
# VULCAN_INSTALL_DIR. Optional 'kind' property can be used to tag
# artifact kinds.
"artifacts" : [
{ "${THRUST_TESTS_BIN_DIR}/bench" : "cuda/_tests/thrust_perf_tests/.", "kind": "EXE" },
{ "internal/benchmark/combine_benchmark_results.py" : "cuda/_tests/thrust_perf_tests/." },
{ "internal/scripts/eris_perf.py" : "cuda/_tests/thrust_perf_tests/." },
{ "thrust_perf_tests.vlct" : "cuda/_tests/thrust_perf_tests/.", "kind": "TESTSUITE" }
],
# Dependencies for this component.
"depends" : [ "driver_headers", "driver", "compiler", "cuda", "thrust", "GPUConfMgr" ],
# The agent for this component, relative to this file location. The
# agent is invoked to perform component actions.
"agent" : {
"CUDA_MAKE" : "Makefile", "build_target" : "all", "clean_target" : "clean",
"args" : [ "TEST_BENCH=1" ]
}
}
|