Skip to content
Merged
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
109 changes: 0 additions & 109 deletions .github/workflows/cmake.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS
name: stdBLAS

on: [push, pull_request]

Expand All @@ -7,8 +7,11 @@ env:
BUILD_TYPE: RelWithDebInfo

jobs:
osx-ci:
runs-on: [macos-latest]
osmatrix:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Check Out mdspan
Expand Down
4 changes: 2 additions & 2 deletions tests/native/gtest_fixtures.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ using MdSpan::layout_stride;
using MdSpan::mdspan;
using MdSpan::submdspan;

using MdSpanEx::layout_left_padded;
using MdSpanEx::layout_right_padded;
using MdSpan::layout_left_padded; // not in experimental namespace
using MdSpan::layout_right_padded;

using dbl_vector_t = mdspan<double, extents<std::size_t, dynamic_extent>>;
using cpx_vector_t = mdspan<std::complex<double>, extents<std::size_t, dynamic_extent>>;
Expand Down
Loading