Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
akielaries committed Mar 15, 2024
1 parent edac6d7 commit 7361e30
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-20.04

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install build dependencies
run: |
sudo apt-get install -y g++ gfortran
- name: Compile
run: |
make
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ BUILDDIR = build
SRCS = dgemm.f xerbla.f lsame.f ex_dgemm.f90
OBJS = $(patsubst %.f,$(BUILDDIR)/%.o,$(patsubst %.f90,$(BUILDDIR)/%.o,$(SRCS)))


# Executable
EXEC = ex_dgemm

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# openGPMP BLAS Reference
Basic Linear Algebra Subprograms (BLAS) reference
[![Build](https://github.com/akielaries/gpmpBLAS/actions/workflows/build.yml/badge.svg)](https://github.com/akielaries/gpmpBLAS/actions/workflows/build.yml)

My own Basic Linear Algebra Subprograms (BLAS) reference.

0 comments on commit 7361e30

Please sign in to comment.