Skip to content

Commit

Permalink
Merge branch 'release0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
PokhodenkoSA committed Dec 3, 2021
2 parents 22e3123 + 47a2684 commit caec81c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- dpctl-capi is now renamed to `libsyclinterface` (#666).

## [0.11.3] - 11/30/2021
## [0.11.4] - 12/03/2021

### Fixed
- Fix tests for nested context factories expecting for integration environment by @PokhodenkoSA in https://github.com/IntelPython/dpctl/pull/705

## [0.11.3] - 11/30/2021

### Fixed
- Set the last byte in allocated char array to zero [cherry picked from #650] (#699)

## [0.11.2] - 11/29/2021
Expand Down
5 changes: 2 additions & 3 deletions dpctl/tests/test_sycl_queue_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,8 @@ def test_get_current_backend():
dpctl.set_global_queue("cpu")


def test_nested_context_factory_is_empty_list():
def test_nested_context_factory_is_list():
assert isinstance(dpctl.nested_context_factories, list)
assert not dpctl.nested_context_factories


@contextlib.contextmanager
Expand All @@ -181,7 +180,7 @@ def factory():
assert factory in dpctl.nested_context_factories

assert isinstance(dpctl.nested_context_factories, list)
assert not dpctl.nested_context_factories
assert factory not in dpctl.nested_context_factories


@pytest.mark.skipif(not has_cpu(), reason="No OpenCL CPU queues available")
Expand Down

0 comments on commit caec81c

Please sign in to comment.