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
6 changes: 3 additions & 3 deletions arcane/src/arcane/utils/ForLoopRanges.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// SPDX-License-Identifier: Apache-2.0
//-----------------------------------------------------------------------------
/*---------------------------------------------------------------------------*/
/* ForLoopRanges.h (C) 2000-2025 */
/* ForLoopRanges.h (C) 2000-2026 */
/* */
/* Iteration ranges for loops. */
/*---------------------------------------------------------------------------*/
Expand All @@ -31,10 +31,10 @@ template <typename IndexType, template <int T, typename> class LoopBoundType,
typename Lambda, typename... RemainingArgs>
void arcaneSequentialFor(LoopBoundType<1, IndexType> bounds, const Lambda& func, RemainingArgs... remaining_args)
{
Impl::HostKernelRemainingArgsHelper::applyAtBegin(remaining_args...);
Arcane::Impl::HostKernelRemainingArgsHelper::applyAtBegin(remaining_args...);
for (Int32 i0 = bounds.template lowerBound<0>(); i0 < bounds.template upperBound<0>(); ++i0)
func(MDIndex<1>(i0), remaining_args...);
Impl::HostKernelRemainingArgsHelper::applyAtEnd(remaining_args...);
Arcane::Impl::HostKernelRemainingArgsHelper::applyAtEnd(remaining_args...);
}

//! Applies the functor \a func on a 2D loop.
Expand Down
5 changes: 2 additions & 3 deletions arccore/src/common/arccore/common/SmallArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// SPDX-License-Identifier: Apache-2.0
//-----------------------------------------------------------------------------
/*---------------------------------------------------------------------------*/
/* SmallArray.h (C) 2000-2025 */
/* SmallArray.h (C) 2000-2026 */
/* */
/* 1D data array with pre-allocated buffer. */
/*---------------------------------------------------------------------------*/
Expand All @@ -25,7 +25,6 @@ namespace Arcane::Impl

/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/

/*!
* \internal
* \brief Allocator with pre-allocated buffer.
Expand Down Expand Up @@ -237,7 +236,7 @@ class SmallArray final
private:

char m_stack_buffer[MemorySize];
Impl::StackMemoryAllocator m_stack_allocator;
Arcane::Impl::StackMemoryAllocator m_stack_allocator;
};

/*---------------------------------------------------------------------------*/
Expand Down
Loading