| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/include/boost/sort/block_indirect_sort/blk_detail/ |
Upload File : |
//---------------------------------------------------------------------------- /// @file constants.hpp /// @brief This file contains the constants values used in the algorithms /// /// @author Copyright (c) 2016 Francisco José Tapia (fjtapia@gmail.com )\n /// Distributed under the Boost Software License, Version 1.0.\n /// ( See accompanying file LICENSE_1_0.txt or copy at /// http://www.boost.org/LICENSE_1_0.txt ) /// @version 0.1 /// /// @remarks //----------------------------------------------------------------------------- #ifndef __BOOST_SORT_PARALLEL_DETAIL_CONSTANTS_HPP #define __BOOST_SORT_PARALLEL_DETAIL_CONSTANTS_HPP // This value is the block size in the block_indirect_sort algorithm #define BOOST_BLOCK_SIZE 1024 // This value represent the group size in the block_indirect_sort algorithm #define BOOST_GROUP_SIZE 64 // This value is the minimal number of threads for to use the // block_indirect_sort algorithm #define BOOST_NTHREAD_BORDER 6 #endif