Files
Jungfraujoch/image_analysis/bragg_prediction/BraggPredictionRotGPU.h
T
leonarski_f e0ddbfa644
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Failing after 9m36s
Build Packages / build:rpm (rocky8_nocuda) (push) Failing after 10m41s
Build Packages / Generate python client (push) Successful in 35s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Failing after 11m31s
Build Packages / Build documentation (push) Successful in 57s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky9_nocuda) (push) Failing after 12m18s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 13m4s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 12m58s
Build Packages / build:rpm (rocky8) (push) Successful in 13m3s
Build Packages / build:rpm (rocky9) (push) Successful in 13m18s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 7m42s
Build Packages / Unit tests (push) Successful in 53m14s
IndexAndRefine: Use rotation method prediction for reflections
2026-01-30 16:16:17 +01:00

49 lines
1.2 KiB
C++

// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
// SPDX-License-Identifier: GPL-3.0-only
#pragma once
#include <vector>
#include "BraggPrediction.h"
#include "../indexing/CUDAMemHelpers.h"
struct KernelConstsRot {
float det_width_pxl;
float det_height_pxl;
float beam_x;
float beam_y;
float coeff_const;
float one_over_wavelength;
float one_over_dmax_sq;
float max_angle_deg;
Coord Astar, Bstar, Cstar, S0;
Coord m1, m2, m3;
float m2_S0;
float m3_S0;
float rot[9];
char centering;
};
class BraggPredictionRotGPU : public BraggPrediction {
CudaRegisteredVector<Reflection> reg_out; // requires stable storage
CudaDevicePtr<Reflection> d_out;
// Dedicated stream
CudaStream stream;
// Device allocations via helpers
CudaDevicePtr<KernelConstsRot> dK;
CudaDevicePtr<int> d_count;
// Host pinned buffer for async download (optional but faster)
CudaHostPtr<int> h_count;
public:
explicit BraggPredictionRotGPU(int max_reflections = 10000);
int Calc(const DiffractionExperiment &experiment,
const CrystalLattice &lattice,
const BraggPredictionSettings &settings) override;
};