-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from sandialabs/linalg-refactor
Merge in branch Linalg refactor that contains use of LinAlgMixin to allow c++ templating of python classes to easily switch between packages such as numpy and torch
- Loading branch information
Showing
91 changed files
with
2,505 additions
and
7,824 deletions.
There are no files selected for viewing
53 changes: 0 additions & 53 deletions
53
.github/workflows/continuous-integration-workflow-conda-ubuntu-python3.8.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
.github/workflows/continuous-integration-workflow-docs-pip.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Build Docs Using Pip | ||
|
||
on: | ||
# push: | ||
# branches: [master] | ||
# branches: [master, devel] | ||
pull_request: | ||
branches: [devel] | ||
|
||
workflow_dispatch: | ||
|
||
|
||
# # schedule: | ||
# # # * is a special character in YAML so you have to quote this string | ||
# # - cron: '*/0 * * * *' # run once a day | ||
|
||
|
||
jobs: | ||
pyapprox_unit_tests: | ||
name: Build docs with pip-build | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# os: [ubuntu-latest] | ||
python-version: [3.9, '3.10', '3.11'] | ||
os: [ubuntu-latest, macos-latest] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python ${{ matrix.python-version }} on ${{ matrix.os }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Setup PyApprox Documentation | ||
shell: bash -l {0} | ||
run: | | ||
pip install -e .[docs] | ||
- name: Create PyApprox Documentation | ||
shell: bash -l {0} | ||
run: | | ||
cd docs | ||
make html SPHINXOPTS=-vvv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.