Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristopherson committed Jan 17, 2025
1 parent ce3dab6 commit 411f72a
Show file tree
Hide file tree
Showing 21 changed files with 13,660 additions and 17,632 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.24)
project(
linalg
LANGUAGES Fortran C
VERSION 1.8.2
VERSION 1.8.3
)

# Get helper macros and functions
Expand Down
15 changes: 15 additions & 0 deletions docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
project: LINALG
summary: LINALG is a linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
project_github: https://github.com/jchristopherson/linalg
author: Jason Christopherson
author_email: [email protected]
src_dir: ./src
output_dir: ./doc
display: public
source: true
proc_internals: true
sort: permission-alpha
print_creation_date: true
creation_date: %Y-%m-%d %H:%M %z
---
4 changes: 2 additions & 2 deletions fpm.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name = "linalg"
version = "1.8.2"
version = "1.8.3"
license = "GPL-3.0"
author = "Jason Christopherson"
maintainer = "Jason Christopherson"
copyright = "Copyright 2017-2024, Jason Christopherson"
copyright = "Copyright 2017-2025, Jason Christopherson"
description = "A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines."
homepage = "https://github.com/jchristopherson/linalg"

Expand Down
12 changes: 10 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,23 @@ set(SPARSEKIT_SOURCES
set(LINALG_SOURCES
${dir}/linalg.f90
${dir}/linalg_eigen.f90
${dir}/linalg_factor.f90
${dir}/linalg_solve.f90
${dir}/linalg_sorting.f90
${dir}/linalg_basic.f90
${dir}/blas.f90
${dir}/lapack.f90
${dir}/qrupdate.f90
${dir}/sparskit.f90
${dir}/linalg_sparse.f90
${dir}/linalg_errors.f90
${dir}/linalg_lu.f90
${dir}/linalg_rz.f90
${dir}/linalg_qr.f90
${dir}/linalg_tri.f90
${dir}/linalg_cholesky.f90
${dir}/linalg_lq.f90
${dir}/linalg_svd.f90
${dir}/linalg_inverse.f90
${dir}/linalg_least_squares.f90
)
if (${BUILD_C_API})
set(LINALG_C_SOURCES
Expand Down
Loading

0 comments on commit 411f72a

Please sign in to comment.