1# Thrust performance tests component configuration. 2{ 3 # Descriptive name for the component 4 "name" : "Thrust Performance Test Suite", 5 "type" : "performance", 6 # Component owner (email address) 7 "owner" : "blelbach@nvidia.com", 8 "module" : "CUDA - Thrust", 9 10 # Build timeout (in seconds). 11 "buildtimeout" : "600", 12 # Define variables usable in this component 13 "env" : [ "THRUST_TESTS_BIN_DIR=${VULCAN_BUILD_DIR}/bin/${VULCAN_ARCH}_${VULCAN_OS}${VULCAN_ABI}_${VULCAN_BUILD}" ], 14 # Files included in this component specified with one or more paths. 15 # Paths are relative to this file location. Path syntax uses wildcards and p4-like '...'. 16 "files" : [ 17 "...", 18 { "include" : "CUDA_TOOLKIT_BUILD_FILES" } 19 ], 20 # Output produced by this component and the installation location 21 # for each output. The install location is relative to 22 # VULCAN_INSTALL_DIR. Optional 'kind' property can be used to tag 23 # artifact kinds. 24 "artifacts" : [ 25 { "${THRUST_TESTS_BIN_DIR}/bench" : "cuda/_tests/thrust_perf_tests/.", "kind": "EXE" }, 26 { "internal/benchmark/combine_benchmark_results.py" : "cuda/_tests/thrust_perf_tests/." }, 27 { "internal/scripts/eris_perf.py" : "cuda/_tests/thrust_perf_tests/." }, 28 { "thrust_perf_tests.vlct" : "cuda/_tests/thrust_perf_tests/.", "kind": "TESTSUITE" } 29 ], 30 # Dependencies for this component. 31 "depends" : [ "driver_headers", "driver", "compiler", "cuda", "thrust", "GPUConfMgr" ], 32 # The agent for this component, relative to this file location. The 33 # agent is invoked to perform component actions. 34 "agent" : { 35 "CUDA_MAKE" : "Makefile", "build_target" : "all", "clean_target" : "clean", 36 "args" : [ "TEST_BENCH=1" ] 37 } 38} 39