Skip to content

[Patch] migrate PatchDataFields from sycl::buffer to USM allocations#672

Merged
tdavidcl merged 66 commits intomainfrom
feature/migrate-to-usm
Dec 8, 2024
Merged

[Patch] migrate PatchDataFields from sycl::buffer to USM allocations#672
tdavidcl merged 66 commits intomainfrom
feature/migrate-to-usm

Conversation

@tdavidcl
Copy link
Copy Markdown
Member

@tdavidcl tdavidcl commented Nov 21, 2024

Migration to USM part 1

This PR migrate from using ResizableBuffer (sycl::buffer based) class to DeviceBuffer class (USM alloc based) for its storage.
Effectively this means that all patch related allocations are now USM instead of buffers implying most likely increase in perf and flexibility.

HOWEVER, such change cascade into a endless PR since that single line change resulted in more than 8k lines of changes ... bruh ...

TODOs

  • Perf tests

    • Single GPU
    • Tree perfs
    • Scaling ?
  • Tests SPH solver configurations

    • Single GPU
      • Sod
      • Sedov
      • Disc
      • Sinks
      • Planet Disc
    • Single CPU
      • Sod
      • Sedov
      • Disc
      • Sinks
      • Planet Disc
    • Multi GPU
      • Sod
      • Sedov
      • Disc
      • Sinks
      • Planet Disc
  • Tests AMR solver configurations

    • Sod (no refine)
    • Sod (refine)
    • Sod (no refine mpi)
    • Sod (refine mpi)
  • Tests Zeus solver configurations

    • Sod all configs
  • Tests Nbody solver configurations

    • ???

@tdavidcl
Copy link
Copy Markdown
Member Author

Additional migration of Neigh caches was forced because of the buffer synchronization rules preventing memory free of the neigh cache leading to doubling of memory consumption.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Dec 8, 2024

Pre-commit check: ✅

trim trailing whitespace.................................................Passed
fix end of files.........................................................Passed
check for merge conflicts................................................Passed
check that executables have shebangs.....................................Passed
check that scripts with shebangs are executable..........................Passed
check for added large files..............................................Passed
check for case conflicts.................................................Passed
check yaml...............................................................Passed
detect private key.......................................................Passed
Validate GitHub Workflows................................................Passed
clang-format.............................................................Passed
Check doxygen headers....................................................Passed
Check license headers....................................................Passed
Check #pragma once.......................................................Passed
Check SYCL #include......................................................Passed

Test pipeline can run.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Dec 8, 2024

Cland tidy diff report


3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

/__w/Shamrock/Shamrock/build/.env/acpp-installdir/bin/../include/AdaptiveCpp/hipSYCL/sycl/libkernel/multi_ptr.hpp:1002:1: warning: 'multi_ptr<shammodels::amr::block::StencilElement, hipsycl::sycl::access::address_space::global_space, hipsycl::sycl::access::decorated::legacy>' is deprecated [clang-diagnostic-deprecated-declarations]
 1002 | using global_ptr = multi_ptr<ElementType, access::address_space::global_space, IsDecorated>;
      | ^
/__w/Shamrock/Shamrock/build/.env/acpp-installdir/bin/../include/AdaptiveCpp/sycl/../hipSYCL/sycl/libkernel/accessor.hpp:1199:3: note: in instantiation of template type alias 'global_ptr' requested here
 1199 |   global_ptr<dataT> get_pointer() const noexcept
      |   ^
/__w/Shamrock/Shamrock/src/shammodels/amr/basegodunov/modules/StencilGenerator.cpp:199:24: note: in instantiation of template class 'hipsycl::sycl::accessor<shammodels::amr::block::StencilElement, 1, hipsycl::sycl::access_mode::read, hipsycl::sycl::target::device, hipsycl::sycl::accessor_variant::unranged>' requested here
  199 |         sycl::accessor acc_stencil_block{block_stencil_el, cgh, sycl::read_only};
      |                        ^
/__w/Shamrock/Shamrock/build/.env/acpp-installdir/bin/../include/AdaptiveCpp/hipSYCL/sycl/libkernel/multi_ptr.hpp:669:9: note: 'multi_ptr<shammodels::amr::block::StencilElement, hipsycl::sycl::access::address_space::global_space, hipsycl::sycl::access::decorated::legacy>' has been explicitly marked deprecated here
  669 | class [[deprecated]] multi_ptr<ElementType, Space, access::decorated::legacy> {
      |         ^
/__w/Shamrock/Shamrock/src/shammodels/amr/basegodunov/modules/StencilGenerator.cpp:202:83: warning: Excessive padding in 'class (lambda at /__w/Shamrock/Shamrock/src/shammodels/amr/basegodunov/modules/StencilGenerator.cpp:202:83)' (32 padding bytes, where 0 is optimal). Optimal fields order: , , , , , consider reordering the fields or adding explicit padding members [clang-analyzer-optin.performance.Padding]
  202 |         shambase::parralel_for(cgh, cell_count, "block stencil to cell lowering", [=](u64 gid) {
      |                                                                                   ^
/__w/Shamrock/Shamrock/src/shammodels/amr/basegodunov/modules/StencilGenerator.cpp:202:83: note: Excessive padding in 'class (lambda at /__w/Shamrock/Shamrock/src/shammodels/amr/basegodunov/modules/StencilGenerator.cpp:202:83)' (32 padding bytes, where 0 is optimal). Optimal fields order: , , , , , consider reordering the fields or adding explicit padding members
  202 |         shambase::parralel_for(cgh, cell_count, "block stencil to cell lowering", [=](u64 gid) {
      |                                                                                   ^

6 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

/__w/Shamrock/Shamrock/src/shammodels/sph/legacy/sphpatch.hpp:45:39: warning: 'get_max<float>' is deprecated: please use the shamalgs library instead [clang-diagnostic-deprecated-declarations]
   45 |                 tmp        = syclalg::get_max<f32>(pdat.get_field<f32>(ihpart).get_buf(), nobj);
      |                                       ^
../src/shamrock/legacy/utils/syclreduction.hpp:61:7: note: 'get_max<float>' has been explicitly marked deprecated here
   61 |     [[deprecated("please use the shamalgs library instead")]]
      |       ^
/__w/Shamrock/Shamrock/src/shammodels/sph/legacy/sphpatch.hpp:49:39: warning: 'get_max<double>' is deprecated: please use the shamalgs library instead [clang-diagnostic-deprecated-declarations]
   49 |                 tmp        = syclalg::get_max<f64>(pdat.get_field<f64>(ihpart).get_buf(), nobj);
      |                                       ^
../src/shamrock/legacy/utils/syclreduction.hpp:61:7: note: 'get_max<double>' has been explicitly marked deprecated here
   61 |     [[deprecated("please use the shamalgs library instead")]]
      |       ^

2 warnings generated.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

/__w/Shamrock/Shamrock/src/shamrock/math/integrators.cpp:232:44: warning: Excessive padding in 'class (lambda at /__w/Shamrock/Shamrock/src/shamrock/math/integrators.cpp:232:44)' (32 padding bytes, where 0 is optimal). Optimal fields order: , , , , , , , , consider reordering the fields or adding explicit padding members [clang-analyzer-optin.performance.Padding]
  232 |               cgh.parallel_for(elem_range, [=](sycl::item<1> item) {
      |                                            ^
/__w/Shamrock/Shamrock/src/shamrock/math/integrators.cpp:232:44: note: Excessive padding in 'class (lambda at /__w/Shamrock/Shamrock/src/shamrock/math/integrators.cpp:232:44)' (32 padding bytes, where 0 is optimal). Optimal fields order: , , , , , , , , consider reordering the fields or adding explicit padding members
  232 |               cgh.parallel_for(elem_range, [=](sycl::item<1> item) {
      |                                            ^

1 warning generated.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

6 warnings generated.
Suppressed 6 warnings (6 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

5 warnings generated.
Suppressed 5 warnings (5 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

7 warnings generated.
Suppressed 7 warnings (7 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (2 in non-user code, 1 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

7 warnings generated.
Suppressed 7 warnings (3 in non-user code, 4 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

5 warnings generated.
Suppressed 5 warnings (4 in non-user code, 1 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 due to line filter).

6 warnings generated.
Suppressed 6 warnings (4 in non-user code, 2 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

/__w/Shamrock/Shamrock/src/shamrock/sfc/MortonKernels.cpp:130:28: warning: Excessive padding in 'class (lambda at /__w/Shamrock/Shamrock/src/shamrock/sfc/MortonKernels.cpp:130:28)' (32 padding bytes, where 0 is optimal). Optimal fields order: , , , consider reordering the fields or adding explicit padding members [clang-analyzer-optin.performance.Padding]
  130 |                 range_cnt, [=](sycl::item<1> item) {
      |                            ^
/__w/Shamrock/Shamrock/src/shamrock/sfc/MortonKernels.cpp:130:28: note: Excessive padding in 'class (lambda at /__w/Shamrock/Shamrock/src/shamrock/sfc/MortonKernels.cpp:130:28)' (32 padding bytes, where 0 is optimal). Optimal fields order: , , , consider reordering the fields or adding explicit padding members
  130 |                 range_cnt, [=](sycl::item<1> item) {
      |                            ^

7 warnings generated.
Suppressed 6 warnings (6 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

4 warnings generated.
Suppressed 4 warnings (4 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

6 warnings generated.
Suppressed 6 warnings (6 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

14 warnings generated.
Suppressed 14 warnings (8 in non-user code, 6 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:521:9: warning: 'reatribute_particles<hipsycl::sycl::vec<float, 3>>' is deprecated: Legacy module [clang-diagnostic-deprecated-declarations]
  521 |         reatribute_particles(sched, sptree, periodic_bc);
      |         ^
/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:446:87: note: while substituting into a lambda expression here
  446 |     auto leapfrog_lambda = [&](flt old_time, bool do_force, bool do_corrector) -> flt {
      |                                                                                       ^
/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:1171:31: note: in instantiation of member function 'models::nbody::Nbody_SelfGrav<float>::evolve' requested here
 1171 | template class models::nbody::Nbody_SelfGrav<f32>;
      |                               ^
../src/shamrock/legacy/patch/comm/patch_object_mover.hpp:90:3: note: 'reatribute_particles<hipsycl::sycl::vec<float, 3>>' has been explicitly marked deprecated here
   90 | [[deprecated("Legacy module")]]
      |   ^
/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:939:45: warning: 'tree_recv_map' is deprecated: Please use CommunicationBuffer & SerializeHelper instead [clang-diagnostic-deprecated-declarations]
  939 |                     std::get<0>(interf_hndl.tree_recv_map[id_patch][interf_id]));
      |                                             ^
/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:921:83: note: while substituting into a lambda expression here
  921 |         sched.for_each_patch_data([&](u64 id_patch, Patch cur_p, PatchData &pdat) {
      |                                                                                   ^
/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:446:87: note: while substituting into a lambda expression here
  446 |     auto leapfrog_lambda = [&](flt old_time, bool do_force, bool do_corrector) -> flt {
      |                                                                                       ^
/__w/Shamrock/Shamrock/src/shammodels/nbody/models/nbody_selfgrav.cpp:1171:31: note: in instantiation of member function 'models::nbody::Nbody_SelfGrav<float>::evolve' requested here
 1171 | template class models::nbody::Nbody_SelfGrav<f32>;
      |                               ^
../src/shamrock/legacy/patch/interfaces/interface_handler_impl/interface_handler_impl_tree.hpp:136:7: note: 'tree_recv_map' has been explicitly marked deprecated here
  136 |     [[deprecated("Please use CommunicationBuffer & SerializeHelper instead")]]
      |       ^

21 warnings generated.
42 warnings generated.
Suppressed 38 warnings (26 in non-user code, 12 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

7 warnings generated.
Suppressed 7 warnings (4 in non-user code, 3 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

7 warnings generated.
Suppressed 7 warnings (5 in non-user code, 2 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

7 warnings generated.
Suppressed 7 warnings (6 in non-user code, 1 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

6 warnings generated.
Suppressed 6 warnings (6 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

13 warnings generated.
Suppressed 13 warnings (3 in non-user code, 10 due to line filter).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

3 warnings generated.
Suppressed 3 warnings (3 in non-user code).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.

Suggested changes

Detailed changes :

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Dec 8, 2024

Doxygen diff with main

Removed warnings : 498
New warnings : 608
Warnings count : 5616 → 5726 (2.0%)

Detailed changes :
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
- src/shamalgs/include/shamalgs/container/ResizableBuffer.hpp:197: warning: Found unknown command '@serialize_buf'
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:129: warning: Member index_remap(sham::DeviceScheduler_ptr &sched_ptr, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:129: warning: Member index_remap(sham::DeviceScheduler_ptr &sched_ptr, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:141: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched_ptr, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:141: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched_ptr, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:76: warning: The following parameter of shamalgs::algorithm::index_remap(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len) is not documented:
- src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:76: warning: argument 'buf' of command @param is not found in the argument list of shamalgs::algorithm::index_remap(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len)
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:78: warning: The following parameter of shamalgs::algorithm::index_remap(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len) is not documented:
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:78: warning: argument 'buf' of command @param is not found in the argument list of shamalgs::algorithm::index_remap(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len)
- src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:92: warning: The following parameter of shamalgs::algorithm::index_remap_nvar(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) is not documented:
- src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:92: warning: argument 'buf' of command @param is not found in the argument list of shamalgs::algorithm::index_remap_nvar(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar)
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:94: warning: The following parameter of shamalgs::algorithm::index_remap_nvar(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) is not documented:
+ src/shamalgs/include/shamalgs/details/algorithm/algorithm.hpp:94: warning: argument 'buf' of command @param is not found in the argument list of shamalgs::algorithm::index_remap_nvar(sycl::queue &q, sycl::buffer< T > &source_buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar)
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:175: warning: Member copybuf_discard(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:175: warning: Member copybuf_discard(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:187: warning: Member copybuf(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:187: warning: Member copybuf(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:195: warning: Member copybuf_discard(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:195: warning: Member copybuf_discard(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:199: warning: Member add_with_factor_to(sycl::queue &q, sycl::buffer< T > &buf, T factor, sycl::buffer< T > &op, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:199: warning: Member add_with_factor_to(sycl::queue &q, sycl::buffer< T > &buf, T factor, sycl::buffer< T > &op, u32 cnt) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:207: warning: Member copybuf(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:207: warning: Member copybuf(sycl::queue &q, sycl::buffer< T > &source, sycl::buffer< T > &dest, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:214: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, sycl::buffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:214: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, sycl::buffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:219: warning: Member add_with_factor_to(sycl::queue &q, sycl::buffer< T > &buf, T factor, sycl::buffer< T > &op, u32 cnt) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:219: warning: Member add_with_factor_to(sycl::queue &q, sycl::buffer< T > &buf, T factor, sycl::buffer< T > &op, u32 cnt) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:231: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, T val, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:231: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, T val, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:234: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, sycl::buffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:234: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, sycl::buffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:244: warning: Member duplicate(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf_in) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:244: warning: Member duplicate(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf_in) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:251: warning: Member write_with_offset_into(sham::DeviceQueue &q, sham::DeviceBuffer< T > &buf_ctn, sham::DeviceBuffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:251: warning: Member write_with_offset_into(sham::DeviceQueue &q, sham::DeviceBuffer< T > &buf_ctn, sham::DeviceBuffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:254: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &&vec) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:254: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &&vec) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:273: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &vec) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:273: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &vec) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:274: warning: Member write_with_offset_into(sham::DeviceQueue &q, sycl::buffer< T > &buf_ctn, sham::DeviceBuffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:274: warning: Member write_with_offset_into(sham::DeviceQueue &q, sycl::buffer< T > &buf_ctn, sham::DeviceBuffer< T > &buf_in, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:296: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, T val, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:296: warning: Member write_with_offset_into(sycl::queue &q, sycl::buffer< T > &buf_ctn, T val, u32 offset, u32 element_count) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:309: warning: Member duplicate(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf_in) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:309: warning: Member duplicate(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf_in) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:319: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &&vec) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:319: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &&vec) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:338: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &vec) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:338: warning: Member vector_to_buf(sycl::queue &q, std::vector< T > &vec) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:41: warning: Member extract_element(sham::DeviceQueue &q, sham::DeviceBuffer< T > &buf, u32 idx) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:41: warning: Member extract_element(sham::DeviceQueue &q, sham::DeviceBuffer< T > &buf, u32 idx) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:41: warning: Member set_element(sycl::queue &q, sycl::buffer< T > &buf, u32 idx, T val, bool discard_write=false) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/memory/memory.hpp:41: warning: Member set_element(sycl::queue &q, sycl::buffer< T > &buf, u32 idx, T val, bool discard_write=false) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:61: warning: Member set_element(sycl::queue &q, sycl::buffer< T > &buf, u32 idx, T val, bool discard_write=false) (function) of namespace shamalgs::memory is not documented.
+ src/shamalgs/include/shamalgs/details/memory/memory.hpp:61: warning: Member set_element(sycl::queue &q, sycl::buffer< T > &buf, u32 idx, T val, bool discard_write=false) (function) of namespace shamalgs::memory is not documented.
- src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:106: warning: Member equals_ptr(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf1, const std::unique_ptr< sycl::buffer< T > > &buf2) (function) of namespace shamalgs::reduction is not documented.
+ src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:117: warning: Member equals(sycl::queue &q, sycl::buffer< T > &buf1, sycl::buffer< T > &buf2) (function) of namespace shamalgs::reduction is not documented.
+ src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:127: warning: Member equals_ptr_s(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf1, const std::unique_ptr< sycl::buffer< T > > &buf2, u32 cnt) (function) of namespace shamalgs::reduction is not documented.
+ src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:146: warning: Member equals_ptr(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf1, const std::unique_ptr< sycl::buffer< T > > &buf2) (function) of namespace shamalgs::reduction is not documented.
- src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:42: warning: Member equals(sycl::queue &q, sycl::buffer< T > &buf1, sycl::buffer< T > &buf2, u32 cnt) (function) of namespace shamalgs::reduction is not documented.
+ src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:45: warning: Member equals(sycl::queue &q, sycl::buffer< T > &buf1, sycl::buffer< T > &buf2, u32 cnt) (function) of namespace shamalgs::reduction is not documented.
+ src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:71: warning: Member equals(sham::DeviceScheduler_ptr &q, sham::DeviceBuffer< T > &buf1, sham::DeviceBuffer< T > &buf2, u32 cnt) (function) of namespace shamalgs::reduction is not documented.
- src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:77: warning: Member equals(sycl::queue &q, sycl::buffer< T > &buf1, sycl::buffer< T > &buf2) (function) of namespace shamalgs::reduction is not documented.
- src/shamalgs/include/shamalgs/details/reduction/reduction.hpp:87: warning: Member equals_ptr_s(sycl::queue &q, const std::unique_ptr< sycl::buffer< T > > &buf1, const std::unique_ptr< sycl::buffer< T > > &buf2, u32 cnt) (function) of namespace shamalgs::reduction is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:100: warning: Member align_repr(u64 offset) (function) of namespace shamalgs::details is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:108: warning: Member serialize_byte_size() (function) of namespace shamalgs::details is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:109: warning: Member serialize_byte_size() (function) of namespace shamalgs::details is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:114: warning: Member serialize_byte_size(u64 len) (function) of namespace shamalgs::details is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:115: warning: Member serialize_byte_size(u64 len) (function) of namespace shamalgs::details is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:120: warning: Member serialize_byte_size(std::string s) (function) of namespace shamalgs::details is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:121: warning: Member serialize_byte_size(std::string s) (function) of namespace shamalgs::details is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:127: warning: Compound shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:128: warning: Compound shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:172: warning: Member get_device_scheduler() (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:173: warning: Member get_device_scheduler() (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:174: warning: Member SerializeHelper(std::shared_ptr< sham::DeviceScheduler > dev_sched) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:175: warning: Member SerializeHelper(std::shared_ptr< sham::DeviceScheduler > dev_sched) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:176: warning: Member SerializeHelper(std::shared_ptr< sham::DeviceScheduler > dev_sched, std::unique_ptr< sycl::buffer< u8 > > &&storage) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:177: warning: Member SerializeHelper(std::shared_ptr< sham::DeviceScheduler > dev_sched, std::unique_ptr< sycl::buffer< u8 > > &&storage) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:180: warning: Member allocate(SerializeSize szinfo) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:181: warning: Member allocate(SerializeSize szinfo) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:182: warning: Member finalize() (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:183: warning: Member finalize() (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:185: warning: Member serialize_byte_size() (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:186: warning: Member serialize_byte_size() (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:190: warning: Member serialize_byte_size(u64 len) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:191: warning: Member serialize_byte_size(u64 len) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:194: warning: Member serialize_byte_size(std::string s) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:195: warning: Member serialize_byte_size(std::string s) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:199: warning: Member write(T val) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:200: warning: Member write(T val) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:215: warning: Member load(T &val) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:216: warning: Member load(T &val) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:233: warning: Member write(std::string s) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:234: warning: Member write(std::string s) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:247: warning: Member load(std::string &s) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:248: warning: Member load(std::string &s) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:264: warning: Member write_buf(sycl::buffer< T > &buf, u64 len) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:265: warning: Member write_buf(sycl::buffer< T > &buf, u64 len) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:287: warning: Member load_buf(sycl::buffer< T > &buf, u64 len) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:288: warning: Member load_buf(sycl::buffer< T > &buf, u64 len) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:311: warning: Member write_buf(sham::DeviceBuffer< T > &buf, u64 len) (function) of class shamalgs::SerializeHelper is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:339: warning: Member load_buf(sham::DeviceBuffer< T > &buf, u64 len) (function) of class shamalgs::SerializeHelper is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:34: warning: Compound shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:35: warning: Compound shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:35: warning: Member head_size (variable) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:36: warning: Member content_size (variable) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:36: warning: Member head_size (variable) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:37: warning: Member content_size (variable) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:39: warning: Member operator+=(const SerializeSize &rhs) (function) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:40: warning: Member operator+=(const SerializeSize &rhs) (function) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:48: warning: Member operator+(SerializeSize lhs, const SerializeSize &rhs) (friend) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:49: warning: Member operator+(SerializeSize lhs, const SerializeSize &rhs) (friend) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:56: warning: Member operator*=(const SerializeSize &rhs) (function) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:57: warning: Member operator*=(const SerializeSize &rhs) (function) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:65: warning: Member operator*(SerializeSize lhs, const SerializeSize &rhs) (friend) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:66: warning: Member operator*(SerializeSize lhs, const SerializeSize &rhs) (friend) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:74: warning: Member operator*=(const int &rhs) (function) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:75: warning: Member operator*=(const int &rhs) (function) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:83: warning: Member operator*(SerializeSize lhs, const int &rhs) (friend) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:84: warning: Member operator*(SerializeSize lhs, const int &rhs) (friend) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:91: warning: Member Header(u64 sz) (function) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:92: warning: Member Content(u64 sz) (function) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:92: warning: Member Header(u64 sz) (function) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:93: warning: Member Content(u64 sz) (function) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:94: warning: Member get_total_size() (function) of struct shamalgs::SerializeSize is not documented.
+ src/shamalgs/include/shamalgs/serialize.hpp:95: warning: Member get_total_size() (function) of struct shamalgs::SerializeSize is not documented.
- src/shamalgs/include/shamalgs/serialize.hpp:99: warning: Member align_repr(u64 offset) (function) of namespace shamalgs::details is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:109: warning: Member X(_arg_) (macro definition) of file algorithm.cpp is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:120: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:121: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< T > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:121: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< T > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:121: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< T > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:155: warning: Member XMAC_TYPES (macro definition) of file algorithm.cpp is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:174: warning: Member X(_arg_) (macro definition) of file algorithm.cpp is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32 > &source, sham::DeviceBuffer< f32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32 > &source, sham::DeviceBuffer< f32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_16 > &source, sham::DeviceBuffer< f32_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_16 > &source, sham::DeviceBuffer< f32_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_2 > &source, sham::DeviceBuffer< f32_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_2 > &source, sham::DeviceBuffer< f32_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_3 > &source, sham::DeviceBuffer< f32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_3 > &source, sham::DeviceBuffer< f32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_4 > &source, sham::DeviceBuffer< f32_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_4 > &source, sham::DeviceBuffer< f32_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_8 > &source, sham::DeviceBuffer< f32_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_8 > &source, sham::DeviceBuffer< f32_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64 > &source, sham::DeviceBuffer< f64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64 > &source, sham::DeviceBuffer< f64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_16 > &source, sham::DeviceBuffer< f64_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_16 > &source, sham::DeviceBuffer< f64_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_2 > &source, sham::DeviceBuffer< f64_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_2 > &source, sham::DeviceBuffer< f64_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_3 > &source, sham::DeviceBuffer< f64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_3 > &source, sham::DeviceBuffer< f64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_4 > &source, sham::DeviceBuffer< f64_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_4 > &source, sham::DeviceBuffer< f64_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_8 > &source, sham::DeviceBuffer< f64_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_8 > &source, sham::DeviceBuffer< f64_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< i64_3 > &source, sham::DeviceBuffer< i64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< i64_3 > &source, sham::DeviceBuffer< i64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32 > &source, sham::DeviceBuffer< u32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32 > &source, sham::DeviceBuffer< u32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32_3 > &source, sham::DeviceBuffer< u32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32_3 > &source, sham::DeviceBuffer< u32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64 > &source, sham::DeviceBuffer< u64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64 > &source, sham::DeviceBuffer< u64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64_3 > &source, sham::DeviceBuffer< u64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64_3 > &source, sham::DeviceBuffer< u64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32 > &source, sham::DeviceBuffer< f32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32 > &source, sham::DeviceBuffer< f32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_16 > &source, sham::DeviceBuffer< f32_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_16 > &source, sham::DeviceBuffer< f32_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_2 > &source, sham::DeviceBuffer< f32_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_2 > &source, sham::DeviceBuffer< f32_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_3 > &source, sham::DeviceBuffer< f32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_3 > &source, sham::DeviceBuffer< f32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_4 > &source, sham::DeviceBuffer< f32_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_4 > &source, sham::DeviceBuffer< f32_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_8 > &source, sham::DeviceBuffer< f32_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f32_8 > &source, sham::DeviceBuffer< f32_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64 > &source, sham::DeviceBuffer< f64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64 > &source, sham::DeviceBuffer< f64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_16 > &source, sham::DeviceBuffer< f64_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_16 > &source, sham::DeviceBuffer< f64_16 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_2 > &source, sham::DeviceBuffer< f64_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_2 > &source, sham::DeviceBuffer< f64_2 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_3 > &source, sham::DeviceBuffer< f64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_3 > &source, sham::DeviceBuffer< f64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_4 > &source, sham::DeviceBuffer< f64_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_4 > &source, sham::DeviceBuffer< f64_4 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_8 > &source, sham::DeviceBuffer< f64_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< f64_8 > &source, sham::DeviceBuffer< f64_8 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< i64_3 > &source, sham::DeviceBuffer< i64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< i64_3 > &source, sham::DeviceBuffer< i64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32 > &source, sham::DeviceBuffer< u32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32 > &source, sham::DeviceBuffer< u32 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32_3 > &source, sham::DeviceBuffer< u32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32_3 > &source, sham::DeviceBuffer< u32_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64 > &source, sham::DeviceBuffer< u64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64 > &source, sham::DeviceBuffer< u64 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64_3 > &source, sham::DeviceBuffer< u64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u64_3 > &source, sham::DeviceBuffer< u64_3 > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f32_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_16 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_2 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_4 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< f64_8 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< i64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u32_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:200: warning: Member index_remap_nvar(sycl::queue &q, sycl::buffer< u64_3 > &buf, sycl::buffer< u32 > &index_map, u32 len, u32 nvar) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:34: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u32 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:34: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u32 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:37: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u32 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:37: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u32 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:37: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u64 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:37: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u64 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:40: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u64 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:40: warning: Member sort_by_key(sycl::queue &q, sycl::buffer< u64 > &buf_key, sycl::buffer< u32 > &buf_values, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/algorithm/algorithm.cpp:90: warning: Member XMAC_TYPES (macro definition) of file algorithm.cpp is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:94: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< T > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:94: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< T > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
+ src/shamalgs/src/details/algorithm/algorithm.cpp:94: warning: Member index_remap(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &source, sham::DeviceBuffer< T > &dest, sham::DeviceBuffer< u32 > &index_map, u32 len) (function) of namespace shamalgs::algorithm is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:41: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:41: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:41: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:42: warning: Member exclusive_sum(sham::DeviceScheduler_ptr sched, sham::DeviceBuffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:42: warning: Member exclusive_sum(sham::DeviceScheduler_ptr sched, sham::DeviceBuffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:42: warning: Member exclusive_sum(sham::DeviceScheduler_ptr sched, sham::DeviceBuffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:46: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:46: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:46: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:51: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:51: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:51: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:55: warning: Member exclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:55: warning: Member exclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:56: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:56: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:56: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:56: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:56: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:58: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:58: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:59: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numeric.cpp:59: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:61: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:61: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:61: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:66: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:66: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:66: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:70: warning: Member exclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:70: warning: Member exclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:72: warning: Member exclusive_sum(sham::DeviceScheduler_ptr sched, sham::DeviceBuffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:72: warning: Member exclusive_sum(sham::DeviceScheduler_ptr sched, sham::DeviceBuffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:73: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:73: warning: Member inclusive_sum(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:75: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:75: warning: Member exclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:76: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
+ src/shamalgs/src/details/numeric/numeric.cpp:76: warning: Member inclusive_sum_in_place(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:100: warning: Member inclusive_sum_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:103: warning: Member exclusive_sum_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:105: warning: Member exclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:107: warning: Member inclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:110: warning: Member stream_compact_fallback(sycl::queue &q, sycl::buffer< u32 > &buf_flags, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:110: warning: Member stream_compact_fallback(sycl::queue &q, sycl::buffer< u32 > &buf_flags, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:115: warning: Member inclusive_sum_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:117: warning: Member exclusive_sum_fallback_usm(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:121: warning: Member exclusive_sum_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:123: warning: Member exclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:125: warning: Member inclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< u32 > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:128: warning: Member stream_compact_fallback(sycl::queue &q, sycl::buffer< u32 > &buf_flags, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:128: warning: Member stream_compact_fallback(sycl::queue &q, sycl::buffer< u32 > &buf_flags, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:44: warning: Member exclusive_sum_fallback_usm(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:44: warning: Member exclusive_sum_fallback_usm(sham::DeviceScheduler_ptr &sched, sham::DeviceBuffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:44: warning: Member inclusive_sum_fallback(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:44: warning: Member inclusive_sum_fallback(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:59: warning: Member inclusive_sum_fallback(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:59: warning: Member inclusive_sum_fallback(sycl::queue &q, sycl::buffer< T > &buf1, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:65: warning: Member exclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:65: warning: Member exclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:80: warning: Member exclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:80: warning: Member exclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:84: warning: Member inclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
- src/shamalgs/src/details/numeric/numericFallback.cpp:84: warning: Member inclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:99: warning: Member inclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shamalgs/src/details/numeric/numericFallback.cpp:99: warning: Member inclusive_sum_in_place_fallback(sycl::queue &q, sycl::buffer< T > &buf, u32 len) (function) of namespace shamalgs::numeric::details is not documented.
+ src/shambackends/include/shambackends/USMPtrHolder.hpp:90: warning: Member create_nullptr(std::shared_ptr< DeviceScheduler > dev_sched) (function) of class sham::USMPtrHolder is not documented.
- src/shambackends/src/details/memoryHandle.cpp:165: warning: Member create_usm_ptr< device >(u32 size, std::shared_ptr< DeviceScheduler > dev_sched, std::optional< size_t > alignment) (function) of namespace sham::details is not documented.
- src/shambackends/src/details/memoryHandle.cpp:167: warning: Member create_usm_ptr< shared >(u32 size, std::shared_ptr< DeviceScheduler > dev_sched, std::optional< size_t > alignment) (function) of namespace sham::details is not documented.
- src/shambackends/src/details/memoryHandle.cpp:169: warning: Member create_usm_ptr< host >(u32 size, std::shared_ptr< DeviceScheduler > dev_sched, std::optional< size_t > alignment) (function) of namespace sham::details is not documented.
- src/shambackends/src/details/memoryHandle.cpp:172: warning: Member release_usm_ptr< device >(USMPtrHolder< device > &&usm_ptr_hold, details::BufferEventHandler &&events) (function) of namespace sham::details is not documented.
+ src/shambackends/src/details/memoryHandle.cpp:174: warning: Member create_usm_ptr< device >(u32 size, std::shared_ptr< DeviceScheduler > dev_sched, std::optional< size_t > alignment) (function) of namespace sham::details is not documented.
- src/shambackends/src/details/memoryHandle.cpp:174: warning: Member release_usm_ptr< shared >(USMPtrHolder< shared > &&usm_ptr_hold, details::BufferEventHandler &&events) (function) of namespace sham::details is not documented.
+ src/shambackends/src/details/memoryHandle.cpp:176: warning: Member create_usm_ptr< shared >(u32 size, std::shared_ptr< DeviceScheduler > dev_sched, std::optional< size_t > alignment) (function) of namespace sham::details is not documented.
- src/shambackends/src/details/memoryHandle.cpp:176: warning: Member release_usm_ptr< host >(USMPtrHolder< host > &&usm_ptr_hold, details::BufferEventHandler &&events) (function) of namespace sham::details is not documented.
+ src/shambackends/src/details/memoryHandle.cpp:178: warning: Member create_usm_ptr< host >(u32 size, std::shared_ptr< DeviceScheduler > dev_sched, std::optional< size_t > alignment) (function) of namespace sham::details is not documented.
+ src/shambackends/src/details/memoryHandle.cpp:181: warning: Member release_usm_ptr< device >(USMPtrHolder< device > &&usm_ptr_hold, details::BufferEventHandler &&events) (function) of namespace sham::details is not documented.
+ src/shambackends/src/details/memoryHandle.cpp:183: warning: Member release_usm_ptr< shared >(USMPtrHolder< shared > &&usm_ptr_hold, details::BufferEventHandler &&events) (function) of namespace sham::details is not documented.
+ src/shambackends/src/details/memoryHandle.cpp:185: warning: Member release_usm_ptr< host >(USMPtrHolder< host > &&usm_ptr_hold, details::BufferEventHandler &&events) (function) of namespace sham::details is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:108: warning: Member fact_p_len (variable) of class AMRTestModel is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:135: warning: Member derefine() (function) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:158: warning: Member derefine() (function) of class AMRTestModel is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:175: warning: Member step() (function) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:198: warning: Member step() (function) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:43: warning: Member RefineCritCellAccessor(sham::EventList &depends_list, u64 id_patch, shamrock::patch::Patch p, shamrock::patch::PatchData &pdat) (function) of class AMRTestModel::RefineCritCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:43: warning: Member RefineCritCellAccessor(sycl::handler &cgh, u64 id_patch, shamrock::patch::Patch p, shamrock::patch::PatchData &pdat) (function) of class AMRTestModel::RefineCritCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:53: warning: Member buf_access_read (typedef) of class AMRTestModel is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:55: warning: Member buf_access_read_write (typedef) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:55: warning: Member finalize(sham::EventList &resulting_events, u64 id_patch, shamrock::patch::Patch p, shamrock::patch::PatchData &pdat) (function) of class AMRTestModel::RefineCritCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:58: warning: Compound AMRTestModel::RefineCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:60: warning: Member field (variable) of class AMRTestModel::RefineCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:62: warning: Member RefineCellAccessor(sycl::handler &cgh, shamrock::patch::PatchData &pdat) (function) of class AMRTestModel::RefineCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:66: warning: Member dump_patch(u64 id) (function) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:70: warning: Member buf_access_read (typedef) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:72: warning: Member buf_access_read_write (typedef) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:75: warning: Compound AMRTestModel::RefineCellAccessor is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:77: warning: Member field (variable) of class AMRTestModel::RefineCellAccessor is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:79: warning: Member RefineCellAccessor(sham::EventList &depends_list, shamrock::patch::PatchData &pdat) (function) of class AMRTestModel::RefineCellAccessor is not documented.
- src/shammodels/amr/AMROverheadtest.hpp:85: warning: Member fact_p_len (variable) of class AMRTestModel is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:85: warning: Member finalize(sham::EventList &resulting_events, shamrock::patch::PatchData &pdat) (function) of class AMRTestModel::RefineCellAccessor is not documented.
+ src/shammodels/amr/AMROverheadtest.hpp:91: warning: Member dump_patch(u64 id) (function) of class AMRTestModel is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:25: warning: Compound shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:26: warning: Compound shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:27: warning: Member link_graph_field (variable) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:28: warning: Member link_count (variable) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:28: warning: Member link_graph_field (variable) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:29: warning: Member link_count (variable) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:29: warning: Member nvar (variable) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:30: warning: Member nvar (variable) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:31: warning: Member NeighGraphLinkField(NeighGraph &graph) (function) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:32: warning: Member NeighGraphLinkField(NeighGraph &graph) (function) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:34: warning: Member NeighGraphLinkField(NeighGraph &graph, u32 nvar) (function) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:35: warning: Member NeighGraphLinkField(NeighGraph &graph, u32 nvar) (function) of class shammodels::basegodunov::modules::NeighGraphLinkField is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:39: warning: Member compute_link_field(sycl::queue &q, NeighGraph &graph, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:39: warning: Member compute_link_field(sycl::queue &q, NeighGraph &graph, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:40: warning: Member compute_link_field(sham::DeviceQueue &q, sham::EventList &depends_list, sham::EventList &result_list, NeighGraph &graph, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:40: warning: Member compute_link_field(sham::DeviceQueue &q, sham::EventList &depends_list, sham::EventList &result_list, NeighGraph &graph, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:61: warning: Member compute_link_field_indep_nvar(sycl::queue &q, NeighGraph &graph, u32 nvar, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
- src/shammodels/amr/NeighGraphLinkField.hpp:61: warning: Member compute_link_field_indep_nvar(sycl::queue &q, NeighGraph &graph, u32 nvar, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:68: warning: Member compute_link_field_indep_nvar(sham::DeviceQueue &q, sham::EventList &depends_list, sham::EventList &result_list, NeighGraph &graph, u32 nvar, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
+ src/shammodels/amr/NeighGraphLinkField.hpp:68: warning: Member compute_link_field_indep_nvar(sham::DeviceQueue &q, sham::EventList &depends_list, sham::EventList &result_list, NeighGraph &graph, u32 nvar, Args &&...args) (function) of namespace shammodels::basegodunov::modules is not documented.
+ src/shammodels/amr/basegodunov/Model.hpp:102: warning: Member timestep() (function) of class shammodels::basegodunov::Model is not documented.
- src/shammodels/amr/basegodunov/Model.hpp:103: warning: Member timestep() (function) of class shammodels::basegodunov::Model is not documented.
+ src/shammodels/amr/basegodunov/Model.hpp:104: warning: Member evolve_once() (function) of class shammodels::basegodunov::Model is not documented.
- src/shammodels/amr/basegodunov/Model.hpp:105: warning: Member evolve_once() (function) of class shammodels::basegodunov::Model is not documented.
+ src/shammodels/amr/basegodunov/Model.hpp:109: warning: Member evolve_until(Tscal target_time, i32 niter_max) (function) of class shammodels::basegodunov::Model is not documented.
- src/shammodels/amr/basegodunov/Model.hpp:110: warning: Member evolve_until(Tscal target_time, i32 niter_max) (function) of class shammodels::basegodunov::Model is not documented.
+ src/shammodels/amr/basegodunov/Model.hpp:90: warning: Member get_cell_coords(std::pair< TgridVec, TgridVec > block_coords, u32 lid) (function) of class shammodels::basegodunov::Model is not documented.
- src/shammodels/amr/basegodunov/Model.hpp:91: warning: Member get_cell_coords(std::pair< TgridVec, TgridVec > block_coords, u32 lid) (function) of class shammodels::basegodunov::Model is not documented.
+ src/shammodels/amr/basegodunov/Model.hpp:98: warning: Member evolve_once_time_expl(f64 t_curr, f64 dt_input) (function) of class shammodels::basegodunov::Model is not documented.
- src/shammodels/amr/basegodunov/Model.hpp:99: warning: Member evolve_once_time_expl(f64 t_curr, f64 dt_input) (function) of class shammodels::basegodunov::Model is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:220: warning: Compound shammodels::basegodunov::modules::AMRGraphGen< Tvec, TgridVec >::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:222: warning: Member graph_iter (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:224: warning: Member acc_block_min (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:225: warning: Member acc_block_max (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:227: warning: Member dir_offset (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:228: warning: Compound shammodels::basegodunov::modules::AMRGraphGen< Tvec, TgridVec >::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:229: warning: Member AMRLowering(sycl::handler &cgh, AMRGraph &block_graph, sycl::buffer< TgridVec > &buf_block_min, sycl::buffer< TgridVec > &buf_block_max, TgridVec dir_offset) (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:230: warning: Member graph_iter (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:232: warning: Member acc_block_min (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:233: warning: Member acc_block_max (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:235: warning: Member dir_offset (variable) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:237: warning: Member AMRLowering(sycl::handler &cgh, AMRGraph &block_graph, sycl::buffer< TgridVec > &buf_block_min, sycl::buffer< TgridVec > &buf_block_max, TgridVec dir_offset) (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:239: warning: Member for_each_other_index_safe(u32 id_a, IndexFunctor &&fct) const (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:247: warning: Member for_each_other_index_safe(u32 id_a, IndexFunctor &&fct) const (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:305: warning: Member for_each_other_index_full(u32 id_a, IndexFunctor &&fct) const (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:313: warning: Member for_each_other_index_full(u32 id_a, IndexFunctor &&fct) const (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:418: warning: Member for_each_other_index(u32 id_a, IndexFunctor &&fct) const (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
+ src/shammodels/amr/basegodunov/modules/AMRGraphGen.cpp:426: warning: Member for_each_other_index(u32 id_a, IndexFunctor &&fct) const (function) of class shammodels::basegodunov::modules::AMRGraphGen::AMRLowering is not documented.
- src/shammodels/amr/zeus/Model.hpp:101: warning: Member get_cell_coords(std::pair< TgridVec, TgridVec > block_coords, u32 lid) (function) of class shammodels::zeus::Model is not documented.
+ src/shammodels/amr/zeus/Model.hpp:103: warning: Member get_cell_coords(std::pair< TgridVec, TgridVec > block_coords, u32 lid) (function) of class shammodels::zeus::Model is not documented.
- src/shammodels/amr/zeus/modules/FaceFlagger.cpp:162: warning: Compound AMRNeighIds is not documented.
- src/shammodels/amr/zeus/modules/FaceFlagger.cpp:171: warning: Member id_patch (variable) of struct AMRNeighIds is not documented.
+ src/shammodels/amr/zeus/modules/FaceFlagger.cpp:174: warning: Compound AMRNeighIds is not documented.
- src/shammodels/amr/zeus/modules/FaceFlagger.cpp:177: warning: Member level_p1 (variable) of struct AMRNeighIds is not documented.
+ src/shammodels/amr/zeus/modules/FaceFlagger.cpp:183: warning: Member id_patch (variable) of struct AMRNeighIds is not documented.
+ src/shammodels/amr/zeus/modules/FaceFlagger.cpp:189: warning: Member level_p1 (variable) of struct AMRNeighIds is not documented.
- src/shammodels/amr/zeus/modules/FaceFlagger.cpp:190: warning: Member level_m1 (variable) of struct AMRNeighIds is not documented.
+ src/shammodels/amr/zeus/modules/FaceFlagger.cpp:202: warning: Member level_m1 (variable) of struct AMRNeighIds is not documented.
- src/shammodels/amr/zeus/modules/FaceFlagger.cpp:206: warning: Member level_same (variable) of struct AMRNeighIds is not documented.
+ src/shammodels/amr/zeus/modules/FaceFlagger.cpp:218: warning: Member level_same (variable) of struct AMRNeighIds is not documented.
- src/shammodels/generic/algs/integrators_utils.hpp:25: warning: Member field_advance_time(sycl::queue &queue, sycl::buffer< T > &buf_val, sycl::buffer< T > &buf_der, sycl::range< 1 > elem_range, flt dt) (function) of file integrators_utils.hpp is not documented.
- src/shammodels/generic/setup/modifiers.hpp:133: warning: Member get_sum(PatchScheduler &sched, std::string name) (function) of namespace generic::setup::modifiers is not documented.
+ src/shammodels/generic/setup/modifiers.hpp:136: warning: Member get_sum(PatchScheduler &sched, std::string name) (function) of namespace generic::setup::modifiers is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:111: warning: Compound FMMInteract_cd is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:113: warning: Compound FMMInteract_cd is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:118: warning: Member FMMInteract_cd(flt open_crit) (function) of class FMMInteract_cd is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:120: warning: Member FMMInteract_cd(flt open_crit) (function) of class FMMInteract_cd is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:120: warning: Member interact_cd_cell_cell(const FMMInteract_cd &cd, vec b1_min, vec b1_max, vec b2_min, vec b2_max) (function) of class FMMInteract_cd is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:122: warning: Member interact_cd_cell_cell(const FMMInteract_cd &cd, vec b1_min, vec b1_max, vec b2_min, vec b2_max) (function) of class FMMInteract_cd is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:138: warning: Member interact_cd_cell_patch(const FMMInteract_cd &cd, vec b1_min, vec b1_max, vec b2_min, vec b2_max, flt b1_min_slength, flt b1_max_slength, flt b2_min_slength, flt b2_max_slength) (function) of class FMMInteract_cd is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:140: warning: Member interact_cd_cell_patch(const FMMInteract_cd &cd, vec b1_min, vec b1_max, vec b2_min, vec b2_max, flt b1_min_slength, flt b1_max_slength, flt b2_min_slength, flt b2_max_slength) (function) of class FMMInteract_cd is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:164: warning: Member interact_cd_cell_patch_outdomain(const FMMInteract_cd &cd, vec b1_min, vec b1_max, vec b2_min, vec b2_max, flt b1_min_slength, flt b1_max_slength, flt b2_min_slength, flt b2_max_slength) (function) of class FMMInteract_cd is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:166: warning: Member interact_cd_cell_patch_outdomain(const FMMInteract_cd &cd, vec b1_min, vec b1_max, vec b2_min, vec b2_max, flt b1_min_slength, flt b1_max_slength, flt b2_min_slength, flt b2_max_slength) (function) of class FMMInteract_cd is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:179: warning: Member compute_multipoles(Tree &rtree, sycl::buffer< vec > &pos_part, sycl::buffer< flt > &grav_multipoles, flt gpart_mass) (function) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:181: warning: Member compute_multipoles(Tree &rtree, sham::DeviceBuffer< vec > &pos_part, sycl::buffer< flt > &grav_multipoles, flt gpart_mass) (function) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:27: warning: Member console_tag (variable) of file nbody_selfgrav.cpp is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:28: warning: Member console_tag (variable) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:29: warning: Member fmm_order (variable) of file nbody_selfgrav.cpp is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:30: warning: Member fmm_order (variable) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:334: warning: Member field_advance_time(sham::DeviceQueue &queue, sham::DeviceBuffer< T > &buf_val, sham::DeviceBuffer< T > &buf_der, sycl::range< 1 > elem_range, flt dt) (function) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:47: warning: Member sycl_move_parts(sham::DeviceQueue &queue, u32 npart, flt dt, sham::DeviceBuffer< vec3 > &buf_xyz, sham::DeviceBuffer< vec3 > &buf_vxyz) (function) of file nbody_selfgrav.cpp is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:48: warning: Member sycl_move_parts(sycl::queue &queue, u32 npart, flt dt, const std::unique_ptr< sycl::buffer< vec3 > > &buf_xyz, const std::unique_ptr< sycl::buffer< vec3 > > &buf_vxyz) (function) of file nbody_selfgrav.cpp is not documented.
- src/shammodels/nbody/models/nbody_selfgrav.cpp:77: warning: Member sycl_position_modulo(sycl::queue &queue, u32 npart, const std::unique_ptr< sycl::buffer< vec3 > > &buf_xyz, std::tuple< vec3, vec3 > box) (function) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/nbody/models/nbody_selfgrav.cpp:78: warning: Member sycl_position_modulo(sham::DeviceQueue &queue, u32 npart, sham::DeviceBuffer< vec3 > &buf_xyz, std::tuple< vec3, vec3 > box) (function) of file nbody_selfgrav.cpp is not documented.
+ src/shammodels/sph/Model.cpp:189: warning: Member post_insert_data(PatchScheduler &sched) (function) of file Model.cpp is not documented.
- src/shammodels/sph/Model.cpp:190: warning: Member post_insert_data(PatchScheduler &sched) (function) of file Model.cpp is not documented.
+ src/shammodels/sph/Model.cpp:592: warning: Compound BigDiscUtils is not documented.
- src/shammodels/sph/Model.cpp:593: warning: Compound BigDiscUtils is not documented.
+ src/shammodels/sph/Model.cpp:594: warning: Member Tscal (typedef) of class BigDiscUtils is not documented.
+ src/shammodels/sph/Model.cpp:595: warning: Member Out (typedef) of class BigDiscUtils is not documented.
- src/shammodels/sph/Model.cpp:595: warning: Member Tscal (typedef) of class BigDiscUtils is not documented.
- src/shammodels/sph/Model.cpp:596: warning: Member Out (typedef) of class BigDiscUtils is not documented.
+ src/shammodels/sph/Model.cpp:597: warning: Compound BigDiscUtils::DiscIterator is not documented.
- src/shammodels/sph/Model.cpp:598: warning: Compound BigDiscUtils::DiscIterator is not documented.
+ src/shammodels/sph/Model.cpp:620: warning: Member DiscIterator(Tvec center, Tscal central_mass, u64 Npart, Tscal r_in, Tscal r_out, Tscal disc_mass, Tscal p, Tscal H_r_in, Tscal q, Tscal G, std::mt19937 eng, std::function< Tscal(Tscal)> sigma_profile, std::function< Tscal(Tscal)> cs_profile, std::function< Tscal(Tscal)> rot_profile) (function) of class BigDiscUtils::DiscIterator is not documented.
- src/shammodels/sph/Model.cpp:621: warning: Member DiscIterator(Tvec center, Tscal central_mass, u64 Npart, Tscal r_in, Tscal r_out, Tscal disc_mass, Tscal p, Tscal H_r_in, Tscal q, Tscal G, std::mt19937 eng, std::function< Tscal(Tscal)> sigma_profile, std::function< Tscal(Tscal)> cs_profile, std::function< Tscal(Tscal)> rot_profile) (function) of class BigDiscUtils::DiscIterator is not documented.
+ src/shammodels/sph/Model.cpp:645: warning: Member is_done() (function) of class BigDiscUtils::DiscIterator is not documented.
- src/shammodels/sph/Model.cpp:646: warning: Member is_done() (function) of class BigDiscUtils::DiscIterator is not documented.
+ src/shammodels/sph/Model.cpp:647: warning: Member next() (function) of class BigDiscUtils::DiscIterator is not documented.
- src/shammodels/sph/Model.cpp:648: warning: Member next() (function) of class BigDiscUtils::DiscIterator is not documented.
+ src/shammodels/sph/Model.cpp:710: warning: Member next_n(u32 nmax) (function) of class BigDiscUtils::DiscIterator is not documented.
- src/shammodels/sph/Model.cpp:711: warning: Member next_n(u32 nmax) (function) of class BigDiscUtils::DiscIterator is not documented.
- src/shammodels/sph/Model.hpp:416: warning: Member add_cube_disc_3d(Tvec center, u32 Npart, Tscal p, Tscal rho_0, Tscal m, Tscal r_in, Tscal r_out, Tscal q, Tscal cmass) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:419: warning: Member add_cube_disc_3d(Tvec center, u32 Npart, Tscal p, Tscal rho_0, Tscal m, Tscal r_in, Tscal r_out, Tscal q, Tscal cmass) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:570: warning: Member remap_positions(std::function< Tvec(Tvec)> map) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:572: warning: Member push_particle(std::vector< Tvec > &part_pos_insert, std::vector< Tscal > &part_hpart_insert, std::vector< Tscal > &part_u_insert) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:573: warning: Member remap_positions(std::function< Tvec(Tvec)> map) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:575: warning: Member push_particle(std::vector< Tvec > &part_pos_insert, std::vector< Tscal > &part_hpart_insert, std::vector< Tscal > &part_u_insert) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:578: warning: Member set_value_in_a_box(std::string field_name, T val, std::pair< Tvec, Tvec > box) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:581: warning: Member set_value_in_a_box(std::string field_name, T val, std::pair< Tvec, Tvec > box) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:608: warning: Member set_value_in_sphere(std::string field_name, T val, Tvec center, Tscal radius) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:614: warning: Member set_value_in_sphere(std::string field_name, T val, Tvec center, Tscal radius) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:639: warning: Member add_kernel_value(std::string field_name, T val, Tvec center, Tscal h_ker) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:648: warning: Member add_kernel_value(std::string field_name, T val, Tvec center, Tscal h_ker) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:669: warning: Member get_sum(std::string name) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:681: warning: Member get_sum(std::string name) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:685: warning: Member get_closest_part_to(Tvec pos) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:695: warning: Member set_solver_config(typename Solver::Config cfg) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:697: warning: Member get_closest_part_to(Tvec pos) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:697: warning: Member solver_logs_last_rate() (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:698: warning: Member solver_logs_last_obj_count() (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:699: warning: Member change_htolerance(Tscal in) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:707: warning: Member set_solver_config(typename Solver::Config cfg) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:709: warning: Member solver_logs_last_rate() (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:710: warning: Member solver_logs_last_obj_count() (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:711: warning: Member change_htolerance(Tscal in) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:775: warning: Member evolve_once_time_expl(f64 t_curr, f64 dt_input) (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:777: warning: Member timestep() (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:779: warning: Member evolve_once() (function) of class shammodels::sph::Model is not documented.
- src/shammodels/sph/Model.hpp:784: warning: Member evolve_until(Tscal target_time, i32 niter_max) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:787: warning: Member evolve_once_time_expl(f64 t_curr, f64 dt_input) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:789: warning: Member timestep() (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:791: warning: Member evolve_once() (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/Model.hpp:796: warning: Member evolve_until(Tscal target_time, i32 niter_max) (function) of class shammodels::sph::Model is not documented.
+ src/shammodels/sph/SPHUtilities.hpp:106: warning: Member iterate_smoothing_length_cache(sham::DeviceBuffer< vec > &merged_r, sham::DeviceBuffer< flt > &hnew, sham::DeviceBuffer< flt > &hold, sham::DeviceBuffer< flt > &eps_h, sycl::range< 1 > update_range, shamrock::tree::ObjectCache &neigh_cache, flt gpart_mass, flt h_evol_max, flt h_evol_iter_max) (function) of class shammodels::sph::SPHUtilities is not documented.
- src/shammodels/sph/SPHUtilities.hpp:106: warning: Member iterate_smoothing_length_cache(sycl::buffer< vec > &merged_r, sycl::buffer< flt > &hnew, sycl::buffer< flt > &hold, sycl::buffer< flt > &eps_h, sycl::range< 1 > update_range, shamrock::tree::ObjectCache &neigh_cache, flt gpart_mass, flt h_evol_max, flt h_evol_iter_max) (function) of class shammodels::sph::SPHUtilities is not documented.
+ src/shammodels/sph/SPHUtilities.hpp:148: warning: Member compute_omega(sham::DeviceBuffer< vec > &merged_r, sham::DeviceBuffer< flt > &h_part, sham::DeviceBuffer< flt > &omega_h, sycl::range< 1 > part_range, shamrock::tree::ObjectCache &neigh_cache, flt gpart_mass) (function) of class shammodels::sph::SPHUtilities is not documented.
- src/shammodels/sph/SPHUtilities.hpp:148: warning: Member compute_omega(sycl::buffer< vec > &merged_r, sycl::buffer< flt > &h_part, sycl::buffer< flt > &omega_h, sycl::range< 1 > part_range, shamrock::tree::ObjectCache &neigh_cache, flt gpart_mass) (function) of class shammodels::sph::SPHUtilities is not documented.
- src/shammodels/sph/Solver.cpp:306: warning: Compound shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:307: warning: Member Tscal (typedef) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:309: warning: Compound shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:309: warning: Member nobj (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:310: warning: Member Tscal (typedef) of struct shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:310: warning: Member gpart_mass (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:312: warning: Member buf_xyz (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:312: warning: Member nobj (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:313: warning: Member buf_hpart (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:313: warning: Member gpart_mass (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:314: warning: Member buf_vxyz (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:315: warning: Member buf_xyz (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:316: warning: Member buf_hpart (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
+ src/shammodels/sph/Solver.cpp:317: warning: Member buf_vxyz (variable) of struct shammodels::sph::Debug_ph_dump is not documented.
- src/shammodels/sph/Solver.cpp:318: warning: Member fill_blocks(PhantomDumpBlock &block, Debug_ph_dump< Tvec > &info) (function) of namespace shammodels::sph is not documented.
- src/shammodels/sph/Solver.cpp:318: warning: Member fill_blocks(PhantomDumpBlock &block, Debug_ph_dump< Tvec > &info) (function) of namespace shammodels::sph is not documented.
+ src/shammodels/sph/Solver.cpp:321: warning: Member fill_blocks(PhantomDumpBlock &block, Debug_ph_dump< Tvec > &info) (function) of namespace shammodels::sph is not documented.
+ src/shammodels/sph/Solver.cpp:321: warning: Member fill_blocks(PhantomDumpBlock &block, Debug_ph_dump< Tvec > &info) (function) of namespace shammodels::sph is not documented.
- src/shammodels/sph/Solver.cpp:355: warning: Member make_interface_debug_phantom_dump(Debug_ph_dump< Tvec > info) (function) of namespace shammodels::sph is not documented.
- src/shammodels/sph/Solver.cpp:355: warning: Member make_interface_debug_phantom_dump(Debug_ph_dump< Tvec > info) (function) of namespace shammodels::sph is not documented.
+ src/shammodels/sph/Solver.cpp:358: warning: Member make_interface_debug_phantom_dump(Debug_ph_dump< Tvec > info) (function) of namespace shammodels::sph is not documented.
+ src/shammodels/sph/Solver.cpp:358: warning: Member make_interface_debug_phantom_dump(Debug_ph_dump< Tvec > info) (function) of namespace shammodels::sph is not documented.
- src/shamrock/amr/AMRGrid.hpp:145: warning: Member get_process_refine_count(shambase::DistributedData< OptIndexList > &splits) (function) of class shamrock::amr::AMRGrid is not documented.
+ src/shamrock/amr/AMRGrid.hpp:153: warning: Member get_process_refine_count(shambase::DistributedData< OptIndexList > &splits) (function) of class shamrock::amr::AMRGrid is not documented.
- src/shamrock/amr/AMRGrid.hpp:156: warning: Member gen_merge_list(Fct &&lambd) (function) of class shamrock::amr::AMRGrid is not documented.
+ src/shamrock/amr/AMRGrid.hpp:164: warning: Member gen_merge_list(Fct &&lambd) (function) of class shamrock::amr::AMRGrid is not documented.
- src/shamrock/amr/AMRGrid.hpp:329: warning: Member apply_merge(shambase::DistributedData< OptIndexList > &&splts, Fct &&lambd) (function) of class shamrock::amr::AMRGrid is not documented.
+ src/shamrock/amr/AMRGrid.hpp:360: warning: Member apply_merge(shambase::DistributedData< OptIndexList > &&splts, Fct &&lambd) (function) of class shamrock::amr::AMRGrid is not documented.
- src/shamrock/amr/AMRGrid.hpp:429: warning: Member make_base_grid(Tcoord bmin, Tcoord cell_size, std::array< u32, dim > cell_count) (function) of class shamrock::amr::AMRGrid is not documented.
+ src/shamrock/amr/AMRGrid.hpp:467: warning: Member make_base_grid(Tcoord bmin, Tcoord cell_size, std::array< u32, dim > cell_count) (function) of class shamrock::amr::AMRGrid is not documented.
- src/shamrock/legacy/patch/base/patchdata_field.cpp:106: warning: Member X(a) (macro definition) of file patchdata_field.cpp is not documented.
+ src/shamrock/legacy/patch/base/patchdata_field.cpp:121: warning: Member X(a) (macro definition) of file patchdata_field.cpp is not documented.
+ src/shamrock/legacy/patch/comm/patch_object_mover.hpp:317: warning: Member reatribute_particles< f64_3 >(PatchScheduler &sched, SerialPatchTree< f64_3 > &sptree, bool periodic) (function) of file patch_object_mover.hpp is not documented.
- src/shamrock/legacy/patch/comm/patch_object_mover.hpp:318: warning: Member reatribute_particles< f64_3 >(PatchScheduler &sched, SerialPatchTree< f64_3 > &sptree, bool periodic) (function) of file patch_object_mover.hpp is not documented.
- src/shamrock/legacy/patch/interfaces/interface_generator_impl.hpp:155: warning: Member append_interface_field(sycl::queue &queue, shamrock::patch::PatchData &pdat, PatchDataField< T > &pdat_cfield, std::vector< vectype > boxs_min, std::vector< vectype > boxs_max) (function) of namespace impl is not documented.
+ src/shamrock/legacy/patch/interfaces/interface_generator_impl.hpp:165: warning: Member append_interface_field(sycl::queue &queue, shamrock::patch::PatchData &pdat, PatchDataField< T > &pdat_cfield, std::vector< vectype > boxs_min, std::vector< vectype > boxs_max) (function) of namespace impl is not documented.
+ src/shamrock/legacy/utils/syclreduction.hpp:131: warning: Member get_min(sham::DeviceBuffer< T > &buf, u32 len) (function) of namespace syclalg is not documented.
+ src/shamrock/legacy/utils/syclreduction.hpp:165: warning: Member get_min_max(sycl::queue &queue, const std::unique_ptr< sycl::buffer< T > > &buf, u32 len) (function) of namespace syclalg is not documented.
+ src/shamrock/legacy/utils/syclreduction.hpp:202: warning: Member get_min_max(sham::DeviceBuffer< T > &buf, u32 len) (function) of namespace syclalg is not documented.
- src/shamrock/legacy/utils/syclreduction.hpp:28: warning: Member get_max(sycl::queue &queue, const std::unique_ptr< sycl::buffer< T > > &buf, u32 len) (function) of namespace syclalg is not documented.
+ src/shamrock/legacy/utils/syclreduction.hpp:29: warning: Member get_max(sycl::queue &queue, const std::unique_ptr< sycl::buffer< T > > &buf, u32 len) (function) of namespace syclalg is not documented.
+ src/shamrock/legacy/utils/syclreduction.hpp:62: warning: Member get_max(sham::DeviceBuffer< T > &buf, u32 len) (function) of namespace syclalg is not documented.
- src/shamrock/legacy/utils/syclreduction.hpp:62: warning: Member get_min(sycl::queue &queue, const std::unique_ptr< sycl::buffer< T > > &buf, u32 len) (function) of namespace syclalg is not documented.
+ src/shamrock/legacy/utils/syclreduction.hpp:96: warning: Member get_min(sycl::queue &queue, const std::unique_ptr< sycl::buffer< T > > &buf, u32 len) (function) of namespace syclalg is not documented.
- src/shamrock/legacy/utils/syclreduction.hpp:98: warning: Member get_min_max(sycl::queue &queue, const std::unique_ptr< sycl::buffer< T > > &buf, u32 len) (function) of namespace syclalg is not documented.
- src/shamrock/math/integrators.hpp:27: warning: Member forward_euler(sycl::queue &queue, sycl::buffer< T > &buf_val, sycl::buffer< T > &buf_der, sycl::range< 1 > elem_range, flt dt) (function) of namespace shamrock::integrators is not documented.
+ src/shamrock/math/integrators.hpp:28: warning: Member forward_euler(sham::DeviceQueue &queue, sham::DeviceBuffer< T > &buf_val, sham::DeviceBuffer< T > &buf_der, sycl::range< 1 > elem_range, flt dt) (function) of namespace shamrock::integrators is not documented.
- src/shamrock/math/integrators.hpp:35: warning: Member leapfrog_corrector(sycl::queue &queue, sycl::buffer< T > &buf_val, sycl::buffer< T > &buf_der, sycl::buffer< T > &buf_der_old, sycl::buffer< flt > &buf_eps_sq, sycl::range< 1 > elem_range, flt hdt) (function) of namespace shamrock::integrators is not documented.
+ src/shamrock/math/integrators.hpp:36: warning: Member leapfrog_corrector(sham::DeviceQueue &queue, sham::DeviceBuffer< T > &buf_val, sham::DeviceBuffer< T > &buf_der, sham::DeviceBuffer< T > &buf_der_old, sham::DeviceBuffer< flt > &buf_eps_sq, sycl::range< 1 > elem_range, flt hdt) (function) of namespace shamrock::integrators is not documented.
- src/shamrock/math/integrators.hpp:48: warning: Member sycl_position_modulo(sycl::queue &queue, sycl::buffer< T > &buf_xyz, sycl::range< 1 > elem_range, std::pair< T, T > box) (function) of namespace shamrock::utilities is not documented.
+ src/shamrock/math/integrators.hpp:49: warning: Member sycl_position_modulo(sham::DeviceQueue &queue, sham::DeviceBuffer< T > &buf_xyz, sycl::range< 1 > elem_range, std::pair< T, T > box) (function) of namespace shamrock::utilities is not documented.
- src/shamrock/math/integrators.hpp:55: warning: Member sycl_position_sheared_modulo(sycl::queue &queue, sycl::buffer< T > &buf_xyz, sycl::buffer< T > &buf_vxyz, sycl::range< 1 > elem_range, std::pair< T, T > box, i32_3 shear_base, i32_3 shear_dir, shambase::VecComponent< T > shear_value, shambase::VecComponent< T > shear_speed) (function) of namespace shamrock::utilities is not documented.
+ src/shamrock/math/integrators.hpp:56: warning: Member sycl_position_sheared_modulo(sham::DeviceQueue &queue, sham::DeviceBuffer< T > &buf_xyz, sham::DeviceBuffer< T > &buf_vxyz, sycl::range< 1 > elem_range, std::pair< T, T > box, i32_3 shear_base, i32_3 shear_dir, shambase::VecComponent< T > shear_value, shambase::VecComponent< T > shear_speed) (function) of namespace shamrock::utilities is not documented.
- src/shamrock/math/integrators.hpp:67: warning: Member swap_fields(sycl::queue &queue, sycl::buffer< T > &b1, sycl::buffer< T > &b2, u32 cnt) (function) of namespace shamrock::utilities is not documented.
+ src/shamrock/math/integrators.hpp:68: warning: Member swap_fields(sham::DeviceQueue &queue, sham::DeviceBuffer< T > &b1, sham::DeviceBuffer< T > &b2, u32 cnt) (function) of namespace shamrock::utilities is not documented.
- src/shamrock/patch/PatchData.cpp:250: warning: Member split_patchdata(std::array< std::reference_wrapper< PatchData >, 8 > pdats, std::array< T, 8 > min_box, std::array< T, 8 > max_box) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.cpp:255: warning: Member split_patchdata(std::array< std::reference_wrapper< PatchData >, 8 > pdats, std::array< T, 8 > min_box, std::array< T, 8 > max_box) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:208: warning: Member overwrite(PatchData &pdat, u32 obj_cnt) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:208: warning: Member synchronize_buf() (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:211: warning: Member check_field_type(u32 idx) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:216: warning: Member overwrite(PatchData &pdat, u32 obj_cnt) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:219: warning: Member check_field_type(u32 idx) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:224: warning: Member get_field(u32 idx) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:232: warning: Member get_field(u32 idx) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:244: warning: Member get_field_buf_ref(u32 idx) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:252: warning: Member get_field_buf_ref(u32 idx) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:286: warning: Member for_each_field(Functor &&func) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:294: warning: Member for_each_field(Functor &&func) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:296: warning: Member operator==(PatchData &p1, PatchData &p2) (friend) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:304: warning: Member operator==(PatchData &p1, PatchData &p2) (friend) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:325: warning: Member serialize_buf(shamalgs::SerializeHelper &serializer) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:327: warning: Member serialize_buf_byte_size() (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:330: warning: Member deserialize_buf(shamalgs::SerializeHelper &serializer, PatchDataLayout &pdl) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:332: warning: Member fields_raz() (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:333: warning: Member serialize_buf(shamalgs::SerializeHelper &serializer) (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:334: warning: Member has_nan() (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:335: warning: Member serialize_buf_byte_size() (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:338: warning: Member deserialize_buf(shamalgs::SerializeHelper &serializer, PatchDataLayout &pdl) (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:340: warning: Member fields_raz() (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:342: warning: Member has_nan() (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:348: warning: Member has_inf() (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:356: warning: Member has_inf() (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:362: warning: Member has_nan_or_inf() (function) of class shamrock::patch::PatchData is not documented.
+ src/shamrock/patch/PatchData.hpp:370: warning: Member has_nan_or_inf() (function) of class shamrock::patch::PatchData is not documented.
- src/shamrock/patch/PatchData.hpp:395: warning: argument 'pdat' of command @param is not found in the argument list of shamrock::patch::PatchData::fetch_data(std::string key)
+ src/shamrock/patch/PatchData.hpp:403: warning: argument 'pdat' of command @param is not found in the argument list of shamrock::patch::PatchData::fetch_data(std::string key)
- src/shamrock/patch/PatchDataField.cpp:439: warning: Member obj_mock_cnt (variable) of file PatchDataField.cpp is not documented.
+ src/shamrock/patch/PatchDataField.cpp:485: warning: Member obj_mock_cnt (variable) of file PatchDataField.cpp is not documented.
+ src/shamrock/patch/PatchDataField.hpp:102: warning: Member Field_type (typedef) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:104: warning: Member PatchDataField(std::string name, u32 nvar) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:108: warning: Member Field_type (typedef) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:108: warning: Member PatchDataField(std::string name, u32 nvar, u32 obj_cnt) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:110: warning: Member PatchDataField(std::string name, u32 nvar) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:112: warning: Member PatchDataField(const PatchDataField &other) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:114: warning: Member PatchDataField(std::string name, u32 nvar, u32 obj_cnt) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:116: warning: Member PatchDataField(sham::DeviceBuffer< T > &&moved_buf, u32 obj_cnt, std::string name, u32 nvar) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:118: warning: Member PatchDataField(const PatchDataField &other) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:121: warning: Member PatchDataField(shamalgs::ResizableBuffer< T > &&moved_buf, u32 obj_cnt, std::string name, u32 nvar) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:121: warning: Member PatchDataField(sycl::buffer< T > &&moved_buf, u32 obj_cnt, std::string name, u32 nvar) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:126: warning: Member PatchDataField(sycl::buffer< T > &&moved_buf, u32 obj_cnt, std::string name, u32 nvar) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:133: warning: Member duplicate() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:138: warning: Member duplicate() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:138: warning: Member duplicate(std::string new_name) const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:143: warning: Member duplicate(std::string new_name) const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:145: warning: Member duplicate_to_ptr() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:150: warning: Member duplicate_to_ptr() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:150: warning: Member get_buf() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:152: warning: Member size() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:154: warning: Member is_empty() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:155: warning: Member get_buf() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:156: warning: Member memsize() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:157: warning: Member size() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:158: warning: Member get_nvar() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:159: warning: Member is_empty() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:160: warning: Member get_obj_cnt() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:161: warning: Member memsize() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:162: warning: Member get_name() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:163: warning: Member get_nvar() const (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:165: warning: Member get_obj_cnt() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:165: warning: Member resize(u32 new_obj_cnt) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:167: warning: Member get_name() const (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:167: warning: Member reserve(u32 new_obj_cnt) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:169: warning: Member expand(u32 obj_to_add) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:170: warning: Member resize(u32 new_obj_cnt) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:171: warning: Member shrink(u32 obj_to_rem) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:172: warning: Member reserve(u32 new_obj_cnt) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:173: warning: Member insert_element(T v) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:174: warning: Member expand(u32 obj_to_add) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:175: warning: Member apply_offset(T off) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:176: warning: Member shrink(u32 obj_to_rem) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:177: warning: Member insert(PatchDataField< T > &f2) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:178: warning: Member insert_element(T v) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:179: warning: Member overwrite(PatchDataField< T > &f2, u32 obj_cnt) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:180: warning: Member apply_offset(T off) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:181: warning: Member override(sycl::buffer< T > &data, u32 cnt) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:182: warning: Member insert(PatchDataField< T > &f2) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:183: warning: Member override(std::vector< T > &data, u32 cnt) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:184: warning: Member overwrite(PatchDataField< T > &f2, u32 obj_cnt) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:185: warning: Member override(const T val) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:186: warning: Member override(sycl::buffer< T > &data, u32 cnt) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:187: warning: Member synchronize_buf() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:188: warning: Member override(std::vector< T > &data, u32 cnt) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:190: warning: Member override(const T val) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:287: warning: Member get_elements_with_range(Lambdacd &&cd_true, T vmin, T vmax) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:290: warning: Member get_elements_with_range(Lambdacd &&cd_true, T vmin, T vmax) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:304: warning: Member get_elements_with_range_buf(Lambdacd &&cd_true, T vmin, T vmax) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:307: warning: Member get_elements_with_range_buf(Lambdacd &&cd_true, T vmin, T vmax) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:311: warning: Member check_err_range(Lambdacd &&cd_true, T vmin, T vmax, std::string add_log="") (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:313: warning: Member extract_element(u32 pidx, PatchDataField< T > &to) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:314: warning: Member check_err_range(Lambdacd &&cd_true, T vmin, T vmax, std::string add_log="") (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:315: warning: Member check_field_match(PatchDataField< T > &f2) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:316: warning: Member extract_element(u32 pidx, PatchDataField< T > &to) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:317: warning: Member field_raz() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:318: warning: Member check_field_match(PatchDataField< T > &f2) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:320: warning: Member field_raz() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:329: warning: Member append_subset_to(sycl::buffer< u32 > &idxs_buf, u32 sz, PatchDataField &pfield) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:331: warning: Member make_new_from_subset(sycl::buffer< u32 > &idxs_buf, u32 sz) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:332: warning: Member append_subset_to(sycl::buffer< u32 > &idxs_buf, u32 sz, PatchDataField &pfield) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:334: warning: Member make_new_from_subset(sycl::buffer< u32 > &idxs_buf, u32 sz) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:337: warning: Member gen_mock_data(u32 obj_cnt, std::mt19937 &eng) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:340: warning: Member gen_mock_data(u32 obj_cnt, std::mt19937 &eng) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:36: warning: Compound PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:37: warning: Compound PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:412: warning: Member compute_max() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:413: warning: Member compute_min() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:414: warning: Member compute_sum() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:415: warning: Member compute_max() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:416: warning: Member compute_dot_sum() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:416: warning: Member compute_min() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:417: warning: Member compute_sum() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:418: warning: Member has_nan() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:419: warning: Member compute_dot_sum() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:419: warning: Member has_inf() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:420: warning: Member has_nan_or_inf() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:421: warning: Member has_nan() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:422: warning: Member has_inf() (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:423: warning: Member has_nan_or_inf() (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:426: warning: Member mock_field(u64 seed, u32 obj_cnt, std::string name, u32 nvar) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:428: warning: Member mock_field(u64 seed, u32 obj_cnt, std::string name, u32 nvar, T vmin, T vmax) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:429: warning: Member mock_field(u64 seed, u32 obj_cnt, std::string name, u32 nvar) (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:431: warning: Member mock_field(u64 seed, u32 obj_cnt, std::string name, u32 nvar, T vmin, T vmax) (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:48: warning: Member X(args) (macro definition) of file PatchDataField.hpp is not documented.
+ src/shamrock/patch/PatchDataField.hpp:49: warning: Member X(args) (macro definition) of file PatchDataField.hpp is not documented.
- src/shamrock/patch/PatchDataField.hpp:544: warning: Compound PatchDataRangeCheckError is not documented.
- src/shamrock/patch/PatchDataField.hpp:546: warning: Member PatchDataRangeCheckError(const char *message) (function) of class PatchDataRangeCheckError is not documented.
- src/shamrock/patch/PatchDataField.hpp:548: warning: Member PatchDataRangeCheckError(const std::string &message) (function) of class PatchDataRangeCheckError is not documented.
+ src/shamrock/patch/PatchDataField.hpp:551: warning: Compound PatchDataRangeCheckError is not documented.
- src/shamrock/patch/PatchDataField.hpp:552: warning: Member what() const noexcept override (function) of class PatchDataRangeCheckError is not documented.
+ src/shamrock/patch/PatchDataField.hpp:553: warning: Member PatchDataRangeCheckError(const char *message) (function) of class PatchDataRangeCheckError is not documented.
+ src/shamrock/patch/PatchDataField.hpp:555: warning: Member PatchDataRangeCheckError(const std::string &message) (function) of class PatchDataRangeCheckError is not documented.
- src/shamrock/patch/PatchDataField.hpp:555: warning: Member msg_ (variable) of class PatchDataRangeCheckError is not documented.
+ src/shamrock/patch/PatchDataField.hpp:559: warning: Member what() const noexcept override (function) of class PatchDataRangeCheckError is not documented.
+ src/shamrock/patch/PatchDataField.hpp:562: warning: Member msg_ (variable) of class PatchDataRangeCheckError is not documented.
- src/shamrock/patch/PatchDataField.hpp:57: warning: Member X(args) (macro definition) of file PatchDataField.hpp is not documented.
+ src/shamrock/patch/PatchDataField.hpp:58: warning: Member X(args) (macro definition) of file PatchDataField.hpp is not documented.
+ src/shamrock/patch/PatchDataField.hpp:87: warning: Member PatchDataField(PatchDataField &&other) noexcept (function) of class PatchDataField is not documented.
+ src/shamrock/patch/PatchDataField.hpp:91: warning: Member operator=(PatchDataField &&other) noexcept (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:93: warning: Member PatchDataField(PatchDataField &&other) noexcept (function) of class PatchDataField is not documented.
- src/shamrock/patch/PatchDataField.hpp:97: warning: Member operator=(PatchDataField &&other) noexcept (function) of class PatchDataField is not documented.
+ src/shamrock/scheduler/ComputeField.hpp:113: warning: Member rankgather_computefield(PatchScheduler &sched) (function) of class shamrock::ComputeField is not documented.
- src/shamrock/scheduler/ComputeField.hpp:115: warning: Member rankgather_computefield(PatchScheduler &sched) (function) of class shamrock::ComputeField is not documented.
+ src/shamrock/scheduler/ComputeField.hpp:147: warning: Member reset() (function) of class shamrock::ComputeField is not documented.
- src/shamrock/scheduler/ComputeField.hpp:149: warning: Member reset() (function) of class shamrock::ComputeField is not documented.
+ src/shamrock/scheduler/ComputeField.hpp:53: warning: Member compute_rank_max() (function) of class shamrock::ComputeField is not documented.
- src/shamrock/scheduler/ComputeField.hpp:55: warning: Member compute_rank_max() (function) of class shamrock::ComputeField is not documented.
+ src/shamrock/scheduler/ComputeField.hpp:65: warning: Member compute_rank_min() (function) of class shamrock::ComputeField is not documented.
- src/shamrock/scheduler/ComputeField.hpp:67: warning: Member compute_rank_min() (function) of class shamrock::ComputeField is not documented.
+ src/shamrock/scheduler/ComputeField.hpp:77: warning: Member compute_rank_sum() (function) of class shamrock::ComputeField is not documented.
- src/shamrock/scheduler/ComputeField.hpp:79: warning: Member compute_rank_sum() (function) of class shamrock::ComputeField is not documented.
+ src/shamrock/scheduler/ComputeField.hpp:89: warning: Member get_nvar() (function) of class shamrock::ComputeField is not documented.
- src/shamrock/scheduler/ComputeField.hpp:91: warning: Member get_nvar() (function) of class shamrock::ComputeField is not documented.
+ src/shamrock/scheduler/PatchScheduler.cpp:878: warning: Compound Message is not documented.
+ src/shamrock/scheduler/PatchScheduler.cpp:879: warning: Member buf (variable) of struct Message is not documented.
+ src/shamrock/scheduler/PatchScheduler.cpp:880: warning: Member rank (variable) of struct Message is not documented.
+ src/shamrock/scheduler/PatchScheduler.cpp:881: warning: Member tag (variable) of struct Message is not documented.
+ src/shamrock/scheduler/PatchScheduler.cpp:884: warning: Member send_messages(std::vector< Message > &msgs, std::vector< MPI_Request > &rqs) (function) of file PatchScheduler.cpp is not documented.
+ src/shamrock/scheduler/PatchScheduler.cpp:911: warning: Member recv_probe_messages(std::vector< Message > &msgs, std::vector< MPI_Request > &rqs) (function) of file PatchScheduler.cpp is not documented.
+ src/shamrock/scheduler/SerialPatchTree.hpp:325: warning: Member compute_patch_owner(sham::DeviceScheduler_ptr dev_sched, sham::DeviceBuffer< fp_prec_vec > &position_buffer, u32 len) (function) of class SerialPatchTree is not documented.
- src/shamrock/scheduler/SerialPatchTree.hpp:326: warning: Member compute_patch_owner(sycl::queue &queue, sycl::buffer< fp_prec_vec > &position_buffer, u32 len) (function) of class SerialPatchTree is not documented.
- src/shamrock/sfc/MortonKernels.cpp:33: warning: no matching file member found for 
+ src/shamrock/sfc/MortonKernels.cpp:36: warning: no matching file member found for 
- src/shamrock/sfc/MortonKernels.cpp:60: warning: no matching file member found for 
+ src/shamrock/sfc/MortonKernels.cpp:63: warning: no matching file member found for 
- src/shamrock/sfc/MortonKernels.cpp:66: warning: no matching file member found for 
+ src/shamrock/sfc/MortonKernels.cpp:69: warning: no matching file member found for 
+ src/shamrock/sfc/MortonKernels.hpp:101: warning: Member sycl_xyz_to_morton(sham::DeviceScheduler_ptr dev_sched, u32 pos_count, sham::DeviceBuffer< pos_t > &in_positions, pos_t bounding_box_min, pos_t bounding_box_max, std::unique_ptr< sycl::buffer< morton_t > > &out_morton) (function) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:117: warning: Member sycl_irange_to_range(sycl::queue &queue, u32 buf_len, pos_t bounding_box_min, pos_t bounding_box_max, std::unique_ptr< sycl::buffer< ipos_t > > &buf_pos_min_cell, std::unique_ptr< sycl::buffer< ipos_t > > &buf_pos_max_cell, std::unique_ptr< sycl::buffer< pos_t > > &out_buf_pos_min_cell_flt, std::unique_ptr< sycl::buffer< pos_t > > &out_buf_pos_max_cell_flt) (function) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:126: warning: Member sycl_irange_to_range(sycl::queue &queue, u32 buf_len, pos_t bounding_box_min, pos_t bounding_box_max, std::unique_ptr< sycl::buffer< ipos_t > > &buf_pos_min_cell, std::unique_ptr< sycl::buffer< ipos_t > > &buf_pos_max_cell, std::unique_ptr< sycl::buffer< pos_t > > &out_buf_pos_min_cell_flt, std::unique_ptr< sycl::buffer< pos_t > > &out_buf_pos_max_cell_flt) (function) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:25: warning: Compound shamrock::sfc::details::MortonInfo is not documented.
- src/shamrock/sfc/MortonKernels.hpp:26: warning: Member err_code (variable) of struct shamrock::sfc::details::MortonInfo is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:27: warning: Compound shamrock::sfc::details::MortonInfo is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:28: warning: Member err_code (variable) of struct shamrock::sfc::details::MortonInfo is not documented.
- src/shamrock/sfc/MortonKernels.hpp:30: warning: Compound shamrock::sfc::details::MortonInfo< u32 > is not documented.
- src/shamrock/sfc/MortonKernels.hpp:31: warning: Member err_code (variable) of struct shamrock::sfc::details::MortonInfo< u32 > is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:32: warning: Compound shamrock::sfc::details::MortonInfo< u32 > is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:33: warning: Member err_code (variable) of struct shamrock::sfc::details::MortonInfo< u32 > is not documented.
- src/shamrock/sfc/MortonKernels.hpp:35: warning: Compound shamrock::sfc::details::MortonInfo< u64 > is not documented.
- src/shamrock/sfc/MortonKernels.hpp:36: warning: Member err_code (variable) of struct shamrock::sfc::details::MortonInfo< u64 > is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:37: warning: Compound shamrock::sfc::details::MortonInfo< u64 > is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:38: warning: Member err_code (variable) of struct shamrock::sfc::details::MortonInfo< u64 > is not documented.
- src/shamrock/sfc/MortonKernels.hpp:57: warning: Compound shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:59: warning: Compound shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:60: warning: Member Morton (typedef) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:62: warning: Member Morton (typedef) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:62: warning: Member pos_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:63: warning: Member coord_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:64: warning: Member ipos_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:64: warning: Member pos_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:65: warning: Member coord_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:65: warning: Member int_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:66: warning: Member ipos_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:67: warning: Member CoordTransform (typedef) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:67: warning: Member int_t (typedef) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:69: warning: Member CoordTransform (typedef) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:69: warning: Member get_transform(pos_t bounding_box_min, pos_t bounding_box_max) (function) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:71: warning: Member get_transform(pos_t bounding_box_min, pos_t bounding_box_max) (function) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:73: warning: Member to_morton_grid(pos_t pos, CoordTransform transform) (function) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:75: warning: Member to_morton_grid(pos_t pos, CoordTransform transform) (function) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/sfc/MortonKernels.hpp:77: warning: Member to_real_space(ipos_t pos, CoordTransform transform) (function) of class shamrock::sfc::MortonKernels is not documented.
+ src/shamrock/sfc/MortonKernels.hpp:79: warning: Member to_real_space(ipos_t pos, CoordTransform transform) (function) of class shamrock::sfc::MortonKernels is not documented.
- src/shamrock/tree/RadixTree.cpp:122: warning: no matching class member found for 
+ src/shamrock/tree/RadixTree.cpp:158: warning: no matching class member found for 
- src/shamrock/tree/RadixTree.cpp:267: warning: Member print_member(const T &a) (function) of file RadixTree.cpp is not documented.
- src/shamrock/tree/RadixTree.cpp:270: warning: Member print_member(const u8 &a) (function) of file RadixTree.cpp is not documented.
- src/shamrock/tree/RadixTree.cpp:275: warning: Member print_member(const u32 &a) (function) of file RadixTree.cpp is not documented.
+ src/shamrock/tree/RadixTree.cpp:309: warning: Member print_member(const T &a) (function) of file RadixTree.cpp is not documented.
+ src/shamrock/tree/RadixTree.cpp:312: warning: Member print_member(const u8 &a) (function) of file RadixTree.cpp is not documented.
+ src/shamrock/tree/RadixTree.cpp:317: warning: Member print_member(const u32 &a) (function) of file RadixTree.cpp is not documented.
- src/shamrock/tree/RadixTree.hpp:1035: warning: Member rtree_for_fill_cache(Rta &acc, arr_type &cell_cache, Functor_int_cd &&func_int_cd) (function) of namespace walker is not documented.
+ src/shamrock/tree/RadixTree.hpp:1040: warning: Member rtree_for_fill_cache(Rta &acc, arr_type &cell_cache, Functor_int_cd &&func_int_cd) (function) of namespace walker is not documented.
- src/shamrock/tree/RadixTree.hpp:104: warning: Member compute_int_boxes(sycl::queue &queue, const std::unique_ptr< sycl::buffer< coord_t > > &int_rad_buf, coord_t tolerance) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:104: warning: Member compute_int_boxes(sycl::queue &queue, sham::DeviceBuffer< coord_t > &int_rad_buf, coord_t tolerance) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:107: warning: Member compute_cell_ibounding_box(sycl::queue &queue) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:108: warning: Member convert_bounding_box(sycl::queue &queue) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:109: warning: Member compute_cell_ibounding_box(sycl::queue &queue) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:1107: warning: Member rtree_for(Rta &acc, arr_type &cell_cache, Functor_int_cd &&func_int_cd, Functor_iter &&func_it) (function) of namespace walker is not documented.
- src/shamrock/tree/RadixTree.hpp:110: warning: Member convert_bounding_box(sycl::queue &queue) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:1112: warning: Member rtree_for(Rta &acc, arr_type &cell_cache, Functor_int_cd &&func_int_cd, Functor_iter &&func_it) (function) of namespace walker is not documented.
+ src/shamrock/tree/RadixTree.hpp:111: warning: Member build_new_morton_buf(sycl::buffer< Tvec > &pos_buf, u32 obj_cnt) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:113: warning: Member build_new_morton_buf(sycl::buffer< Tvec > &pos_buf, u32 obj_cnt) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:120: warning: Member RadixTree(sycl::queue &queue, std::tuple< Tvec, Tvec > treebox, const std::unique_ptr< sycl::buffer< Tvec > > &pos_buf, u32 cnt_obj, u32 reduc_level) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:122: warning: Member RadixTree(sycl::queue &queue, std::tuple< Tvec, Tvec > treebox, const std::unique_ptr< sycl::buffer< Tvec > > &pos_buf, u32 cnt_obj, u32 reduc_level) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:127: warning: Member RadixTree(sycl::queue &queue, std::tuple< Tvec, Tvec > treebox, sycl::buffer< Tvec > &pos_buf, u32 cnt_obj, u32 reduc_level) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:129: warning: Member RadixTree(sycl::queue &queue, std::tuple< Tvec, Tvec > treebox, sycl::buffer< Tvec > &pos_buf, u32 cnt_obj, u32 reduc_level) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:134: warning: Member RadixTree(sham::DeviceScheduler_ptr dev_sched, std::tuple< Tvec, Tvec > treebox, sham::DeviceBuffer< Tvec > &pos_buf, u32 cnt_obj, u32 reduc_level) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:136: warning: Member RadixTree(const RadixTree &other) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:141: warning: Member RadixTree(const RadixTree &other) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:141: warning: Member memsize() const (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:146: warning: Member memsize() const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:160: warning: Member duplicate() (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:165: warning: Member duplicate() (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:165: warning: Member duplicate_to_ptr() (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:170: warning: Member duplicate_to_ptr() (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:170: warning: Member is_same(RadixTree &other) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:175: warning: Member is_same(RadixTree &other) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:185: warning: Member RadixTreeField (typedef) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:188: warning: Member compute_field(sycl::queue &queue, u32 nvar, LambdaComputeLeaf &&compute_leaf, LambdaCombinator &&combine) const (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:190: warning: Member RadixTreeField (typedef) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:193: warning: Member compute_field(sycl::queue &queue, u32 nvar, LambdaComputeLeaf &&compute_leaf, LambdaCombinator &&combine) const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:195: warning: Member get_walk_res_set(LambdaForEachCell &&interact_cd) const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:198: warning: Member for_each_leaf(sycl::queue &queue, LambdaForEachCell &&par_for_each_cell) const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:200: warning: Member get_min_max_cell_side_length() (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:200: warning: Member get_walk_res_set(LambdaForEachCell &&interact_cd) const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:202: warning: Compound RadixTree::CuttedTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:203: warning: Member for_each_leaf(sycl::queue &queue, LambdaForEachCell &&par_for_each_cell) const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:203: warning: Member rtree (variable) of struct RadixTree::CuttedTree is not documented.
- src/shamrock/tree/RadixTree.hpp:204: warning: Member new_node_id_to_old (variable) of struct RadixTree::CuttedTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:205: warning: Member get_min_max_cell_side_length() (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:206: warning: Member pdat_extract_id (variable) of struct RadixTree::CuttedTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:207: warning: Compound RadixTree::CuttedTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:208: warning: Member rtree (variable) of struct RadixTree::CuttedTree is not documented.
- src/shamrock/tree/RadixTree.hpp:209: warning: Member cut_tree(sycl::queue &queue, sycl::buffer< u8 > &valid_node) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:209: warning: Member new_node_id_to_old (variable) of struct RadixTree::CuttedTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:211: warning: Member pdat_extract_id (variable) of struct RadixTree::CuttedTree is not documented.
- src/shamrock/tree/RadixTree.hpp:212: warning: Member print_tree_field(sycl::buffer< T > &buf_field) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:214: warning: Member cut_tree(sycl::queue &queue, sycl::buffer< u8 > &valid_node) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:214: warning: Member make_empty() (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:216: warning: Compound RadixTree::LeafIterator is not documented.
+ src/shamrock/tree/RadixTree.hpp:217: warning: Member print_tree_field(sycl::buffer< T > &buf_field) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:219: warning: Member make_empty() (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:221: warning: Compound RadixTree::LeafIterator is not documented.
- src/shamrock/tree/RadixTree.hpp:222: warning: Member LeafIterator(RadixTree &rtree, sycl::handler &cgh) (function) of class RadixTree::LeafIterator is not documented.
+ src/shamrock/tree/RadixTree.hpp:227: warning: Member LeafIterator(RadixTree &rtree, sycl::handler &cgh) (function) of class RadixTree::LeafIterator is not documented.
- src/shamrock/tree/RadixTree.hpp:229: warning: Member iter_object_in_leaf(u32 leaf_id, Func &&func_it) const noexcept (function) of class RadixTree::LeafIterator is not documented.
+ src/shamrock/tree/RadixTree.hpp:234: warning: Member iter_object_in_leaf(u32 leaf_id, Func &&func_it) const noexcept (function) of class RadixTree::LeafIterator is not documented.
- src/shamrock/tree/RadixTree.hpp:245: warning: Member get_leaf_access(sycl::handler &device_handler) (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:250: warning: Member get_leaf_access(sycl::handler &device_handler) (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:253: warning: Member compute_field(sycl::queue &queue, u32 nvar, LambdaComputeLeaf &&compute_leaf, LambdaCombinator &&combine) const (function) of class RadixTree is not documented.
+ src/shamrock/tree/RadixTree.hpp:258: warning: Member compute_field(sycl::queue &queue, u32 nvar, LambdaComputeLeaf &&compute_leaf, LambdaCombinator &&combine) const (function) of class RadixTree is not documented.
- src/shamrock/tree/RadixTree.hpp:544: warning: Compound tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:547: warning: Member Request (typedef) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:548: warning: Member RTree (typedef) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:549: warning: Compound tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:550: warning: Member comm_mode (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:551: warning: Member comm_op (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:552: warning: Member Request (typedef) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:553: warning: Member RTree (typedef) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:553: warning: Member rtree (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:555: warning: Member comm_mode (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:555: warning: Member rq_u_morton (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:556: warning: Member comm_op (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:556: warning: Member rq_u32 (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:557: warning: Member rq_u8 (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:558: warning: Member rq_vec (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:558: warning: Member rtree (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:560: warning: Member rq_u_morton (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:560: warning: Member rq_vec3i (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:561: warning: Member rq_u32 (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:562: warning: Member RadixTreeMPIRequest(RTree &rtree, mpi_sycl_interop::op_type comm_op) (function) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:562: warning: Member rq_u8 (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:563: warning: Member rq_vec (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:565: warning: Member finalize() (function) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:565: warning: Member rq_vec3i (variable) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:567: warning: Member RadixTreeMPIRequest(RTree &rtree, mpi_sycl_interop::op_type comm_op) (function) of class tree_comm::RadixTreeMPIRequest is not documented.
+ src/shamrock/tree/RadixTree.hpp:570: warning: Member finalize() (function) of class tree_comm::RadixTreeMPIRequest is not documented.
- src/shamrock/tree/RadixTree.hpp:599: warning: Member wait_all(std::vector< RadixTreeMPIRequest< u_morton, vec3 > > &rqs) (function) of namespace tree_comm is not documented.
+ src/shamrock/tree/RadixTree.hpp:604: warning: Member wait_all(std::vector< RadixTreeMPIRequest< u_morton, vec3 > > &rqs) (function) of namespace tree_comm is not documented.
- src/shamrock/tree/RadixTree.hpp:606: warning: Member comm_isend(RadixTree< u_morton, vec3 > &rtree, std::vector< RadixTreeMPIRequest< u_morton, vec3 > > &rqs, i32 rank_dest, i32 tag, MPI_Comm comm) (function) of namespace tree_comm is not documented.
+ src/shamrock/tree/RadixTree.hpp:611: warning: Member comm_isend(RadixTree< u_morton, vec3 > &rtree, std::vector< RadixTreeMPIRequest< u_morton, vec3 > > &rqs, i32 rank_dest, i32 tag, MPI_Comm comm) (function) of namespace tree_comm is not documented.
- src/shamrock/tree/RadixTree.hpp:723: warning: Member comm_irecv_probe(RadixTree< u_morton, vec3 > &rtree, std::vector< RadixTreeMPIRequest< u_morton, vec3 > > &rqs, i32 rank_source, i32 tag, MPI_Comm comm) (function) of namespace tree_comm is not documented.
+ src/shamrock/tree/RadixTree.hpp:728: warning: Member comm_irecv_probe(RadixTree< u_morton, vec3 > &rtree, std::vector< RadixTreeMPIRequest< u_morton, vec3 > > &rqs, i32 rank_source, i32 tag, MPI_Comm comm) (function) of namespace tree_comm is not documented.
- src/shamrock/tree/RadixTree.hpp:787: warning: Member sph_radix_cell_crit(vec3 xyz_a, vec3 part_a_box_min, vec3 part_a_box_max, vec3 cur_cell_box_min, vec3 cur_cell_box_max, flt box_int_sz) (function) of namespace walker::interaction_crit is not documented.
+ src/shamrock/tree/RadixTree.hpp:792: warning: Member sph_radix_cell_crit(vec3 xyz_a, vec3 part_a_box_min, vec3 part_a_box_max, vec3 cur_cell_box_min, vec3 cur_cell_box_max, flt box_int_sz) (function) of namespace walker::interaction_crit is not documented.
- src/shamrock/tree/RadixTree.hpp:804: warning: Member sph_cell_cell_crit(vec3 cella_min, vec3 cella_max, vec3 cellb_min, vec3 cellb_max, flt rint_a, flt rint_b) (function) of namespace walker::interaction_crit is not documented.
+ src/shamrock/tree/RadixTree.hpp:809: warning: Member sph_cell_cell_crit(vec3 cella_min, vec3 cella_max, vec3 cellb_min, vec3 cellb_max, flt rint_a, flt rint_b) (function) of namespace walker::interaction_crit is not documented.
- src/shamrock/tree/RadixTree.hpp:824: warning: Compound walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:826: warning: Member particle_index_map (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:827: warning: Member cell_index_map (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:828: warning: Member rchild_id (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:829: warning: Compound walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:829: warning: Member lchild_id (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:830: warning: Member rchild_flag (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:831: warning: Member lchild_flag (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:831: warning: Member particle_index_map (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:832: warning: Member cell_index_map (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:832: warning: Member pos_min_cell (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:833: warning: Member pos_max_cell (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:833: warning: Member rchild_id (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:834: warning: Member lchild_id (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:835: warning: Member rchild_flag (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:835: warning: Member tree_depth (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:836: warning: Member _nindex (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:836: warning: Member lchild_flag (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:837: warning: Member pos_min_cell (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:838: warning: Member leaf_offset (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:838: warning: Member pos_max_cell (variable) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:840: warning: Member Radix_tree_accessor(RadixTree< u_morton, vec3 > &rtree, sycl::handler &cgh) (function) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:840: warning: Member tree_depth (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:841: warning: Member _nindex (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:843: warning: Member leaf_offset (variable) of class walker::Radix_tree_accessor is not documented.
+ src/shamrock/tree/RadixTree.hpp:845: warning: Member Radix_tree_accessor(RadixTree< u_morton, vec3 > &rtree, sycl::handler &cgh) (function) of class walker::Radix_tree_accessor is not documented.
- src/shamrock/tree/RadixTree.hpp:865: warning: Member iter_object_in_cell(const Rta &acc, const u32 &cell_id, Functor_iter &&func_it) (function) of namespace walker is not documented.
+ src/shamrock/tree/RadixTree.hpp:870: warning: Member iter_object_in_cell(const Rta &acc, const u32 &cell_id, Functor_iter &&func_it) (function) of namespace walker is not documented.
- src/shamrock/tree/RadixTree.hpp:925: warning: Member rtree_for_cell(const Rta &acc, Functor_int_cd &&func_int_cd, Functor_iter &&func_it, Functor_iter_excl &&func_excl) (function) of namespace walker is not documented.
+ src/shamrock/tree/RadixTree.hpp:930: warning: Member rtree_for_cell(const Rta &acc, Functor_int_cd &&func_int_cd, Functor_iter &&func_it, Functor_iter_excl &&func_excl) (function) of namespace walker is not documented.
- src/shamrock/tree/RadixTree.hpp:971: warning: Member rtree_for(const Rta &acc, Functor_int_cd &&func_int_cd, Functor_iter &&func_it, Functor_iter_excl &&func_excl) (function) of namespace walker is not documented.
+ src/shamrock/tree/RadixTree.hpp:976: warning: Member rtree_for(const Rta &acc, Functor_int_cd &&func_int_cd, Functor_iter &&func_it, Functor_iter_excl &&func_excl) (function) of namespace walker is not documented.
+ src/shamrock/tree/RadixTreeMortonBuilder.hpp:54: warning: Member build(sham::DeviceScheduler_ptr dev_sched, std::tuple< pos_t, pos_t > bounding_box, sham::DeviceBuffer< pos_t > &pos_buf, u32 cnt_obj, std::unique_ptr< sycl::buffer< morton_t > > &out_buf_morton, std::unique_ptr< sycl::buffer< u32 > > &out_buf_particle_index_map) (function) of class RadixTreeMortonBuilder is not documented.
- src/shamrock/tree/TreeMortonCodes.hpp:105: warning: Member operator=(TreeMortonCodes &&other) noexcept (function) of class shamrock::tree::TreeMortonCodes is not documented.
- src/shamrock/tree/TreeMortonCodes.hpp:113: warning: Member operator==(const TreeMortonCodes &t1, const TreeMortonCodes &t2) (friend) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeMortonCodes.hpp:118: warning: Member TreeMortonCodes(const TreeMortonCodes &other) (function) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeMortonCodes.hpp:125: warning: Member operator=(TreeMortonCodes &&other) noexcept (function) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeMortonCodes.hpp:133: warning: Member operator==(const TreeMortonCodes &t1, const TreeMortonCodes &t2) (friend) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeMortonCodes.hpp:60: warning: Member build(sham::DeviceScheduler_ptr dev_sched, shammath::CoordRange< T > coord_range, u32 obj_cnt, sham::DeviceBuffer< T > &pos_buf) (function) of class shamrock::tree::TreeMortonCodes is not documented.
- src/shamrock/tree/TreeMortonCodes.hpp:61: warning: Member build_raw(sycl::queue &queue, shammath::CoordRange< T > coord_range, u32 obj_cnt, sycl::buffer< T > &pos_buf) (function) of class shamrock::tree::TreeMortonCodes is not documented.
- src/shamrock/tree/TreeMortonCodes.hpp:79: warning: Member memsize() const (function) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeMortonCodes.hpp:81: warning: Member build_raw(sycl::queue &queue, shammath::CoordRange< T > coord_range, u32 obj_cnt, sycl::buffer< T > &pos_buf) (function) of class shamrock::tree::TreeMortonCodes is not documented.
- src/shamrock/tree/TreeMortonCodes.hpp:98: warning: Member TreeMortonCodes(const TreeMortonCodes &other) (function) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeMortonCodes.hpp:99: warning: Member memsize() const (function) of class shamrock::tree::TreeMortonCodes is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:284: warning: Compound shamrock::tree::LeafCache::ptrs is not documented.
- src/shamrock/tree/TreeTraversal.hpp:285: warning: Compound shamrock::tree::LeafCacheObjectIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:285: warning: Member cnt_neigh (variable) of struct shamrock::tree::LeafCache::ptrs is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:286: warning: Member scanned_cnt (variable) of struct shamrock::tree::LeafCache::ptrs is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:287: warning: Member index_neigh_map (variable) of struct shamrock::tree::LeafCache::ptrs is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:290: warning: Member get_read_access(sham::EventList &depends_list) (function) of class shamrock::tree::LeafCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:297: warning: Member complete_event_state(sham::EventList &resulting_events) (function) of class shamrock::tree::LeafCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:301: warning: Member LeafCacheObjectIterator(RadixTree< u_morton, vec > &rtree, sycl::buffer< u32 > &ownerships, LeafCache &cache, sycl::handler &cgh) (function) of class shamrock::tree::LeafCacheObjectIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:304: warning: Compound shamrock::tree::LeafCacheObjectIterator is not documented.
- src/shamrock/tree/TreeTraversal.hpp:313: warning: Member iter_object_in_cell(const u32 &cell_id, Functor_iter &&func_it) const (function) of class shamrock::tree::LeafCacheObjectIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:320: warning: Member LeafCacheObjectIterator(RadixTree< u_morton, vec > &rtree, sycl::buffer< u32 > &ownerships, LeafCache::ptrs &cache, sycl::handler &cgh) (function) of class shamrock::tree::LeafCacheObjectIterator is not documented.
- src/shamrock/tree/TreeTraversal.hpp:329: warning: Member for_each_object(u32 idx, Functor_iter &&func_it) const (function) of class shamrock::tree::LeafCacheObjectIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:332: warning: Member iter_object_in_cell(const u32 &cell_id, Functor_iter &&func_it) const (function) of class shamrock::tree::LeafCacheObjectIterator is not documented.
- src/shamrock/tree/TreeTraversal.hpp:344: warning: Compound shamrock::tree::HostObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:345: warning: Member cnt_neigh (variable) of struct shamrock::tree::HostObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:346: warning: Member scanned_cnt (variable) of struct shamrock::tree::HostObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:347: warning: Member sum_neigh_cnt (variable) of struct shamrock::tree::HostObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:348: warning: Member for_each_object(u32 idx, Functor_iter &&func_it) const (function) of class shamrock::tree::LeafCacheObjectIterator is not documented.
- src/shamrock/tree/TreeTraversal.hpp:348: warning: Member index_neigh_map (variable) of struct shamrock::tree::HostObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:350: warning: Member get_memsize() (function) of struct shamrock::tree::HostObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:356: warning: Compound shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:357: warning: Member cnt_neigh (variable) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:358: warning: Member scanned_cnt (variable) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:359: warning: Member sum_neigh_cnt (variable) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:360: warning: Member index_neigh_map (variable) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:362: warning: Member get_memsize() (function) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:363: warning: Compound shamrock::tree::HostObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:364: warning: Member cnt_neigh (variable) of struct shamrock::tree::HostObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:365: warning: Member scanned_cnt (variable) of struct shamrock::tree::HostObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:366: warning: Member sum_neigh_cnt (variable) of struct shamrock::tree::HostObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:367: warning: Member copy_to_host() (function) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:367: warning: Member index_neigh_map (variable) of struct shamrock::tree::HostObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:369: warning: Member get_memsize() (function) of struct shamrock::tree::HostObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:375: warning: Compound shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:376: warning: Member build_from_host(HostObjectCache &cache) (function) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:376: warning: Member cnt_neigh (variable) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:377: warning: Member scanned_cnt (variable) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:378: warning: Member sum_neigh_cnt (variable) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:379: warning: Member index_neigh_map (variable) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:381: warning: Member get_memsize() (function) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:386: warning: Member copy_to_host() (function) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:386: warning: Member prepare_object_cache(sycl::buffer< u32 > &&counts, u32 obj_cnt) (function) of namespace shamrock::tree is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:395: warning: Member build_from_host(HostObjectCache &cache) (function) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:415: warning: Compound shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:416: warning: Compound shamrock::tree::ObjectCache::ptrs_read is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:417: warning: Member cnt_neigh (variable) of struct shamrock::tree::ObjectCache::ptrs_read is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:418: warning: Member scanned_cnt (variable) of struct shamrock::tree::ObjectCache::ptrs_read is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:419: warning: Member index_neigh_map (variable) of struct shamrock::tree::ObjectCache::ptrs_read is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:422: warning: Compound shamrock::tree::ObjectCache::ptrs is not documented.
- src/shamrock/tree/TreeTraversal.hpp:423: warning: Member ObjectCacheIterator(ObjectCache &cache, sycl::handler &cgh) (function) of class shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:423: warning: Member cnt_neigh (variable) of struct shamrock::tree::ObjectCache::ptrs is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:424: warning: Member scanned_cnt (variable) of struct shamrock::tree::ObjectCache::ptrs is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:425: warning: Member index_neigh_map (variable) of struct shamrock::tree::ObjectCache::ptrs is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:428: warning: Member get_read_access(sham::EventList &depends_list) (function) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:431: warning: Member for_each_object(u32 idx, Functor_iter &&func_it) const (function) of class shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:436: warning: Member get_write_access(sham::EventList &depends_list) (function) of struct shamrock::tree::ObjectCache is not documented.
- src/shamrock/tree/TreeTraversal.hpp:443: warning: Member for_each_object_with_id(u32 idx, Functor_iter &&func_it) const (function) of class shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:444: warning: Member complete_event_state(sham::EventList &resulting_events) (function) of struct shamrock::tree::ObjectCache is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:451: warning: Member prepare_object_cache(sham::DeviceBuffer< u32 > &&counts, u32 obj_cnt) (function) of namespace shamrock::tree is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:482: warning: Compound shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:490: warning: Member ObjectCacheIterator(ObjectCache::ptrs_read &cache) (function) of class shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:498: warning: Member for_each_object(u32 idx, Functor_iter &&func_it) const (function) of class shamrock::tree::ObjectCacheIterator is not documented.
+ src/shamrock/tree/TreeTraversal.hpp:510: warning: Member for_each_object_with_id(u32 idx, Functor_iter &&func_it) const (function) of class shamrock::tree::ObjectCacheIterator is not documented.

@tdavidcl tdavidcl merged commit bb5c2c5 into main Dec 8, 2024
@tdavidcl tdavidcl deleted the feature/migrate-to-usm branch December 8, 2024 20:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant