SearcharxivSearch

arXiv subjects

Alberto Vecchiato

Publications and source records attributed to Alberto Vecchiato.

At least 19 recordsLinked to original sources

The Problem of the Global Astrometric Sphere Reconstruction in Astrometry -- Issues and Approaches

In this contribution we give a brief account of the problem of the Global Astrometric Sphere Reconstruction in Astrometry, with particular reference to the Gaia and Gaia-like astrometric missions, namely those adopting a scanning strategy with observations in TDI mode. We sketch the design of the Gaia mission, the mathematical modelling that comes naturally from its observing strategy, and how the problem of the global sphere reconstruction translates into that of the solution of large, sparse, and overdetermined system of linearized equations. After a short description of the two approaches to this problem implemented in the Gaia data reduction pipelines, we list the main known problems of the current approaches, with specific reference to the calibration and the correlation issues. Finally, we suggest how an arc-based solution could help to alleviate some of these problems, how it would be possible to devise a mathematical model for such an observable despite the TDI observing mode, and the main difficulty that a parallel implementation of this model would have to solve.

astro-ph.IM

The Gaia AVU-GSR solver: a CPU + GPU parallel code toward Exascale systems

The solver module of the Astrometric Verification Unit - Global Sphere Reconstruction (AVU-GSR) pipeline aims to find the astrometric parameters of $\sim$$10^8$ stars in the Milky Way, besides the attitude and instrumental settings of the Gaia satellite and the parametrized post Newtonian parameter $\gamma$ with a resolution of 10-100 micro-arcseconds. To perform this task, the code solves a system of linear equations with the iterative Least Squares (LSQR) algorithm, where the coefficient matrix is large (10-50 TB) and sparse and the iterations stop when convergence is reached in the least squares sense. The two matrix-by-vector products performed at each LSQR step were GPU-ported, firstly with OpenACC and then with CUDA, resulting in a $\sim$$1.5$x and $\sim$$14$x speedup, respectively, over an original code version entirely parallelized on the CPU with MPI + OpenMP. The CUDA code was further optimized and then ported with programming frameworks portable across different GPU architectures, obtaining a further $\sim$$2$x acceleration factor. One critical section of the code consists in the computation of covariances, whose total number is $N_{\rm unk} \times (N_{\rm unk} - 1)/2$ and occupy $\sim$1 EB, being $N_{\rm unk}$$\sim$$5 \times 10^8$ the total number of unknowns. This "Big Data" issue cannot be faced with standard approaches: we defined an I/O-based pipeline made of two concurrently launched jobs, where one job, i.e., the LSQR, writes the files and the second job reads them, iteratively computes the covariances and deletes them. The pipeline does not present significant bottlenecks until a number of covariances elements equal to $\sim$$8 \times 10^6$. The code currently runs in production on Leonardo CINECA infrastructure.

astro-ph.IM

Workshop Scientific HPC in the pre-Exascale era (part of ITADATA 2024) Proceedings

The proceedings of Workshop Scientific HPC in the pre-Exascale era (SHPC), held in Pisa, Italy, September 18, 2024, are part of 3rd Italian Conference on Big Data and Data Science (ITADATA2024) proceedings (arXiv: 2503.14937). The main objective of SHPC workshop was to discuss how the current most critical questions in HPC emerge in astrophysics, cosmology, and other scientific contexts and experiments. In particular, SHPC workshop focused on: $\bullet$ Scientific (mainly in astrophysical and medical fields) applications toward (pre-)Exascale computing $\bullet$ Performance portability $\bullet$ Green computing $\bullet$ Machine learning $\bullet$ Big Data management $\bullet$ Programming on heterogeneous architectures $\bullet$ Programming on accelerators $\bullet$ I/O techniques

cs.DB

Searching for quantum-gravity footprint around stellar-mass black holes

According to the asymptotically safe gravity, black holes may have characteristics different from those described according to general relativity if the running of the gravitational constant coupling happens at low energies. Particularly, they should be more compact, with a smaller event horizon, which in turn affects the other quantities dependent on it, like the photon ring and the size of the innermost stable circular orbit. We decided to test the latter hypothesis by searching in the literature for observational measurements of the inner radius of the accretion disk around stellar-mass black holes. We selected the smallest values measured when the disk was in high/soft state, made them homogeneous by taking into account the most recent and more reliable values of mass, spin, viewing angle, and distance from the Earth, and compared with the expectations of the Kerr metric. We do not find any significant deviation. Some doubtful cases can be easily understood as due to specific states of the object during the observation or instrumental biases. We set the tightest constraint on the parameter $\xi$ obtained to date.

gr-qc

The MPI + CUDA Gaia AVU-GSR Parallel Solver Toward Next-generation Exascale Infrastructures

We ported to the GPU with CUDA the Astrometric Verification Unit-Global Sphere Reconstruction (AVU-GSR) Parallel Solver developed for the ESA Gaia mission, by optimizing a previous OpenACC porting of this application. The code aims to find, with a [10,100]$μ$as precision, the astrometric parameters of $\sim$$10^8$ stars, the attitude and instrumental settings of the Gaia satellite, and the global parameter $γ$ of the parametrized Post-Newtonian formalism, by solving a system of linear equations, $A\times x=b$, with the LSQR iterative algorithm. The coefficient matrix $A$ of the final Gaia dataset is large, with $\sim$$10^{11} \times 10^8$ elements, and sparse, reaching a size of $\sim$10-100 TB, typical for the Big Data analysis, which requires an efficient parallelization to obtain scientific results in reasonable timescales. The speedup of the CUDA code over the original AVU-GSR solver, parallelized on the CPU with MPI+OpenMP, increases with the system size and the number of resources, reaching a maximum of $\sim$14x, >9x over the OpenACC application. This result is obtained by comparing the two codes on the CINECA cluster Marconi100, with 4 V100 GPUs per node. After verifying the agreement between the solutions of a set of systems with different sizes computed with the CUDA and the OpenMP codes and that the solutions showed the required precision, the CUDA code was put in production on Marconi100, essential for an optimal AVU-GSR pipeline and the successive Gaia Data Releases. This analysis represents a first step to understand the (pre-)Exascale behavior of a class of applications that follow the same structure of this code. In the next months, we plan to run this code on the pre-Exascale platform Leonardo of CINECA, with 4 next-generation A200 GPUs per node, toward a porting on this infrastructure, where we expect to obtain even higher performances.

astro-ph.IM

The Gaia AVU-GSR parallel solver: preliminary studies of a LSQR-based application in perspective of exascale systems

The Gaia Astrometric Verification Unit-Global Sphere Reconstruction (AVU-GSR) Parallel Solver aims to find the astrometric parameters for $\sim$10$^8$ stars in the Milky Way, the attitude and the instrumental specifications of the Gaia satellite, and the global parameter $γ$ of the post Newtonian formalism. The code iteratively solves a system of linear equations, $\mathbf{A} \times \vec{x} = \vec{b}$, where the coefficient matrix $\mathbf{A}$ is large ($\sim$$10^{11} \times 10^8$ elements) and sparse. To solve this system of equations, the code exploits a hybrid implementation of the iterative PC-LSQR algorithm, where the computation related to different horizontal portions of the coefficient matrix is assigned to separate MPI processes. In the original code, each matrix portion is further parallelized over the OpenMP threads. To further improve the code performance, we ported the application to the GPU, replacing the OpenMP parallelization language with OpenACC. In this port, $\sim$95% of the data is copied from the host to the device at the beginning of the entire cycle of iterations, making the code $compute$ $bound$ rather than $data$$-$$transfer$ $bound$. The OpenACC code presents a speedup of $\sim$1.5 over the OpenMP version but further optimizations are in progress to obtain higher gains. The code runs on multiple GPUs and it was tested on the CINECA supercomputer Marconi100, in anticipation of a port to the pre-exascale system Leonardo, that will be installed at CINECA in 2022.

astro-ph.IM

Relative astrometry in an annular field

Background. Relative astrometry at or below the micro-arcsec level with a 1m class space telescope has been repeatedly proposed as a tool for exo-planet detection and characterization, as well as for several topics at the forefront of Astrophysics and Fundamental Physics. Aim. This paper investigates the potential benefits of an instrument concept based on an annular field of view, as compared to a traditional focal plane imaging a contiguous area close to the telescope optical axis. Method. Basic aspects of relative astrometry are reviewed as a function of the distribution on the sky of reference stars brighter than G = 12 mag (from Gaia EDR3). Statistics of field stars for targets down to G = 8 mag is evaluated by analysis and simulation. Results. Observation efficiency benefits from prior knowledge on individual targets, since source model is improved with few measurements. Dedicated observations (10-20 hours) can constrain the orbital inclination of exoplanets to a few degrees. Observing strategy can be tailored to include a sample of stars, materialising the reference frame, sufficiently large to average down the residual catalogue errors to the desired microarcsec level. For most targets, the annular field provides typically more reference stars, by a factor four to seven in our case, than the conventional field. The brightest reference stars for each target are up to 2 mag brighter. Conclusions. The proposed annular field telescope concept improves on observation flexibility and/or astrometric performance with respect to conventional designs. It appears therefore as an appealing contribution to optimization of future relative astrometry missions.

astro-ph.IM

Astrometric precision tests on TESS data

Background. Astrometry at or below the micro-arcsec level with an imaging telescope assumes that the uncertainty on the location of an unresolved source can be an arbitrarily small fraction of the detector pixel, given a sufficient photon budget. Aim. This paper investigates the geometric limiting precision, in terms of CCD pixel fraction, achieved by a large set of star field images, selected among the publicly available science data of the TESS mission. Method. The statistics of the distance between selected bright stars ($G \simeq 5\,mag$), in pixel units, is evaluated, using the position estimate provided in the TESS light curve files. Results. The dispersion of coordinate differences appears to be affected by long term variation and noisy periods, at the level of $0.01$ pixel. The residuals with respect to low-pass filtered data (tracing the secular evolution), which are interpreted as the experimental astrometric noise, reach the level of a few milli-pixel or below, down to $1/5,900$ pixel. Saturated images are present, evidencing that the astrometric precision is mostly preserved across the CCD columns, whereas it features a graceful degradation in the along column direction. The cumulative performance of the image set is a few micro-pixel across columns, or a few 10 micro-pixel along columns. Conclusions. The idea of astrometric precision down to a small fraction of a CCD pixel, given sufficient signal to noise ratio, is confirmed by real data from an in-flight science instrument to the $10^{-6}$ pixel level. Implications for future high precision astrometry missions are briefly discussed.

astro-ph.IM

On the principle of Astrometric Gravitational Wave Antenna

The direct detection of gravitational waves by ground-based optical interferometers has opened a new window in astronomy. Nevertheless, as these detectors are a combination of two Michelson-Morley like baselines, their sensitivity for determining the incident direction of a gravitational wave is quite weak compared to current high-precision of space astrometry. We therefore present a novel concept for a gravitational wave antenna in space that uses close pairs of point-like sources as natural sensors to record and characterize the very tiny variations in angular separations induced by a passing gravitational wave, thus operating complementarily to linear arm detectors and enabling to gain informations on the gravitational wave incoming direction. Indeed, the proposed astrometric gravitational wave observable builds on methods of relativistic astrometry that can substantially enhance the strength of gravitational wave signals by exploiting to the fullest the telescope optical resolution and, at same time, provide a powerful tool for identifying the direction to the sources that originated the gravitational wave by monitoring close pairs of stars. Furthermore, the use of two local-line-of-sights in a differential formulation avoids issues related to high order modeling of the local (Solar System) background geometry and the need for accurate satellite ephemeris and attitude.

gr-qc

Progress on the Astrometric Gravitation Probe design

The Astrometric Gravitation Probe mission is a modern version of the 1919 Dyson-Eddington-Davidson experiment, based on a space-borne telescope with a permanent built-in eclipse, provided by a coronagraphic system. The expected improvement on experimental bounds to General Relativity and competing gravitation theories is by at least two orders of magnitude. The measurement principle is reviewed, in particular the principle of Fizeau-like combination of a set of individual inverted coronagraphs simultaneously feeding a common high resolution telescope. Also, the payload has a dual field of view property, in order to support simultaneous observations of stellar fields either very close, or far away, from the Sun, i.e. fields affected by either high or low light bending. We discuss a set of solutions introduced in the optical design to improve on technical feasibility and robustness of the optical performance against perturbations, in particular induced by manufacturing and alignment tolerances, and launch stresses.

astro-ph.IM

The ASTRA project: a doorway to future astrometry

Astrometric Science and Technology Roadmap for Astrophysics (ASTRA) is a bilateral cooperation between China and Italy with the goal of consolidating astrometric measurement concepts and technologies. In particular, the objectives include critical analysis of the Gaia methodology and performance, as well as principle demonstration experiments aimed at future innovative astrometric applications requiring high precision over large angular separations (one to 180 degrees). Such measurement technologies will be the building blocks for future instrumentation focused on the "great questions" of modern cosmology, like General Relativity validity (including Dark Matter and Dark Energy behavior), formation and evolution of structure like proto-galaxies, and planetary systems formation in bio compatibles environments. We describe three principle demonstration tests designed to address some of the potential showstoppers for high astrometric precision experiments. The three tests are focused on the key concepts of multiple fields telescopes, astrometric metrology and very fine sub-pixel precision (goal: <1/2000 pixel) in white light.

astro-ph.IM

RAFTER: Ring Astrometric Field Telescope for Exo-planets and Relativity

High precision astrometry aims at source position determination to a very small fraction of the diffraction image size, in high SNR regime. One of the key limitations to such goal is the optical response variation of the telescope over a sizeable FOV, required to ensure bright reference objects to any selected target. The issue translates into severe calibration constraints, and/or the need for complex telescope and focal plane metrology. We propose an innovative system approach derived from the established TMA telescope concept, extended to achieve high filling factor of an annular field of view around the optical axis of the telescope. The proposed design is a very compact, 1 m class telescope compatible with modern CCD and CMOS detectors (EFL = 15 m). We describe the concept implementation guidelines and the optical performance of the current optical design. The diffraction limited FOV exceeds 1.25 square degrees, and the detector occupies the best 0.25 square degree with 66 devices.

astro-ph.IM

The Global sphere reconstruction (GSR) - Demonstrating an independent implementation of the astrometric core solution for Gaia

Context. The Gaia ESA mission will estimate the astrometric and physical data of more than one billion objects, providing the largest and most precise catalog of absolute astrometry in the history of Astronomy. The core of this process, the so-called global sphere reconstruction, is represented by the reduction of a subset of these objects which will be used to define the celestial reference frame. As the Hipparcos mission showed, and as is inherent to all kinds of absolute measurements, possible errors in the data reduction can hardly be identified from the catalog, thus potentially introducing systematic errors in all derived work. Aims. Following up on the lessons learned from Hipparcos, our aim is thus to develop an independent sphere reconstruction method that contributes to guarantee the quality of the astrometric results without fully reproducing the main processing chain. Methods. Indeed, given the unfeasibility of a complete replica of the data reduction pipeline, an astrometric verification unit (AVU) was instituted by the Gaia Data Processing and Analysis Consortium (DPAC). One of its jobs is to implement and operate an independent global sphere reconstruction (GSR), parallel to the baseline one (AGIS, namely Astrometric Global Iterative Solution) but limited to the primary stars and for validation purposes, to compare the two results, and to report on any significant differences. Results. Tests performed on simulated data show that GSR is able to reproduce at the sub-$μ$as level the results of the AGIS demonstration run presented in Lindegren et al. (2012). Conclusions. Further development is ongoing to improve on the treatment of real data and on the software modules that compare the AGIS and GSR solutions to identify possible discrepancies above the tolerance level set by the accuracy of the Gaia catalog.

astro-ph.IM

Application of Time Transfer Functions to Gaia's global astrometry - Validation on DPAC simulated Gaia-like observations

A key objective of the ESA Gaia satellite is the realization of a quasi-inertial reference frame at visual wavelengths by means of global astrometric techniques. This requires an accurate mathematical and numerical modeling of relativistic light propagation, as well as double-blind-like procedures for the internal validation of the results, before they are released to the scientific community at large. Aim of this work is to specialize the Time Transfer Functions (TTF) formalism to the case of the Gaia observer and prove its applicability to the task of Global Sphere Reconstruction (GSR), in anticipation of its inclusion in the GSR system, already featuring the suite of RAMOD models, as an additional semi-external validation of the forthcoming Gaia baseline astrometric solutions. We extend the current GSR framework and software infrastructure (GSR2) to include TTF relativistic observation equations compatible with Gaia's operations. We use simulated data generated by the Gaia Data Reduction and Analysis Consortium (DPAC) to obtain different least-squares estimations of the full stellar spheres and gauge results. These are compared to analogous solutions obtained with the current RAMOD model in GSR2 and to the catalog generated with GREM, the model baselined for Gaia and used to generate the DPAC synthetic data. Linearized least-squares TTF solutions are based on spheres of about 132,000 primary stars uniformly distributed on the sky and simulated observations spanning the entire 5-yr range of Gaia's nominal operational lifetime. The statistical properties of the results compare well with those of GREM. Finally, comparisons to RAMOD@GSR2 solutions confirmed the known lower accuracy of that model and allowed us to establish firm limits on the quality of the linearization point outside of which an iteration for non-linearity is required for its proper convergence.

astro-ph.IM

The Ray Tracing Analytical Solution within the RAMOD framework. The case of a Gaia-like observer

This paper presents the analytical solution of the inverse ray tracing problem for photons emitted by a star and collected by an observer located in the gravitational field of the Solar System. This solution has been conceived to suit the accuracy achievable by the ESA Gaia satellite (launched on December 19, 2013) consistently with the measurement protocol in General relativity adopted within the RAMOD framework. Aim of this study is to provide a general relativistic tool for the science exploitation of such a revolutionary mission, whose main goal is to trace back star directions from within our local curved space-time, therefore providing a three-dimensional map of our Galaxy. The results are useful for a thorough comparison and cross-checking validation of what already exists in the field of Relativistic Astrometry. Moreover, the analytical solutions presented here can be extended to model other measurements that require the same order of accuracy expected for Gaia.

gr-qc

The Erez-Rosen metric and the role of the quadrupole on light propagation

The gravitational field of a static body with quadrupole moment is described by an exact solution found by Erez and Rosen. Here we investigate the role of the quadrupole in the motion, deflection and lensing of a light ray in the above metric. The standard lensing observables like image positions and magnification have been explicitly obtained in the weak field and small quadrupole limit. In this limit the spacetime metric appears as the natural generalization to quadrupole corrections of the metric form adopted also in current astrometric models. Hence, the corresponding analytical solution of the inverse ray tracing problem as well as the consistency with other approaches are also discussed.

gr-qc

Astrometric detection feasibility of gravitational effects of quantum vacuum

This work analyzes in some detail the feasibility of testing with astrometric measurements the hypothesis that Quantum Vacuum can have gravitational effects, as suggested in a series of recent papers ([3, 6, 5]). In particular, the possibility of detecting an excess shift of the longitude of the pericenter in the orbit of the trans-neptunian system UX25 and its satellite is investigated. The excess shift which might be experimented by the orbit of the satellite was estimated, under reasonable working hypothesis, to be about 0:23 arcsec per orbit. Several observing scenarios are explored here, including those using conventional and adaptive optics telescopes from ground, and some spaceborne telescopes.

astro-ph.IM

Latest advances in an astrometric model based on the Time Transfer Functions formalism

Given the extreme accuracy of modern space astrometry, a precise relativistic modeling of observations is required. Moreover, the availability of several models formulated in different and independent ways is a security against the presence of systematic errors in the analysis of future experimental results, like in the case of the Gaia mission. In this work, we simulate a series of observations using the two models to be used for the data analysis of Gaia, the Gaia RElativistic Model (GREM) and the Relativistic Astrometric MODel (RAMOD), and we compare them with the results of our astrometric model based on the Time Transfer Functions.

gr-qc