Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ Yuuichi Asahi
## Minor contributions

We would also like to thank contributors who have provided bug fixes and minor contributions:
-
- Md Sajid Khan
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fix incorrect `memory_space` type alias in `DerivField`.
- Fix a memory leak in `DerivFieldMem`.
Comment thread
Quntized marked this conversation as resolved.
- Fix `ddc::coordinate` called on `ddc::DiscreteElement` outside of the domain of definition in `single_interface_derivatives_calculator.hpp` and tests.
- Fix a memory leak related to an object of type `PC_tree_t` not destroyed.
Expand Down
2 changes: 1 addition & 1 deletion src/data_types/derivative_field.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class DerivField<ElementType, IdxRange<DDims...>, MemorySpace, LayoutStridedPoli
using element_type = typename base_type::element_type;

/// @brief The type of the memory space where the field is saved (CPU vs GPU).
using memory_space = typename base_type::element_type;
using memory_space = MemorySpace;

/**
* @brief The IdxRange on which the chunks in this object are defined.
Expand Down
Loading