arXiv ScienceSearch

arXiv subjects

Saurabh Singh

Publications and source records attributed to Saurabh Singh.

At least 19 recordsLinked to original sources

Towards Standardized Evaluation of GPU Memory Safety with GMSBench

As GPUs become increasingly integral to high-performance computing and machine learning, ensuring memory safety in GPU programs has become crucial for reliable and secure execution. However, evaluating GPU memory safety techniques remains challenging due to the lack of comprehensive and standardized benchmarks. In this paper, we present GMSBench, a GPU memory safety benchmark designed to evaluate a broad range of memory safety violations across different GPU memory spaces and execution scenarios. GMSBench comprises 149 self-contained CUDA tests spanning spatial, temporal, and concurrency errors. The suite provides a standardized foundation for the evaluation and comparative analysis of GPU memory safety mechanisms and helps expose gaps in their detection coverage. We demonstrate the utility of GMSBench by evaluating Compute Sanitizer, a widely used GPU memory error detection tool across multiple GPU architectures.

cs.CR

The MegaWave Radio Surveyor

Several Decadal-level questions in astrophysics, exoplanets, astrobiology, and cosmology can be addressed only at low radio frequencies inaccessible from Earth. The MegaWave Radio Surveyor would open this largely-unexplored region of the electromagnetic spectrum with a space-based interferometer to (1)~Track the space weather of other stars; (2)~Detect magnetically-generated emission from exoplanets to probe their interiors and assess magnetic shielding of their atmospheres; (3)~Probe the Universe's evolution during the Dark Ages via the highly-redshifted HI hyperfine line; and (4)~Assess the role of cosmic rays and magnetic fields in the cosmic web. An Astrophysics Strategic Technology & Research Accelerator (ASTRA) Initiative concept, the MegaWave Radio Surveyor's science objectives respond to the Pathways to Discovery Decadal Survey and three other National Academies studies, and it would serve as a Formative Era mission in the Enduring Quests, Daring Visions roadmap. Developments in U.S. space industries enable this observatory to be realized. The MegaWave Radio Surveyor would offer a versatile, scalable, and resilient architecture capable of sensitive and simultaneous observations below 45~MHz and unprecedented angular resolution at these frequencies. The concept builds upon NASA's Sun Radio Interferometer Space Experiment (SunRISE), Star-Planet Activity Research CubeSat (SPARCS), and Lunar Surface Electromagnetics Experiment (LuSEE-Night). The MegaWave Radio Surveyor could leverage multiple elements of the Artemis program, such as access to and beyond cislunar space and communications, and there are opportunities to infuse new autonomy/AI modes for mission operations. By opening one of the last windows in the electromagnetic spectrum and pioneering space interferometry at unprecedented scales, the MegaWave Radio Surveyor would establish a transformational capability.

astro-ph.IM

A novel technique for reflection coefficient measurement in precision cosmology

The detection of the global 21-cm signal from the Cosmic Dawn and Epoch of Reionisation remains a challenge to experiments worldwide. Emitted at a rest-frame frequency of 1420.405~MHz, this signal from the early Universe is redshifted to 40-200~MHz with a maximum brightness temperature of a few 100~mK. Efforts to detect this sky-averaged signal include experiments such as the Shaped Antenna measurement of the background RAdio Spectrum (SARAS) and Probing ReionizATion of the Universe using Signal from Hydrogen (PRATUSH). Detecting this faint signal requires precise calibration of the antenna, which includes a high-precision measurement of its reflection coefficient. This measurement must be performed \textit{in situ} at the observation site, as the antenna characteristics vary significantly with the environment. PRATUSH, a space-based radiometer, faces the additional challenge of structural distortions induced by thermal cycling, necessitating multiple measurements of the reflection coefficient. This work highlights the development of an \textit{in situ} Vector Network Analyser, which utilises a novel noise source-based calibration scheme and a cross-correlation spectrometer to perform magnitude and phase measurements of the complex reflection coefficient of the antenna. Further, we demonstrate the performance of the designed network analyser using independent measurements from a precision network analyser and reflection coefficient modelling of the device under test. We find the level of non-smooth calibration systematics, which need critical control for 21-cm signal detection, to be about $10^{-5}$. Finally, we study the impact of reflection coefficient correction on sky measurements, highlighting its usability for precision 21-cm observations.

astro-ph.IM

STARFIRE-2: Can we detect the global redshifted 21-cm signal from the cosmic dawn in Earth orbit?

Detecting the redshifted global 21-cm signal from the cosmic dawn (CD) remains a major challenge due to strong terrestrial Radio Frequency Interference (RFI), particularly dominated by Frequency Modulation (FM) transmissions in the 88-110 MHz range. While observations from the radio-quiet lunar farside are ideal, Earth orbit offers an intermediate and simpler alternative that may mitigate several limitations of ground-based experiments. We assess the feasibility of detecting the global 21-cm signal from Earth orbit by quantifying FM-based RFI at different altitudes and orbital configurations. We present STARFIRE-2 (Simulation of TerrestriAl Radio Frequency Interference in oRbits around Earth -- 2), an algorithm that estimates FM transmitter-based RFI intercepted by radiometers in orbit. The model constructs a global FM transmitter database and compensates for incomplete data using statistical methods. Using PRATUSH as the reference experiment, we simulate a range of orbital scenarios to identify configurations that minimize RFI and optimize sensitivity for global 21-cm detection. The algorithm can also be adapted for other experiments. Simulations indicate that conducting such an experiment from Earth orbit is feasible for a thermal noise limited instrument placed in a low-Earth, near-polar orbit. Mock sky observations further demonstrate that most theoretically plausible cosmic dawn 21-cm signals can be recovered with high confidence under these optimized orbital conditions.

astro-ph.IM

Implications of SARAS3 data for Coulomb-like interacting dark matter

The 21-cm signal from cosmic dawn is a potentially sensitive probe of interactions between dark matter (DM) and baryons. We investigate the implications of the SARAS3 non-detection in the 55.5-84.4 MHz band for Coulomb-like interacting DM (IDM). In contrast to earlier constraint analyses that focused primarily on baryon cooling, we model the interaction self-consistently by including both excess cooling of the gas and the suppression of structure formation, which delays the onset of star formation and hence suppresses the Ly$\alpha$, X-ray, and ionizing backgrounds at early times. We perform a joint Bayesian fit of a global 21-cm signal model and a flexible foreground model to the SARAS3 antenna temperature, and find that the signal parameters remain weakly constrained after marginalizing over the foregrounds. The null result is nonetheless informative: the data disfavour deep absorption features within the observed band, with the strongest bound at $z = 23.6$ ($\nu \approx 57.7$ MHz), where $T_{21} \gtrsim -277.6$ mK at $3\sigma$. Comparing the IDM and standard cold dark matter scenarios, we find no statistically significant preference for IDM (Bayes factor $B \approx 1.7$). While we do not constrain the strength of baryon-DM interactions, the SARAS3 non-detection places a meaningful upper bound on the amplitude of the global 21-cm signal in this class of models.

astro-ph.CO

CuFuzz: Hardening CUDA Programs through Transformation and Fuzzing

GPUs have gained significant popularity over the past decade, extending beyond their original role in graphics rendering. This evolution has brought GPU security and reliability to the forefront of concerns. Prior research has shown that CUDA's lack of memory safety can lead to serious vulnerabilities. While fuzzing is effective for finding such bugs on CPUs, equivalent tools for GPUs are lacking due to architectural differences and lack of built-in error detection. In this paper, we propose CuFuzz, a novel compiler-runtime co-design solution to extend state-of-the-art CPU fuzzing tools to GPU programs. CuFuzz transforms GPU programs into CPU programs using compiler IR-level transformations to enable effective fuzz testing. To the best of our knowledge, CuFuzz is the first mechanism to bring fuzzing support to CUDA, addressing a critical gap in GPU security research. By leveraging CPU memory error detectors such as Address Sanitizer, CuFuzz aims to uncover memory safety bugs and related correctness vulnerabilities in CUDA code, enhancing the security and reliability of GPU-accelerated applications. To ensure high fuzzing throughput, we introduce two compiler-runtime co-optimizations tailored for GPU code: Partial Representative Execution (PREX) and Access-Index Preserving Pruning (AXIPrune), achieving average throughput improvements of 32x with PREX and an additional 33% gain with AXIPrune on top of PREX-optimized code. Together, these optimizations can yield up to a 224.31x speedup. In our fuzzing campaigns, CuFuzz uncovered 122 security vulnerabilities in widely used benchmarks.

cs.CR

First Results from HERA Phase II

We report the first upper limits on the power spectrum of 21-cm fluctuations during the Epoch of Reionization and Cosmic Dawn from Phase II of the Hydrogen Epoch of Reionization Array (HERA) experiment. HERA Phase II constitutes several significant improvements in the signal chain compared to Phase I, most notably resulting in expanded frequency bandwidth, from 50-250 MHz. In these first upper limits, we investigate a small two-week subset of the available Phase II observations, with a focus on identifying new systematic characteristics of the instrument, and establishing an analysis pipeline to account for them. We report 2$\sigma$ upper limits in eight spectral bands, spanning $5.6 \leq z \leq 24.4$ that are consistent with thermal noise at the $2\sigma$ level for $k \gtrsim 0.6-0.9 h{\rm Mpc}^{-1}$ (band dependent). Our tightest limit during Cosmic Dawn ($z>12$) is $1.13\times 10^6 {\rm mK}^2$ at ($k=0.55 h{\rm Mpc}^{-1}, z=16.78$), and during the EoR ($5.5<z<12$) it is $1.78\times 10^3 {\rm mK}^2$ at ($k=0.70 h{\rm Mpc}^{-1}, z=7.05$). We find that mutual coupling has become our dominant systematic, leaking foreground power that strongly contaminates the low-$k$ modes, resulting in the loss of modes from $k=0.35-0.55$ compared to Phase I data.

astro-ph.CO

Detection of the Cosmological 21 cm Signal in Auto-correlation at z ~ 1 with the Canadian Hydrogen Intensity Mapping Experiment

We present the first detection of the cosmological 21 cm intensity mapping signal in auto-correlation at z ~ 1 with the Canadian Hydrogen Intensity Mapping Experiment (CHIME). Using 94 nights of observation, we have measured the 21 cm auto-power spectrum over a frequency range from 608.2 MHz to 707.8 MHz (z = 1.34 to 1.01) at 0.4 h Mpc^-1 < k < 1.5 h Mpc^-1, with a detection significance of 12.5 sigma. Our analysis employs significant improvements to the CHIME data processing pipeline compared to previous work, including novel radio frequency interference (RFI) detection and masking algorithms, achromatic beamforming techniques, and foreground filtering before time averaging to minimize spectral leakage. We establish the robustness and reliability of our detection through a comprehensive suite of validation tests. We also measure the 21 cm signal in two independent sub-bands centered at z ~ 1.08 and z ~ 1.24 with detection significance of 8.7 sigma and 9.2 sigma, respectively. We briefly discuss the theoretical interpretation of these measurements in terms of a power spectrum model, deferring the details to a companion paper. This auto-power spectrum detection demonstrates CHIME's capability to probe large-scale structure through 21 cm intensity mapping without reliance on external galaxy surveys.

astro-ph.CO

G-CSEA: A Graph-Based Conflict Set Extraction Algorithm for Identifying Infeasibility in Pseudo-Boolean Models

Workforce scheduling involves a variety of rule-based constraints-such as shift limits, staffing policies, working hour restrictions, and many similar scheduling rules-which can interact in conflicting ways, leading to infeasible models. Identifying the underlying causes of such infeasibility is critical for resolving scheduling issues and restoring feasibility. A common diagnostic approach is to compute Irreducible Infeasible Subsets (IISs): minimal sets of constraints that are jointly infeasible but become feasible when any one is removed. We consider models formulated using pseudo-Boolean constraints with inequality relations over binary variables, which naturally encode scheduling logic. Existing IIS extraction methods such as Additive Deletion and QuickXplain rely on repeated feasibility checks, often incurring large numbers of solver calls. Dual ray analysis, while effective for LP-based models, may fail when the relaxed problem is feasible but the underlying pseudo-Boolean model is not. To address these limitations, we propose Graph-based Conflict Set Extraction Algorithm (G-CSEA) to extract a conflict set, an approach inspired by Conflict-Driven Clause Learning (CDCL) in SAT solvers. Our method constructs an implication graph during constraint propagation and, upon detecting a conflict, traces all contributing constraints across both decision branches. The resulting conflict set can optionally be minimized using QuickXplain to produce an IIS.

cs.AI

Narrowing the discovery space of the cosmological 21-cm signal using multi-wavelength constraints

The cosmic 21-cm signal is a promising probe of the early Universe, owing to its sensitivity to the thermal state of the neutral intergalactic medium (IGM) and properties of the first luminous sources. Here, we constrain the 21-cm signal and infer IGM properties using the Population II galaxy parameters derived in a previous study through multi-wavelength synergies. This includes high-redshift UV luminosity functions (UVLFs) from Hubble Space Telescope (HST) and James Webb Space Telescope (JWST), cosmic X-ray and radio backgrounds (CXB and CRB), the SARAS 3 global 21-cm signal non-detection, and HERA 21-cm power spectrum upper limits. From CXB and HERA data, we infer the IGM kinetic temperature to be $T_\text{K}(z=15)\lesssim 7.7~\text{K}$, $2.5~\text{K} \lesssim T_\text{K}(z=10) \lesssim 66~\text{K}$, and $20~\text{K}\lesssim T_\text{K}(z=6) \lesssim 2078~\text{K}$ at 95% credible interval (C.I.). Similarly, CRB and HERA data limit the radio emission efficiency of galaxies, giving $T_\text{rad}(z=15) \lesssim 47~\text{K}$, $T_\text{rad}(z=10)\lesssim 51~\text{K}$, and $T_\text{rad}(z=6)\lesssim 101~\text{K}$. These constraints, strengthened by UVLFs from HST and JWST, enable the first $\textit{lower bound}$ on the cosmic 21-cm signal. We infer an absorption trough of depth ${-201~\text{mK}\lesssim T_\text{21,min} \lesssim -68~\text{mK}}$ at $z_\text{min}\approx10-16$, and a power spectrum of $8.7~\text{mK}^2 < \Delta_{21}^2(z=15) < 197~\text{mK}^2$ at $k=0.35~h\text{Mpc}^{-1}$. Our results highlight the power of multi-wavelength synergies in constraining the early Universe. While promising for upcoming 21-cm experiments, the results depend on our assumption of a redshift-independent X-ray and radio efficiency of galaxies, and the exclusion of a flexible model for Population III stars.

astro-ph.CO

PRATUSH experiment concept and design overview

PRATUSH -- Probing ReionizATion of the Universe using Signal from Hydrogen -- is a proposed cosmology experiment to detect the global red-shifted 21-cm signal from the Cosmic Dawn and Epoch of Reionization (CD/EoR). PRATUSH orbiting the Moon will seek to precisely measure the low-frequency radio sky-spectrum over 40 to 200 MHz. The scientific observations would be made in the radio-quiet region when in the farside of the Moon, and the data would be transmitted back to Earth when in the near-side. PRATUSH was proposed to the Indian Space Research Organization (ISRO) during a call for proposals in the announcement of opportunity for science payloads in 2018. PRATUSH is in the pre-project studies phase. Here we present a mission concept and baseline design of the proposed payload optimized to operate over the Cosmic Dawn signal band of 55 - 110 MHz. Starting with a description of the fundamental design principles followed, we discuss the PRATUSH baseline design and sensitivity. We further enumerate the challenges that are common to most PRATUSH like experiments, which have been proposed to seek a detection of the CD/EoR signal in orbit in the lunar farside. Due to the highly sensitive nature of the measurement, PRATUSH is designed to operate as a solo experiment with a dedicated spacecraft. Our simulations, assuming a mission lifetime of two years, estimate that PRATUSH would have the sensitivity required to detect the CD signal predicted by the standard models with varying degrees of confidence.A concept model of PRATUSH is under development, which is expected to lead to the engineering model followed by flight model subject to mission approval.

astro-ph.IM

An SBC-based controller and processor for the laboratory model of PRATUSH Digital Receiver

Probing ReionizATion of the Universe using Signal from Hydrogen (PRATUSH) is a proposed space-based radiometer that aims to detect the sky-averaged 21-cm signal from Cosmic Dawn - a crucial phase in the cosmic evolution of the Universe. PRATUSH will operate in the frequency range of 55-110 MHz. PRATUSH will conduct observations in low earth orbit in its first phase, followed by lunar orbit in the second phase. Digital correlation spectrometer is an integral subsystem of PRATUSH radiometer, enabling phase switching, digitization and generation of sky spectrum. The digital correlation spectrometer for PRATUSH laboratory model features 10-bit analog-to-digital converters (ADCs) and a Virtex-6 Field Programmable Gate Array (FPGA). A Raspberry Pi 4 Model B-based single-board computer (SBC) serves as the master controller, real-time processor and data recorder, to minimize the power, mass and volume requirement of the laboratory model. This paper presents the implementation of the PRATUSH laboratory model digital receiver, challenges arising from the use of an SBC in place of a conventional computer, and demonstrates the performance of the spectrometer when integrated with the PRATUSH laboratory model analog receiver.

astro-ph.IM

Latent Stochastic Interpolants

Stochastic Interpolants (SI) is a powerful framework for generative modeling, capable of flexibly transforming between two probability distributions. However, its use in jointly optimized latent variable models remains unexplored as it requires direct access to the samples from the two distributions. This work presents Latent Stochastic Interpolants (LSI) enabling joint learning in a latent space with end-to-end optimized encoder, decoder and latent SI models. We achieve this by developing a principled Evidence Lower Bound (ELBO) objective derived directly in continuous time. The joint optimization allows LSI to learn effective latent representations along with a generative process that transforms an arbitrary prior distribution into the encoder-defined aggregated posterior. LSI sidesteps the simple priors of the normal diffusion models and mitigates the computational demands of applying SI directly in high-dimensional observation spaces, while preserving the generative flexibility of the SI framework. We demonstrate the efficacy of LSI through comprehensive experiments on the standard large scale ImageNet generation benchmark.

cs.LG

Discretized Approximate Ancestral Sampling

The Fourier Basis Density Model (FBM) was recently introduced as a flexible probability model for band-limited distributions, i.e. ones which are smooth in the sense of having a characteristic function with limited support around the origin. Its density and cumulative distribution functions can be efficiently evaluated and trained with stochastic optimization methods, which makes the model suitable for deep learning applications. However, the model lacked support for sampling. Here, we introduce a method inspired by discretization--interpolation methods common in Digital Signal Processing, which directly take advantage of the band-limited property. We review mathematical properties of the FBM, and prove quality bounds of the sampled distribution in terms of the total variation (TV) and Wasserstein--1 divergences from the model. These bounds can be used to inform the choice of hyperparameters to reach any desired sample quality. We discuss these results in comparison to a variety of other sampling techniques, highlighting tradeoffs between computational complexity and sampling quality.

cs.IT

A Multi-Site Study of Radio Environment for Cosmology Experiments

Radio Frequency Interference (RFI) presents a significant challenge for carrying out precision measurements in radio astronomy. In particular, RFI can be a showstopper when looking for faint cosmological signals such as the red-shifted 21-cm line from cosmic dawn (CD) and epoch of reionization (EoR). As wireless communications, satellite transmissions, and other RF technologies proliferate globally, understanding the RFI landscape has become essential for site selection and data integrity. We present findings from RFI surveys conducted at four distinct locations: three locations in India, the Gauribidanur Radio Observatory in Karnataka, Twin Lakes in Ladakh, Kalpong Dam in the Andaman Islands, and the Gruvebadet Atmosphere Laboratory in Ny-{\AA}lesund, Svalbard, Norway. These sites, selected based on their geographical diversity and varying levels of human activity, were studied to assess RFI presence in 30-300 MHz bands, critical for low-frequency observations and experiments targeting the 21-cm CD/EoR signal. Using an automated RFI detection approach via the Hampel filter and singular value decomposition, the surveys identified both persistent and transient interference, which varies with location and time. The results provide a comprehensive view of the RFI environment at each site, informing the feasibility of long-term cosmological observations and aiding in the mitigation of RFI in radio astronomical data. The methods developed to characterize RFI can be easily generalized to any location and experiment.

astro-ph.IM

Exploiting synergies between JWST and cosmic 21-cm observations to uncover star formation in the early Universe

In the current era of JWST, we continue to uncover a wealth of information about the Universe deep into the Epoch of Reionization. In this work, we use a suite of simulations with 21cmSPACE, to explore the astrophysical properties of early galaxies and their imprint on high-redshift observables. Our analysis incorporates a range of multi-wavelength datasets including UV luminosity functions (UVLFs) from HST and JWST spanning $z=6-14.5$, the 21-cm global signal and power spectrum limits from SARAS 3 and HERA respectively, as well as present-day diffuse X-ray and radio backgrounds. We constrain a flexible halo-mass and redshift dependent model of star-formation efficiency (SFE), defined as the fraction of gas converted into stars, and find that it is best described by minimal redshift evolution at $z\approx 6-10$, followed by rapid evolution at $z\approx10-15$. Using Bayesian inference, we derive functional posteriors of the SFE, inferring that halos of mass $M_h=10^{10}\,\mathrm{M}_\odot$ have efficiencies of $\approx 1 - 2\%$ at $z\lesssim10$, $\approx8\%$ at $z=12$ and $\approx21\%$ at $z=15$. We also highlight the synergy between UVLFs and global 21-cm signal from SARAS 3 in constraining the minimum virial conditions required for star-formation in halos. In parallel, we find the X-ray and radio efficiencies of early galaxies to be $f_X = 0.8^{+9.7}_{-0.4}$ and $f_r \lesssim 16.9$ respectively, improving upon previous works that exclude UVLF data. Our results underscore the critical role of UVLFs in constraining early galaxy properties, and their synergy with 21-cm and other multi-wavelength observations.

astro-ph.GA

Weyl and Dirac Semimetals for Thermoelectric Applications

Weyl and Dirac semimetals, characterized by their unique band structures with linear energy dispersion (E vs k) near the Fermi level (EF), have emerged as promising candidates for next-generation technology based on thermoelectric materials. Their exceptional electronic properties, notably high carrier mobility and substantial Berry curvature, offer the potential to surmount the limitations inherent in conventional thermoelectric materials. A comprehensive understanding of the fundamental physics underlying these materials is essential. This chapter mainly focused into the topological properties and distinctive electronic band structures of Weyl and Dirac semimetals, providing a theoretical framework for comprehending their thermoelectric transport properties such as Seebeck coefficients, electrical and thermal conductivity. The pivotal role of Berry curvature in enhancing Seebeck coefficients while reducing thermal conductivity is a key focus. Experimental advancements in synthesizing single crystals and characterizing these materials have been significant. Recent development in material growth and characterization techniques have propelled research forward. The intricate relationship between material properties, such as carrier concentration, electronic bandgap, and crystal structure, and thermoelectric performance is explored. Realizing the potential of Weyl and Dirac semimetals for practical thermoelectric applications necessitates overcoming specific challenges. This chapter outlines strategies to optimize thermoelectric figures of merit (ZT) through band engineering, carrier doping, and nanostructuring. Moreover, the exploration of hybrid materials and heterostructures offers promising avenues for enhancing thermoelectric performance for renewable energy applications.

cond-mat.mtrl-sci

Global 21 cm signal: a promising probe of primordial features

Inflationary models that involve bursts of particle production generate bump-like features in the primordial power spectrum of density perturbations. These features influence the evolution of density fluctuations, leaving their unique signatures in cosmological observations. A detailed investigation of such signatures would help constrain physical processes during inflation. With this motivation, the goal of this paper is two-fold. First, we conduct a detailed analysis of the effects of bump-like primordial features on the sky-averaged 21 cm signal. Using semi-numerical simulations, we demonstrate that the primordial features can significantly alter the ionization history and the global 21 cm profile, making them a promising probe of inflationary models. We found a special scale (namely, the turnover wavenumber, $k^{\rm turn}$) at which the effect of primordial bump-like features on the global 21 cm profile vanishes. Also, we found that the behaviour of the primordial features on the global profile and ionization history are quite opposite for $k > k^{\rm turn}$ and $k < k^{\rm turn}$. We trace the root cause of these behaviours to the effects of primordial features on the halo mass function at high redshifts. Furthermore, we discuss the degeneracy between the astrophysical parameters and the primordial features in detail. Secondly, for a fixed set of astrophysical parameters, we derive upper limits on the amplitude of bump-like features in the range $10^{-1} < k\,[{\rm Mpc}^{-1}] < 10^2$ using current limits on optical depth to reionization from CMB data by Planck.

astro-ph.CO