/*
* Copyright (C) 2014 - 2018 Intel Corporation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice(s),
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice(s),
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <memkind.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
int main(int argc, char **argv)
{
const size_t size = 512;
char *default_str = NULL;
char *hugetlb_str = NULL;
char *hbw_str = NULL;
char *hbw_hugetlb_str = NULL;
char *hbw_preferred_str = NULL;
char *hbw_preferred_hugetlb_str = NULL;
char *hbw_interleave_str = NULL;
default_str = (char *)memkind_malloc(MEMKIND_DEFAULT, size);
if (default_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr, "Unable to allocate default string\n");
return errno ? -errno : 1;
}
hugetlb_str = (char *)memkind_malloc(MEMKIND_HUGETLB, size);
if (hugetlb_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr, "Unable to allocate hugetlb string\n");
return errno ? -errno : 1;
}
hbw_str = (char *)memkind_malloc(MEMKIND_HBW, size);
if (hbw_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr, "Unable to allocate hbw string\n");
return errno ? -errno : 1;
}
hbw_hugetlb_str = (char *)memkind_malloc(MEMKIND_HBW_HUGETLB, size);
if (hbw_hugetlb_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr, "Unable to allocate hbw_hugetlb string\n");
return errno ? -errno : 1;
}
hbw_preferred_str = (char *)memkind_malloc(MEMKIND_HBW_PREFERRED, size);
if (hbw_preferred_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr, "Unable to allocate hbw_preferred string\n");
return errno ? -errno : 1;
}
hbw_preferred_hugetlb_str = (char *)memkind_malloc(
MEMKIND_HBW_PREFERRED_HUGETLB, size);
if (hbw_preferred_hugetlb_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr, "Unable to allocate hbw_preferred_hugetlb string\n");
return errno ? -errno : 1;
}
hbw_interleave_str = (char *)memkind_malloc(MEMKIND_HBW_INTERLEAVE, size);
if (hbw_interleave_str == NULL) {
perror("memkind_malloc()");
fprintf(stderr,"Unable to allocate hbw_interleave string\n");
return errno ? -errno : 1;
}
sprintf(default_str, "Hello world from standard memory\n");
sprintf(hugetlb_str, "Hello world from standard memory with 2 MB pages\n");
sprintf(hbw_str, "Hello world from high bandwidth memory\n");
sprintf(hbw_hugetlb_str, "Hello world from high bandwidth 2 MB paged memory\n");
sprintf(hbw_preferred_str,
"Hello world from high bandwidth memory if sufficient resources exist\n");
sprintf(hbw_preferred_hugetlb_str,
"Hello world from high bandwidth 2 MB paged memory if sufficient resources exist\n");
sprintf(hbw_interleave_str,
"Hello world from high bandwidth interleaved memory\n");
fprintf(stdout, "%s", default_str);
fprintf(stdout, "%s", hugetlb_str);
fprintf(stdout, "%s", hbw_str);
fprintf(stdout, "%s", hbw_hugetlb_str);
fprintf(stdout, "%s", hbw_preferred_str);
fprintf(stdout, "%s", hbw_preferred_hugetlb_str);
fprintf(stdout, "%s", hbw_interleave_str);
memkind_free(MEMKIND_HBW_INTERLEAVE, hbw_interleave_str);
memkind_free(MEMKIND_HBW_PREFERRED_HUGETLB, hbw_preferred_hugetlb_str);
memkind_free(MEMKIND_HBW_PREFERRED, hbw_preferred_str);
memkind_free(MEMKIND_HBW_HUGETLB, hbw_hugetlb_str);
memkind_free(MEMKIND_HBW, hbw_str);
memkind_free(MEMKIND_HUGETLB, hugetlb_str);
memkind_free(MEMKIND_DEFAULT, default_str);
return 0;
}