Skip to content

Commit

Permalink
remove _check_args opt_einsum call
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Oct 17, 2023
1 parent 453400d commit dda9304
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- os: windows-latest
python-version: '3.11'
env: win
- os: ubuntu-latest
python-version: '3.11'
env: no-oe

steps:
- uses: actions/checkout@v3
Expand Down
19 changes: 19 additions & 0 deletions ci/requirements/py-no-oe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
channels:
- defaults
- conda-forge
dependencies:
- autoray
- coverage
- matplotlib
- networkx
- optuna
- pytest
- pytest-cov
- seaborn
- tqdm
- pip
- pip:
- kahypar
- nevergrad
- ray

2 changes: 0 additions & 2 deletions cotengra/hyperoptimizers/hyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,8 +565,6 @@ def _gen_results_parallel(self, repeats, trial_fn, trial_args):
yield self._get_and_report_next_future()

def _search(self, inputs, output, size_dict):
self._check_args_against_first_call(inputs, output, size_dict)

# start a timer?
if self.max_time is not None:
t0 = time.time()
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.5.3 (unreleased)
## v0.5.3 (2023-10-16)

- [``einsum``](cotengra.einsum), [`einsum_tree`](cotengra.einsum_tree)
and [`einsum_expression`](cotengra.einsum_expression): add support for all
Expand Down

0 comments on commit dda9304

Please sign in to comment.