Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Closed
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
62 changes: 62 additions & 0 deletions .github/workflows/CreateTag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Create Tag and Release from Version Header
on:
push:
branches: [main]

# https://stackoverflow.com/questions/69063452/github-actions-on-release-created-workflow-trigger-not-working
# GITHUB_TOKEN is not enough to trigger the wheel build and publish workflow.
# Use personal access token for "actions" and "contents" read-write permissions.

jobs:
tag-and-release:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.DEPLOY }}
steps:
- uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'

- name: Check version consistency
run: |
echo "Checking version consistency across components..."
python update_version.py
if [ $? -ne 0 ]; then
echo "❌ Version inconsistency detected. Please run 'python update_version.py <version>' to fix."
exit 1
fi
echo "✅ All versions are consistent"

- name: Extract version from header
id: version
run: |
MAJOR=$(grep "#define SPARSEIR_VERSION_MAJOR" include/sparseir/version.h | awk '{print $3}')
MINOR=$(grep "#define SPARSEIR_VERSION_MINOR" include/sparseir/version.h | awk '{print $3}')
PATCH=$(grep "#define SPARSEIR_VERSION_PATCH" include/sparseir/version.h | awk '{print $3}')
VERSION="v${MAJOR}.${MINOR}.${PATCH}"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
echo "Version: $VERSION"

# Check if remote tag exists
git fetch --tags
if git tag -l | grep -q "^$VERSION$"; then
echo "Tag $VERSION already exists"
echo "should_create=false" >> "$GITHUB_OUTPUT"
else
echo "should_create=true" >> "$GITHUB_OUTPUT"
fi

- name: Create Release
if: steps.version.outputs.should_create == 'true'
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.version }}
name: Release ${{ steps.version.outputs.version }}
draft: false
prerelease: false
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY }}
281 changes: 19 additions & 262 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,276 +11,40 @@

## Description

This C++ library provides routines for constructing and working with the intermediate representation of correlation functions. It provides:
This library provides functions for constructing and working with the intermediate representation of correlation functions. It provides:

- on-the-fly computation of basis functions for arbitrary cutoff Λ
- basis functions and singular values are accurate to full precision
- routines for sparse sampling
- functions for sparse sampling

We use [tuwien-cms/libxprec](https://github.com/tuwien-cms/libxprec) as a double-double precision arithmetic library.
The library provides a C-API and associated thin Julia, Python, and Fortran bindings.

For user-friendly Python and Julia interfaces, please refer to the following repositories:
- https://github.com/SpM-lab/sparse-ir
- https://github.com/SpM-lab/SparseIR.jl

## Building and Installation

### Dependencies

- **CMake** (>= 3.10)
- **C++ compiler** with C++11 support
- **Fortran compiler** (optional, for Fortran bindings)

All other dependencies (including libxprec) are automatically downloaded and built during the build process using CMake's FetchContent feature. You do not need to install these manually.

### Using Build Scripts

Three build scripts are provided for easy building and installation:

1. **build_capi.sh**: Builds and installs only the C API
```bash
./build_capi.sh
```

2. **build_fortran.sh**: Builds and installs the C API and Fortran bindings
```bash
./build_fortran.sh
```

3. **build_with_tests.sh**: Builds everything including tests
```bash
./build_with_tests.sh
# After testing, you can install with:
cd build && cmake --install .
```

By default, all scripts will install to `$HOME/opt/libsparseir`. You can override this by setting the `CMAKE_INSTALL_PREFIX` environment variable:

```bash
CMAKE_INSTALL_PREFIX=/usr/local ./build_capi.sh
```

### Manual Build

If you prefer to build manually, you can use the following commands:

```bash
mkdir -p build
cd build
# For C API only
cmake .. -DSPARSEIR_BUILD_FORTRAN=OFF -DSPARSEIR_BUILD_TESTING=OFF
# For C API and Fortran bindings
cmake .. -DSPARSEIR_BUILD_FORTRAN=ON -DSPARSEIR_BUILD_TESTING=OFF
# For everything including tests
cmake .. -DSPARSEIR_BUILD_FORTRAN=ON -DSPARSEIR_BUILD_TESTING=ON

# Build
cmake --build .

# Install
cmake --install .
```



### Quick Test Build

For a quick test build with all options enabled:

```sh
rm -rf ./build && cmake -S . -B ./build -DSPARSEIR_BUILD_TESTING=ON && cmake --build ./build -j && ./build/test/libsparseirtests
```

### Testing Fortran Bindings

After building with Fortran bindings enabled, you can run the Fortran test:

```bash
cd build
./test_kernel
```

### BLAS Support

BLAS support is **mandatory and always enabled** in this library. BLAS routines are used for performance-critical operations in fitting (`fit_tau`, `fit_matsubara`) and evaluation (`evaluate_tau`, `evaluate_matsubara`).

#### Two Modes for BLAS Provision

The library supports two modes for providing BLAS functions:

1. **Link-time BLAS (default)**: BLAS library is linked at build time
2. **Runtime BLAS registration**: BLAS function pointers are provided at runtime via C-API (used when `SPARSEIR_USE_EXTERN_FBLAS_PTR` is defined)

The choice between these modes is determined at compile time based on the `SPARSEIR_USE_EXTERN_FBLAS_PTR` CMake option.

---

#### Mode 1: Link-time BLAS (Default)

In this mode, a BLAS library (OpenBLAS, Intel MKL, Apple Accelerate, etc.) is linked at build time. The Fortran BLAS functions (`dgemm_`, `zgemm_`) are called directly.

**ILP64 vs LP64 Interface:**

The library uses compile-time selection to choose between ILP64 (64-bit integers) and LP64 (32-bit integers) BLAS interfaces based on the `SPARSEIR_USE_BLAS_ILP64` CMake option:

- **LP64 (default)**: Uses 32-bit integers (`int`) for matrix dimensions. Suitable for matrices up to 2^31-1 elements.
- **ILP64**: Uses 64-bit integers (`long long`) for matrix dimensions. Required for matrices larger than 2^31-1 elements.

The interface selection is determined at compile time, so you must match the BLAS library interface with the compile-time setting.

**Building with Link-time BLAS:**

```bash
# Standard build with LP64 BLAS (default)
mkdir -p build && cd build
cmake ..
cmake --build .

# On Ubuntu with OpenBLAS (LP64)
sudo apt install libopenblas-dev
cmake ..

# On macOS (uses Accelerate framework automatically, LP64)
cmake ..
```

**For ILP64 BLAS:**

If you need ILP64 support for large matrix operations (matrices larger than 2^31 elements), install ILP64-compatible BLAS libraries and enable the ILP64 option:
Currently, the library is implemented in C++11. A Rust backend with a compatible C-API is under development.

```bash
# Ubuntu with ILP64 OpenBLAS
sudo apt install libopenblas64-0 libopenblas64-dev
cmake .. -DSPARSEIR_USE_BLAS_ILP64=ON
```

**Important**:
- The `SPARSEIR_USE_BLAS_ILP64` CMake option affects both:
1. Which BLAS library CMake searches for during configuration (sets `BLA_SIZEOF_INTEGER=8` for ILP64 or `BLA_SIZEOF_INTEGER=4` for LP64)
2. The compiled interface types in the library code (64-bit vs 32-bit integers)
- You must ensure the linked BLAS library matches the compile-time interface selection (ILP64 or LP64)

**Manual BLAS Library Specification:**

If CMake cannot automatically find the BLAS library, you can specify it manually:

```bash
# For standard LP64 BLAS
cmake .. -DBLAS_LIBRARIES=/usr/lib/x86_64-linux-gnu/libopenblas.so

# For ILP64 BLAS
cmake .. -DSPARSEIR_USE_BLAS_ILP64=ON \
-DBLAS_LIBRARIES=/usr/lib/x86_64-linux-gnu/libopenblas64.so.0

# Or use environment variables to help CMake find it
export BLA_VENDOR=OpenBLAS
cmake ..
```

---

#### Mode 2: Runtime BLAS Registration

In this mode (enabled with `-DSPARSEIR_USE_EXTERN_FBLAS_PTR=ON`), the library does not link BLAS at build time. Instead, BLAS function pointers must be registered at runtime before using the library. This mode is primarily used for language bindings (e.g., Python) where BLAS functions are provided by the host environment.

**Building with Runtime BLAS Registration:**

```bash
mkdir -p build && cd build
cmake .. -DSPARSEIR_USE_EXTERN_FBLAS_PTR=ON
cmake --build .
```

**Registering BLAS Functions:**

You must call the appropriate registration function before using any BLAS functionality. The function to call depends on the compile-time setting of `SPARSEIR_USE_BLAS_ILP64`:

- **If built with LP64** (`SPARSEIR_USE_BLAS_ILP64` not set): Call `spir_register_dgemm_zgemm_lp64`
- **If built with ILP64** (`SPARSEIR_USE_BLAS_ILP64=ON`): Call `spir_register_dgemm_zgemm_ilp64`
## Building and Installation
See [backend/cxx/README.md](backend/cxx/README.md) for more details on building the C++ backend.

**C API declarations** (only available when `SPARSEIR_USE_EXTERN_FBLAS_PTR` is defined):
For building the Fortran bindings, see [fortran/test_with_cxx_backend.sh](fortran/test_with_cxx_backend.sh).

For LP64 interface (32-bit integers):
```c
void spir_register_dgemm_zgemm_lp64(void* dgemm_fn, void* zgemm_fn);
```
For bulding the Python bindings, see [python/run_tests.sh](python/run_tests.sh).

For ILP64 interface (64-bit integers):
```c
void spir_register_dgemm_zgemm_ilp64(void* dgemm_fn, void* zgemm_fn);
```

**Important**:
- The registration function must match the compile-time interface selection (ILP64 or LP64)
- Only one registration function should be called (and only the one matching the build configuration)
- The library will throw a runtime error if BLAS functions are used without prior registration
- Function pointers must match the Fortran BLAS signature with the correct integer type (32-bit or 64-bit)

**Example (Python with ctypes for LP64 build):**

```python
import ctypes
import scipy.linalg.cython_blas as blas

lib = ctypes.CDLL("libsparseir.so")
dgemm_ptr = ctypes.cast(blas.dgemm, ctypes.c_void_p).value
zgemm_ptr = ctypes.cast(blas.zgemm, ctypes.c_void_p).value
# For LP64 build:
lib.spir_register_dgemm_zgemm_lp64(dgemm_ptr, zgemm_ptr)
# For ILP64 build, use:
# lib.spir_register_dgemm_zgemm_ilp64(dgemm_ptr, zgemm_ptr)
```

### Debug Logging at runtime

You can also control debug output at runtime using the `SPARSEIR_DEBUG` environment variable:

```bash
export SPARSEIR_DEBUG=1
./your_program
```

## Generating documentation with Doxygen

Install `doxygen` and `graphviz`. Then, run the following command:

```bash
bash generate_docs.sh
```

This will create the `docs/html` directory. Open `docs/html/index.html` with your browser to see it.
## BLAS Support
For BLAS support, refer to the [backend/cxx/README.md](backend/cxx/README.md) for more details.

## Sample code in C

Please refer [`./sample_c/README.md`](./sample_c/README.md) to learn more.

## Python Bindings

Python bindings are located in the `python/` directory. The bindings use `SPARSEIR_USE_EXTERN_FBLAS_PTR` to register BLAS function pointers from SciPy/Numpy at runtime.

### Testing Python Bindings

To test the Python bindings, use the provided `run_tests.sh` script:

```bash
cd python
./run_tests.sh
```

This script:
1. Cleans up previous build artifacts (copied source files, `.venv`, build cache)
2. Sets up the build environment using `setup_build.py`
3. Installs dependencies and rebuilds the package using `uv sync --refresh`
4. Runs the test suite using `uv run pytest tests/ -v`

The script ensures a clean build environment and automatically handles dependency management with `uv`.
The directory [`./capi_sample/`](./capi_sample/) contains sample code in C.
The shell script [`./capi_sample/run_sample.sh`](./capi_sample/run_sample.sh) will build the C++ backend and run the samples.

## For developers


### CI/CD

This project uses GitHub Actions for continuous integration and automated releases:

- **CI_cmake.yml**: Runs automated tests on every push and pull request to ensure code quality
- **CreateTag.yml**: Automatically creates tags and releases when version numbers are updated in `include/sparseir/version.h`
This project uses GitHub Actions for continuous integration and automated releases.

### Automated Release Process

Expand All @@ -291,7 +55,7 @@ The release process is fully automated:
python update_version.py 0.4.3
```
This automatically updates:
- `include/sparseir/version.h` (C++ library version)
- `backend/cxx/include/sparseir/version.h` (C++ library version)
- `python/pyproject.toml` (Python package version)

2. Review and commit the changes:
Expand All @@ -308,7 +72,7 @@ The release process is fully automated:
- Check if a tag with that version already exists
- Create a new tag and release if the version is new
- Generate release notes automatically
- Build and publish Python packages to PyPI
- Build and publish Python packages to PyPI and conda-forge

#### Version Update Script Usage

Expand All @@ -323,11 +87,4 @@ python update_version.py 1.0.0

# The script validates version format (x.y.z)
python update_version.py 1.0 # Error: Invalid format
```

**Note**: Always test the build after version updates:
```bash
cd python
pip wheel . # Test Python package build
```

```
Loading
Loading