Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GPU/GPUTracking/Standalone/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ endif()
add_subdirectory(../../ GPU)
add_library(standalone_support SHARED
${O2_DIR}/Common/Field/src/MagFieldFast.cxx
${O2_DIR}/Common/ML/src/OrtInterface.cxx
${O2_DIR}/Common/Utils/src/StringUtils.cxx
${O2_DIR}/DataFormats/Detectors/TPC/src/CompressedClusters.cxx
${O2_DIR}/DataFormats/Reconstruction/src/TrackParametrization.cxx
Expand Down Expand Up @@ -228,6 +227,7 @@ endif()

if(GPUCA_CONFIG_ONNX)
target_link_libraries(standalone_support PRIVATE onnxruntime::onnxruntime)
target_sources(standalone_support PRIVATE ${O2_DIR}/Common/ML/src/OrtInterface.cxx)
endif()

if (GPUCA_BUILD_DEBUG_SANITIZE AND CMAKE_CXX_COMPILER MATCHES "clang\\+\\+")
Expand Down
2 changes: 1 addition & 1 deletion GPU/GPUTracking/Standalone/tools/dumpGPUDefParam.C
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/// \author David Rohr

// Run e.g. as (replacing [FILE] and [OUTPUT]:
// echo -e '#define PARAMETER_FILE "[FILE]]"\ngInterpreter->AddIncludePath("'`pwd`'/include/GPU");\n.x share/GPU/tools/dumpGPUDefParam.C("[OUTPUT]")\n.q\n' | root -l -b
// echo -e '#define PARAMETER_FILE "[FILE]"\ngInterpreter->AddIncludePath("'`pwd`'/include/GPU");\n.x share/GPU/tools/dumpGPUDefParam.C("[OUTPUT]")\n.q\n' | root -l -b
// To dump the defaults for AMPERE architecture, run
// echo -e '#define GPUCA_GPUTYPE_AMPERE\n#define PARAMETER_FILE "GPUDefParametersDefaults.h"\ngInterpreter->AddIncludePath("'`pwd`'/include/GPU");\n.x share/GPU/tools/dumpGPUDefParam.C("default_AMPERE.par")\n.q\n' | root -l -b

Expand Down