1 Star 0 Fork 2

HoperunHarmony / stress-ng

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stress-heapsort.c 6.29 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (C) 2016-2021 Canonical, Ltd.
* Copyright (C) 2022 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#pragma clang diagnostic ignored "-Wimplicit-function-declaration"
#define MIN_HEAPSORT_SIZE (1 * KB)
#define MAX_HEAPSORT_SIZE (4 * MB)
#define DEFAULT_HEAPSORT_SIZE (256 * KB)
#if defined(HAVE_LIB_BSD)
static volatile bool do_jmp = true;
static sigjmp_buf jmp_env;
#endif
static const stress_help_t help[] = {
{ NULL, "heapsort N", "start N workers heap sorting 32 bit random integers" },
{ NULL, "heapsort-ops N", "stop after N heap sort bogo operations" },
{ NULL, "heapsort-size N", "number of 32 bit integers to sort" },
{ NULL, NULL, NULL }
};
/*
* stress_set_heapsort_size()
* set heapsort size
*/
static int stress_set_heapsort_size(const char *opt)
{
uint64_t heapsort_size;
heapsort_size = stress_get_uint64(opt);
stress_check_range("heapsort-size", heapsort_size,
MIN_HEAPSORT_SIZE, MAX_HEAPSORT_SIZE);
return stress_set_setting("heapsort-size", TYPE_ID_UINT64, &heapsort_size);
}
static const stress_opt_set_func_t opt_set_funcs[] = {
{ OPT_heapsort_integers, stress_set_heapsort_size },
{ 0, NULL }
};
#if defined(HAVE_LIB_BSD)
/*
* stress_heapsort_handler()
* SIGALRM generic handler
*/
static void MLOCKED_TEXT stress_heapsort_handler(int signum)
{
(void)signum;
if (do_jmp) {
do_jmp = false;
siglongjmp(jmp_env, 1); /* Ugly, bounce back */
}
}
/*
* stress_heapsort_cmp_1()
* heapsort comparison - sort on int32 values
*/
static int stress_heapsort_cmp_1(const void *p1, const void *p2)
{
const int32_t *i1 = (const int32_t *)p1;
const int32_t *i2 = (const int32_t *)p2;
if (*i1 > *i2)
return 1;
else if (*i1 < *i2)
return -1;
else
return 0;
}
/*
* stress_heapsort_cmp_2()
* heapsort comparison - reverse sort on int32 values
*/
static int stress_heapsort_cmp_2(const void *p1, const void *p2)
{
return stress_heapsort_cmp_1(p2, p1);
}
/*
* stress_heapsort_cmp_3()
* heapsort comparison - sort on int8 values
*/
static int stress_heapsort_cmp_3(const void *p1, const void *p2)
{
const int8_t *i1 = (const int8_t *)p1;
const int8_t *i2 = (const int8_t *)p2;
/* Force re-ordering on 8 bit value */
return *i1 - *i2;
}
/*
* stress_heapsort()
* stress heapsort
*/
static int stress_heapsort(const stress_args_t *args)
{
uint64_t heapsort_size = DEFAULT_HEAPSORT_SIZE;
int32_t *data, *ptr;
size_t n, i;
struct sigaction old_action;
int ret;
if (!stress_get_setting("heapsort-size", &heapsort_size)) {
if (g_opt_flags & OPT_FLAGS_MAXIMIZE)
heapsort_size = MAX_HEAPSORT_SIZE;
if (g_opt_flags & OPT_FLAGS_MINIMIZE)
heapsort_size = MIN_HEAPSORT_SIZE;
}
n = (size_t)heapsort_size;
if ((data = calloc(n, sizeof(*data))) == NULL) {
pr_fail("%s: malloc failed, out of memory\n", args->name);
return EXIT_NO_RESOURCE;
}
if (stress_sighandler(args->name, SIGALRM, stress_heapsort_handler, &old_action) < 0) {
free(data);
return EXIT_FAILURE;
}
ret = sigsetjmp(jmp_env, 1);
if (ret) {
/*
* We return here if SIGALRM jmp'd back
*/
(void)stress_sigrestore(args->name, SIGALRM, &old_action);
goto tidy;
}
/* This is expensive, do it once */
for (ptr = data, i = 0; i < n; i++)
*ptr++ = (int32_t)stress_mwc32();
stress_set_proc_state(args->name, STRESS_STATE_RUN);
do {
/* Sort "random" data */
if (heapsort(data, n, sizeof(*data), stress_heapsort_cmp_1) < 0) {
pr_fail("%s: heapsort of random data failed: %d (%s)\n",
args->name, errno, strerror(errno));
} else {
if (g_opt_flags & OPT_FLAGS_VERIFY) {
for (ptr = data, i = 0; i < n - 1; i++, ptr++) {
if (*ptr > *(ptr+1)) {
pr_fail("%s: sort error "
"detected, incorrect ordering "
"found\n", args->name);
break;
}
}
}
}
if (!keep_stressing_flag())
break;
/* Reverse sort */
if (heapsort(data, n, sizeof(*data), stress_heapsort_cmp_2) < 0) {
pr_fail("%s: reversed heapsort of random data failed: %d (%s)\n",
args->name, errno, strerror(errno));
} else {
if (g_opt_flags & OPT_FLAGS_VERIFY) {
for (ptr = data, i = 0; i < n - 1; i++, ptr++) {
if (*ptr < *(ptr+1)) {
pr_fail("%s: reverse sort "
"error detected, incorrect "
"ordering found\n", args->name);
break;
}
}
}
}
if (!keep_stressing_flag())
break;
/* And re-order by byte compare */
if (heapsort(data, n * 4, sizeof(uint8_t), stress_heapsort_cmp_3) < 0) {
pr_fail("%s: heapsort failed: %d (%s)\n",
args->name, errno, strerror(errno));
}
/* Reverse sort this again */
if (heapsort(data, n, sizeof(*data), stress_heapsort_cmp_2) < 0) {
pr_fail("%s: reversed heapsort of random data failed: %d (%s)\n",
args->name, errno, strerror(errno));
} else {
if (g_opt_flags & OPT_FLAGS_VERIFY) {
for (ptr = data, i = 0; i < n - 1; i++, ptr++) {
if (*ptr < *(ptr+1)) {
pr_fail("%s: reverse sort "
"error detected, incorrect "
"ordering found\n", args->name);
break;
}
}
}
}
if (!keep_stressing_flag())
break;
inc_counter(args);
} while (keep_stressing(args));
do_jmp = false;
(void)stress_sigrestore(args->name, SIGALRM, &old_action);
tidy:
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
free(data);
return EXIT_SUCCESS;
}
stressor_info_t stress_heapsort_info = {
.stressor = stress_heapsort,
.class = CLASS_CPU_CACHE | CLASS_CPU | CLASS_MEMORY,
.opt_set_funcs = opt_set_funcs,
.verify = VERIFY_OPTIONAL,
.help = help
};
#else
stressor_info_t stress_heapsort_info = {
.stressor = stress_not_implemented,
.class = CLASS_CPU_CACHE | CLASS_CPU | CLASS_MEMORY,
.opt_set_funcs = opt_set_funcs,
.help = help
};
#endif
1
https://gitee.com/hoperun_harmony/stress-ng.git
git@gitee.com:hoperun_harmony/stress-ng.git
hoperun_harmony
stress-ng
stress-ng
master

搜索帮助