Skip to content

Commit 59687bf

Browse files
authored
Merge pull request #325 from amklinv-nnl/main
Fix layout error
2 parents 5249282 + f3d32f3 commit 59687bf

3 files changed

Lines changed: 8 additions & 114 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 0 additions & 109 deletions
This file was deleted.
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: MacOS
1+
name: stdBLAS
22

33
on: [push, pull_request]
44

@@ -7,8 +7,11 @@ env:
77
BUILD_TYPE: RelWithDebInfo
88

99
jobs:
10-
osx-ci:
11-
runs-on: [macos-latest]
10+
osmatrix:
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest, macos-latest]
14+
runs-on: ${{ matrix.os }}
1215

1316
steps:
1417
- name: Check Out mdspan

tests/native/gtest_fixtures.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ using MdSpan::layout_stride;
5656
using MdSpan::mdspan;
5757
using MdSpan::submdspan;
5858

59-
using MdSpanEx::layout_left_padded;
60-
using MdSpanEx::layout_right_padded;
59+
using MdSpan::layout_left_padded; // not in experimental namespace
60+
using MdSpan::layout_right_padded;
6161

6262
using dbl_vector_t = mdspan<double, extents<std::size_t, dynamic_extent>>;
6363
using cpx_vector_t = mdspan<std::complex<double>, extents<std::size_t, dynamic_extent>>;

0 commit comments

Comments
 (0)