File indexing completed on 2025-12-17 09:21:31
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include "ActsPlugins/Gnn/TorchMetricLearning.hpp"
0010
0011 #include "ActsPlugins/Gnn/detail/TensorVectorConversion.hpp"
0012 #include "ActsPlugins/Gnn/detail/buildEdges.hpp"
0013
0014 #ifndef ACTS_GNN_CPUONLY
0015 #include <c10/cuda/CUDAGuard.h>
0016 #endif
0017
0018 #include <numbers>
0019
0020 #include <torch/script.h>
0021 #include <torch/torch.h>
0022
0023 #include "printCudaMemInfo.hpp"
0024
0025 using namespace torch::indexing;
0026
0027 using namespace Acts;
0028
0029 namespace ActsPlugins {
0030
0031 TorchMetricLearning::TorchMetricLearning(const Config &cfg,
0032 std::unique_ptr<const Logger> _logger)
0033 : m_logger(std::move(_logger)), m_cfg(cfg) {
0034 c10::InferenceMode guard(true);
0035 torch::Device device = torch::kCPU;
0036
0037 if (!torch::cuda::is_available()) {
0038 ACTS_DEBUG("Running on CPU...");
0039 } else {
0040 if (cfg.deviceID >= 0 && cfg.deviceID < torch::cuda::device_count()) {
0041 ACTS_DEBUG("GPU device " << cfg.deviceID << " is being used.");
0042 device = torch::Device(torch::kCUDA, cfg.deviceID);
0043 } else {
0044 ACTS_WARNING("GPU device " << cfg.deviceID
0045 << " not available, falling back to CPU.");
0046 }
0047 }
0048
0049 ACTS_DEBUG("Using torch version " << TORCH_VERSION_MAJOR << "."
0050 << TORCH_VERSION_MINOR << "."
0051 << TORCH_VERSION_PATCH);
0052 #ifndef ACTS_GNN_CPUONLY
0053 if (!torch::cuda::is_available()) {
0054 ACTS_INFO("CUDA not available, falling back to CPU");
0055 }
0056 #endif
0057
0058 try {
0059 m_model = std::make_unique<torch::jit::Module>();
0060 *m_model = torch::jit::load(m_cfg.modelPath, device);
0061 m_model->eval();
0062 } catch (const c10::Error &e) {
0063 throw std::invalid_argument("Failed to load models: " + e.msg());
0064 }
0065 }
0066
0067 TorchMetricLearning::~TorchMetricLearning() {}
0068
0069 PipelineTensors TorchMetricLearning::operator()(
0070 std::vector<float> &inputValues, std::size_t numNodes,
0071 const std::vector<std::uint64_t> & ,
0072 const ExecutionContext &execContext) {
0073 const auto device =
0074 execContext.device.type == Device::Type::eCUDA
0075 ? torch::Device(torch::kCUDA, execContext.device.index)
0076 : torch::kCPU;
0077 ACTS_DEBUG("Start graph construction");
0078 c10::InferenceMode guard(true);
0079
0080
0081 #ifdef ACTS_GNN_CPUONLY
0082 assert(device == torch::Device(torch::kCPU));
0083 #else
0084 std::optional<c10::cuda::CUDAGuard> device_guard;
0085 if (device.is_cuda()) {
0086 device_guard.emplace(device.index());
0087 }
0088 #endif
0089
0090 const std::int64_t numAllFeatures = inputValues.size() / numNodes;
0091
0092
0093 ACTS_VERBOSE("First spacepoint information: " << [&]() {
0094 std::stringstream ss;
0095 for (int i = 0; i < numAllFeatures; ++i) {
0096 ss << inputValues[i] << " ";
0097 }
0098 return ss.str();
0099 }());
0100 printCudaMemInfo(logger());
0101
0102 auto inputTensor = detail::vectorToTensor2D(inputValues, numAllFeatures);
0103
0104
0105
0106 if (inputTensor.options().device() == device) {
0107 inputTensor = inputTensor.clone();
0108 } else {
0109 inputTensor = inputTensor.to(device);
0110 }
0111
0112
0113
0114
0115
0116
0117 auto model = m_model->clone();
0118 model.to(device);
0119
0120 std::vector<torch::jit::IValue> inputTensors;
0121 auto selectedFeaturesTensor =
0122 at::tensor(at::ArrayRef<int>(m_cfg.selectedFeatures));
0123 inputTensors.push_back(
0124 !m_cfg.selectedFeatures.empty()
0125 ? inputTensor.index({Slice{}, selectedFeaturesTensor})
0126 : std::move(inputTensor));
0127
0128 ACTS_DEBUG("embedding input tensor shape "
0129 << inputTensors[0].toTensor().size(0) << ", "
0130 << inputTensors[0].toTensor().size(1));
0131
0132 auto output = model.forward(inputTensors).toTensor();
0133
0134 ACTS_VERBOSE("Embedding space of the first SP:\n"
0135 << output.slice(0, 0, 1));
0136 printCudaMemInfo(logger());
0137
0138
0139
0140
0141
0142 auto edgeList = detail::buildEdges(output, m_cfg.rVal, m_cfg.knnVal,
0143 m_cfg.shuffleDirections);
0144
0145 ACTS_VERBOSE("Shape of built edges: (" << edgeList.size(0) << ", "
0146 << edgeList.size(1));
0147 ACTS_VERBOSE("Slice of edgelist:\n" << edgeList.slice(1, 0, 5));
0148 printCudaMemInfo(logger());
0149
0150
0151 return {detail::torchToActsTensor<float>(inputTensor, execContext),
0152 detail::torchToActsTensor<std::int64_t>(edgeList, execContext),
0153 std::nullopt, std::nullopt};
0154 }
0155 }