Skip to content

Commit

Permalink
Fix repository org (change to cubed-dev)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Feb 27, 2024
1 parent 18041d4 commit d47b6c1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build-artifacts:
if: github.repository == 'tomwhite/cubed'
if: github.repository == 'cubed-dev/cubed'
runs-on: ubuntu-latest
steps:
- name: Checkout source
Expand Down
10 changes: 5 additions & 5 deletions api_status.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
| | _others_ | :white_check_mark: | | |
| Indexing | Single-axis | :white_check_mark: | | |
| | Multi-axis | :white_check_mark: | | |
| | Boolean array | :x: | 3 | Shape is data dependent, [#73](https://github.com/tomwhite/cubed/issues/73) |
| | Boolean array | :x: | 3 | Shape is data dependent, [#73](https://github.com/cubed-dev/cubed/issues/73) |
| Linear Algebra Functions | `matmul` | :white_check_mark: | | |
| | `matrix_transpose` | :white_check_mark: | | |
| | `tensordot` | :white_check_mark: | | |
Expand All @@ -49,10 +49,10 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
| | `broadcast_to` | :white_check_mark: | | |
| | `concat` | :white_check_mark: | | |
| | `expand_dims` | :white_check_mark: | | |
| | `flip` | :x: | 2 | Needs indexing with step=-1, [#114](https://github.com/tomwhite/cubed/issues/114) |
| | `flip` | :x: | 2 | Needs indexing with step=-1, [#114](https://github.com/cubed-dev/cubed/issues/114) |
| | `permute_dims` | :white_check_mark: | | |
| | `reshape` | :white_check_mark: | | Partial implementation |
| | `roll` | :x: | 2 | Use `concat` and `reshape`, [#115](https://github.com/tomwhite/cubed/issues/115) |
| | `roll` | :x: | 2 | Use `concat` and `reshape`, [#115](https://github.com/cubed-dev/cubed/issues/115) |
| | `squeeze` | :white_check_mark: | | |
| | `stack` | :white_check_mark: | | |
| Searching Functions | `argmax` | :white_check_mark: | | |
Expand All @@ -69,8 +69,8 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
| | `mean` | :white_check_mark: | | |
| | `min` | :white_check_mark: | | |
| | `prod` | :white_check_mark: | | |
| | `std` | :x: | 2 | Like `mean`, [#29](https://github.com/tomwhite/cubed/issues/29) |
| | `std` | :x: | 2 | Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29) |
| | `sum` | :white_check_mark: | | |
| | `var` | :x: | 2 | Like `mean`, [#29](https://github.com/tomwhite/cubed/issues/29) |
| | `var` | :x: | 2 | Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29) |
| Utility Functions | `all` | :white_check_mark: | | |
| | `any` | :white_check_mark: | | |
2 changes: 1 addition & 1 deletion cubed/core/gufunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def apply_gufunc(

if nout is not None:
raise NotImplementedError(
"Multiple outputs are not yet supported, see https://github.com/tomwhite/cubed/issues/69"
"Multiple outputs are not yet supported, see https://github.com/cubed-dev/cubed/issues/69"
)

# Vectorize function, if required
Expand Down
4 changes: 2 additions & 2 deletions cubed/tests/test_optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def test_fuse_diamond(spec):


# mixed levels and diamond
# from https://github.com/tomwhite/cubed/issues/126
# from https://github.com/cubed-dev/cubed/issues/126
#
# a -> a
# | /|
Expand Down Expand Up @@ -429,7 +429,7 @@ def test_fuse_mixed_levels_and_diamond(spec):


# repeated argument
# from https://github.com/tomwhite/cubed/issues/65
# from https://github.com/cubed-dev/cubed/issues/65
#
# a -> a
# | ‖
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
# documentation.

html_theme_options = {
"repository_url": "https://github.com/tomwhite/cubed",
"repository_url": "https://github.com/cubed-dev/cubed",
"use_repository_button": True,
"use_issues_button": True,
"use_edit_page_button": True,
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ test-modal = [
]

[project.urls]
homepage = "https://github.com/tomwhite/cubed"
homepage = "https://github.com/cubed-dev/cubed"
documentation = "https://tomwhite.github.io/cubed"
repository = "https://github.com/tomwhite/cubed"
repository = "https://github.com/cubed-dev/cubed"

0 comments on commit d47b6c1

Please sign in to comment.