1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
|
//------------------------------------------------------------------------------
// GB_Global: global values in GraphBLAS
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
// All Global storage is declared, initialized, and accessed here. The
// contents of the GB_Global struct are only accessible to functions in this
// file. Global storage is used to keep track of the GraphBLAS mode (blocking
// or non-blocking), for pointers to malloc/realloc/free functions,
// global matrix options, and other settings.
#include "GB.h"
#include "include/GB_unused.h"
#include "cpu/GB_cpu_features.h"
//------------------------------------------------------------------------------
// Global storage: for all threads in a user application that uses GraphBLAS
//------------------------------------------------------------------------------
typedef struct
{
//--------------------------------------------------------------------------
// blocking/non-blocking mode, set by GrB_init
//--------------------------------------------------------------------------
int mode ; // GrB_NONBLOCKING, GrB_BLOCKING
// GxB_NONBLOCKING_GPU, or GxB_BLOCKING_GPU
bool init_called ; // true if GrB_init already called
//--------------------------------------------------------------------------
// hypersparsity and CSR/CSC format control
//--------------------------------------------------------------------------
float bitmap_switch [GxB_NBITMAP_SWITCH] ; // default bitmap_switch
float hyper_switch ; // default hyper_switch for new matrices
bool is_csc ; // default CSR/CSC format for new matrices
int64_t hyper_hash ; // controls when A->Y hyper_hash is created
//--------------------------------------------------------------------------
// abort function: only used for debugging
//--------------------------------------------------------------------------
void (* abort_function ) (void) ;
//--------------------------------------------------------------------------
// malloc/calloc/realloc/free: memory management functions
//--------------------------------------------------------------------------
// All threads must use the same malloc/realloc/free functions.
// They default to the C11 functions, but can be defined by GxB_init.
void * (* malloc_function ) (size_t) ; // required
void * (* calloc_function ) (size_t, size_t) ; // may be NULL
void * (* realloc_function ) (void *, size_t) ; // may be NULL
void (* free_function ) (void *) ; // required
bool malloc_is_thread_safe ; // default is true
//--------------------------------------------------------------------------
// tell MATLAB to make memory persistent
//--------------------------------------------------------------------------
void (* persistent_function ) (void *) ;
//--------------------------------------------------------------------------
// memory usage tracking: for testing and debugging only
//--------------------------------------------------------------------------
// malloc_tracking: default is false. There is no user-accessible API for
// setting this to true. If true, the following statistics are computed.
// If false, all of the following are unused.
// nmalloc: To aid in searching for memory leaks, GraphBLAS keeps track of
// the number of blocks of allocated that have not yet been freed. The
// count starts at zero. GB_malloc_memory and GB_calloc_memory increment
// this count, and free (of a non-NULL pointer) decrements it. realloc
// increments the count it if is allocating a new block, but it does this
// by calling GB_malloc_memory.
// malloc_debug: this is used for testing only (GraphBLAS/Tcov). If true,
// then use malloc_debug_count for testing memory allocation and
// out-of-memory conditions. If malloc_debug_count > 0, the value is
// decremented after each allocation of memory. If malloc_debug_count <=
// 0, the GB_*_memory routines pretend to fail; returning NULL and not
// allocating anything.
bool malloc_tracking ; // true if allocations are being tracked
int64_t nmalloc ; // number of blocks allocated but not freed
bool malloc_debug ; // if true, test memory handling
int64_t malloc_debug_count ; // for testing memory handling
//--------------------------------------------------------------------------
// for testing and development
//--------------------------------------------------------------------------
int64_t hack [8] ; // settings for testing/development only
//--------------------------------------------------------------------------
// diagnostic output
//--------------------------------------------------------------------------
bool burble ; // controls GBURBLE output
GB_printf_function_t printf_func ; // pointer to printf_style function
GB_flush_function_t flush_func ; // pointer to flush_style function
bool print_one_based ; // if true, print 1-based indices
bool stats_mem_shallow ; // if true, include shallow bytes in
// memory usage statistics
//--------------------------------------------------------------------------
// timing: for code development only
//--------------------------------------------------------------------------
double timing [40] ;
//--------------------------------------------------------------------------
// for malloc debugging only
//--------------------------------------------------------------------------
#ifdef GB_DEBUG
#define GB_MEMTABLE_SIZE 10000
GB_void *memtable_p [GB_MEMTABLE_SIZE] ;
size_t memtable_s [GB_MEMTABLE_SIZE] ;
#endif
int nmemtable ;
//--------------------------------------------------------------------------
// CPU features
//--------------------------------------------------------------------------
bool cpu_features_avx2 ; // x86_64 with AVX2
bool cpu_features_avx512f ; // x86_64 with AVX512f
//--------------------------------------------------------------------------
// integer control
//--------------------------------------------------------------------------
int8_t p_control ; // controls A->p
int8_t j_control ; // controls A->h and A->Y->[pix]
int8_t i_control ; // controls A->i
//--------------------------------------------------------------------------
// CUDA (DRAFT: in progress):
//--------------------------------------------------------------------------
int gpu_count ; // # of GPUs in the system
// properties of each GPU:
GB_cuda_device gpu_properties [GB_CUDA_MAX_GPUS] ;
}
GB_Global_struct ;
static GB_Global_struct GB_Global =
{
// GraphBLAS mode
.mode = GrB_NONBLOCKING, // default is nonblocking, no GPU
// initialization flag
.init_called = false, // GrB_init has not yet been called
// min dimension density
#define GB_BITMAP_SWITCH_1 ((float) 0.04)
#define GB_BITMAP_SWITCH_2 ((float) 0.05)
#define GB_BITMAP_SWITCH_3_to_4 ((float) 0.06)
#define GB_BITMAP_SWITCH_5_to_8 ((float) 0.08)
#define GB_BITMAP_SWITCH_9_to_16 ((float) 0.10)
#define GB_BITMAP_SWITCH_17_to_32 ((float) 0.20)
#define GB_BITMAP_SWITCH_33_to_64 ((float) 0.30)
#define GB_BITMAP_SWITCH_gt_than_64 ((float) 0.40)
// default format
.bitmap_switch = {
GB_BITMAP_SWITCH_1,
GB_BITMAP_SWITCH_2,
GB_BITMAP_SWITCH_3_to_4,
GB_BITMAP_SWITCH_5_to_8,
GB_BITMAP_SWITCH_9_to_16,
GB_BITMAP_SWITCH_17_to_32,
GB_BITMAP_SWITCH_33_to_64,
GB_BITMAP_SWITCH_gt_than_64 },
.hyper_switch = GB_HYPER_SWITCH_DEFAULT,
.is_csc = false, // default is GxB_BY_ROW
.hyper_hash = GB_HYPER_HASH_DEFAULT,
// abort function for debugging only
.abort_function = abort,
// malloc/realloc/free functions: default to C11 functions
.malloc_function = malloc,
.realloc_function = realloc,
.free_function = free,
.malloc_is_thread_safe = true,
// tell MATLAB to make memory persistent
.persistent_function = NULL,
// malloc tracking, for testing, statistics, and debugging only
.malloc_tracking = false,
.nmalloc = 0, // memory block counter
.malloc_debug = false, // do not test memory handling
.malloc_debug_count = 0, // counter for testing memory handling
// for testing and development only; not used in production
.hack = {0, 0, 0, 0, 0, 0, 0, 0},
// diagnostics
.burble = false,
.printf_func = NULL,
.flush_func = NULL,
.print_one_based = false, // if true, print 1-based indices
.stats_mem_shallow = false, // if true, include shallow bytes in stats
// timing is for testing and development only; not used in production
.timing = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
// for malloc debugging only
.nmemtable = 0, // memtable is empty
// CPU features
.cpu_features_avx2 = false, // x86_64 with AVX2
.cpu_features_avx512f = false, // x86_64 with AVX512f
// integer control
.p_control = (int8_t) 32,
.j_control = (int8_t) 32,
.i_control = (int8_t) 32,
// CUDA environment (DRAFT: in progress)
.gpu_count = 0, // # of GPUs in the system
} ;
//==============================================================================
// GB_Global access functions
//==============================================================================
//------------------------------------------------------------------------------
// mode
//------------------------------------------------------------------------------
void GB_Global_mode_set (int mode)
{
GB_Global.mode = mode ;
}
int GB_Global_mode_get (void)
{
return (GB_Global.mode) ;
}
//------------------------------------------------------------------------------
// init_called
//------------------------------------------------------------------------------
void GB_Global_GrB_init_called_set (bool init_called)
{
GB_Global.init_called = init_called ;
}
bool GB_Global_GrB_init_called_get (void)
{
return (GB_Global.init_called) ;
}
//------------------------------------------------------------------------------
// integer control
//------------------------------------------------------------------------------
void GB_Global_p_control_set (int8_t p_control)
{
GB_Global.p_control = p_control ;
}
int8_t GB_Global_p_control_get (void)
{
return (GB_Global.p_control) ;
}
void GB_Global_j_control_set (int8_t j_control)
{
GB_Global.j_control = j_control ;
}
int8_t GB_Global_j_control_get (void)
{
return (GB_Global.j_control) ;
}
void GB_Global_i_control_set (int8_t i_control)
{
GB_Global.i_control = i_control ;
}
int8_t GB_Global_i_control_get (void)
{
return (GB_Global.i_control) ;
}
//------------------------------------------------------------------------------
// cpu features
//------------------------------------------------------------------------------
// GB_Global_cpu_features_query is used just once, by GrB_init or GxB_init,
// to determine at run-time whether or not AVX2 and/or AVX512F is available.
// Once these two flags are set, they are saved in the GB_Global struct, and
// can then be queried later by GB_Global_cpu_features_avx*.
void GB_Global_cpu_features_query (void)
{
#if GBX86
{
//----------------------------------------------------------------------
// x86_64 architecture: see if AVX2 and/or AVX512F are supported
//----------------------------------------------------------------------
#if !defined ( GBNCPUFEAT )
{
// Google's cpu_features package is available: use run-time tests
X86Features features = GetX86Info ( ).features ;
GB_Global.cpu_features_avx2 = (bool) (features.avx2) ;
GB_Global.cpu_features_avx512f = (bool) (features.avx512f) ;
}
#else
{
// cpu_features package not available; use compile-time tests
#if defined ( GBAVX2 )
{
// the build system asserts whether or not AVX2 is available
GB_Global.cpu_features_avx2 = (bool) (GBAVX2) ;
}
#else
{
// AVX2 not available
GB_Global.cpu_features_avx2 = false ;
}
#endif
#if defined ( GBAVX512F )
{
// the build system asserts whether or not AVX512F is available
GB_Global.cpu_features_avx512f = (bool) (GBAVX512F) ;
}
#else
{
// AVX512F not available
GB_Global.cpu_features_avx512f = false ;
}
#endif
}
#endif
}
#else
{
//----------------------------------------------------------------------
// not on the x86_64 architecture, so no AVX2 or AVX512F acceleration
//----------------------------------------------------------------------
GB_Global.cpu_features_avx2 = false ;
GB_Global.cpu_features_avx512f = false ;
}
#endif
}
bool GB_Global_cpu_features_avx2 (void)
{
return (GB_Global.cpu_features_avx2) ;
}
bool GB_Global_cpu_features_avx512f (void)
{
return (GB_Global.cpu_features_avx512f) ;
}
//------------------------------------------------------------------------------
// hyper_switch
//------------------------------------------------------------------------------
void GB_Global_hyper_switch_set (float hyper_switch)
{
GB_Global.hyper_switch = hyper_switch ;
}
float GB_Global_hyper_switch_get (void)
{
return (GB_Global.hyper_switch) ;
}
//------------------------------------------------------------------------------
// hyper_hash
//------------------------------------------------------------------------------
void GB_Global_hyper_hash_set (int64_t hyper_hash)
{
GB_Global.hyper_hash = hyper_hash ;
}
int64_t GB_Global_hyper_hash_get (void)
{
return (GB_Global.hyper_hash) ;
}
//------------------------------------------------------------------------------
// bitmap_switch
//------------------------------------------------------------------------------
void GB_Global_bitmap_switch_set (int k, float b)
{
k = GB_IMAX (k, 0) ;
k = GB_IMIN (k, 7) ;
GB_Global.bitmap_switch [k] = b ;
}
float GB_Global_bitmap_switch_get (int k)
{
k = GB_IMAX (k, 0) ;
k = GB_IMIN (k, 7) ;
return (GB_Global.bitmap_switch [k]) ;
}
float GB_Global_bitmap_switch_matrix_get (int64_t vlen, int64_t vdim)
{
int64_t d = GB_IMIN (vlen, vdim) ;
if (d <= 1) return (GB_Global.bitmap_switch [0]) ;
if (d <= 2) return (GB_Global.bitmap_switch [1]) ;
if (d <= 4) return (GB_Global.bitmap_switch [2]) ;
if (d <= 8) return (GB_Global.bitmap_switch [3]) ;
if (d <= 16) return (GB_Global.bitmap_switch [4]) ;
if (d <= 32) return (GB_Global.bitmap_switch [5]) ;
if (d <= 64) return (GB_Global.bitmap_switch [6]) ;
return (GB_Global.bitmap_switch [7]) ;
}
void GB_Global_bitmap_switch_default (void)
{
GB_Global.bitmap_switch [0] = GB_BITMAP_SWITCH_1 ;
GB_Global.bitmap_switch [1] = GB_BITMAP_SWITCH_2 ;
GB_Global.bitmap_switch [2] = GB_BITMAP_SWITCH_3_to_4 ;
GB_Global.bitmap_switch [3] = GB_BITMAP_SWITCH_5_to_8 ;
GB_Global.bitmap_switch [4] = GB_BITMAP_SWITCH_9_to_16 ;
GB_Global.bitmap_switch [5] = GB_BITMAP_SWITCH_17_to_32 ;
GB_Global.bitmap_switch [6] = GB_BITMAP_SWITCH_33_to_64 ;
GB_Global.bitmap_switch [7] = GB_BITMAP_SWITCH_gt_than_64 ;
}
//------------------------------------------------------------------------------
// is_csc
//------------------------------------------------------------------------------
void GB_Global_is_csc_set (bool is_csc)
{
GB_Global.is_csc = is_csc ;
}
bool GB_Global_is_csc_get (void)
{
return (GB_Global.is_csc) ;
}
//------------------------------------------------------------------------------
// abort_function
//------------------------------------------------------------------------------
void GB_Global_abort_set (void (* abort_function) (void))
{
GB_Global.abort_function = abort_function ;
}
void GB_Global_abort (void)
{
GB_Global.abort_function ( ) ;
}
//------------------------------------------------------------------------------
// malloc debuging
//------------------------------------------------------------------------------
// These functions keep a separate record of the pointers to all allocated
// blocks of memory and their sizes, just for sanity checks.
void GB_Global_memtable_dump (void)
{
#if defined (GB_DEBUG) && defined (GB_MEMDUMP)
GBMDUMP ("\nmemtable dump: %d nmalloc " GBd "\n",
GB_Global.nmemtable, GB_Global.nmalloc) ;
for (int k = 0 ; k < GB_Global.nmemtable ; k++)
{
GBMDUMP (" %4d: %12p : %ld\n", k,
GB_Global.memtable_p [k],
GB_Global.memtable_s [k]) ;
}
#endif
}
int GB_Global_memtable_n (void)
{
return (GB_Global.nmemtable) ;
}
void GB_Global_memtable_clear (void)
{
GB_Global.nmemtable = 0 ;
}
// add a pointer to the table of malloc'd blocks
void GB_Global_memtable_add (void *p, size_t size)
{
if (p == NULL) return ;
if (GB_Global.malloc_tracking)
{
GB_ATOMIC_UPDATE
GB_Global.nmalloc++ ;
}
#ifdef GB_DEBUG
bool fail = false ;
GBMDUMP ("memtable add %p size %ld\n", p, size) ;
#pragma omp critical(GB_memtable)
{
int n = GB_Global.nmemtable ;
fail = (n > GB_MEMTABLE_SIZE) ;
if (!fail)
{
for (int i = 0 ; i < n ; i++)
{
if (p == GB_Global.memtable_p [i])
{
GBDUMP ("\nFAIL add duplicate %p size %ld\n", p, size) ;
GB_Global_memtable_dump ( ) ;
fail = true ;
break ;
}
}
}
if (!fail && p != NULL)
{
GB_Global.memtable_p [n] = p ;
GB_Global.memtable_s [n] = size ;
GB_Global.nmemtable++ ;
}
}
ASSERT (!fail) ;
GB_Global_memtable_dump ( ) ;
#endif
}
// get the size of a malloc'd block
size_t GB_Global_memtable_size (void *p)
{
size_t size = 0 ;
#ifdef GB_DEBUG
if (p == NULL) return (0) ;
bool found = false ;
#pragma omp critical(GB_memtable)
{
int n = GB_Global.nmemtable ;
for (int i = 0 ; i < n ; i++)
{
if (p == GB_Global.memtable_p [i])
{
size = GB_Global.memtable_s [i] ;
found = true ;
break ;
}
}
}
if (!found)
{
GBDUMP ("\nFAIL: %p not found\n", p) ;
GB_Global_memtable_dump ( ) ;
ASSERT (0) ;
}
#endif
return (size) ;
}
// test if a malloc'd block is in the table
bool GB_Global_memtable_find (void *p)
{
bool found = false ;
#ifdef GB_DEBUG
if (p == NULL) return (false) ;
#pragma omp critical(GB_memtable)
{
int n = GB_Global.nmemtable ;
for (int i = 0 ; i < n ; i++)
{
if (p == GB_Global.memtable_p [i])
{
found = true ;
break ;
}
}
}
#endif
return (found) ;
}
// remove a pointer from the table of malloc'd blocks
void GB_Global_memtable_remove (void *p)
{
if (p == NULL) return ;
if (GB_Global.malloc_tracking)
{
GB_ATOMIC_UPDATE
GB_Global.nmalloc-- ;
}
#ifdef GB_DEBUG
bool found = false ;
GBMDUMP ("memtable remove %p ", p) ;
#pragma omp critical(GB_memtable)
{
int n = GB_Global.nmemtable ;
for (int i = 0 ; i < n ; i++)
{
if (p == GB_Global.memtable_p [i])
{
// found p in the table; remove it
GB_Global.memtable_p [i] = GB_Global.memtable_p [n-1] ;
GB_Global.memtable_s [i] = GB_Global.memtable_s [n-1] ;
GB_Global.nmemtable -- ;
found = true ;
break ;
}
}
}
if (!found)
{
GBDUMP ("remove %p NOT FOUND\n", p) ;
GB_Global_memtable_dump ( ) ;
ASSERT (0) ;
}
GB_Global_memtable_dump ( ) ;
#endif
}
//------------------------------------------------------------------------------
// malloc_function
//------------------------------------------------------------------------------
#include "include/GB_pedantic_disable.h"
void GB_Global_malloc_function_set (void * (* malloc_function) (size_t))
{
GB_Global.malloc_function = malloc_function ;
}
void * GB_Global_malloc_function_get (void)
{
return ((void *) GB_Global.malloc_function) ;
}
void * GB_Global_malloc_function (size_t size)
{
void *p = NULL ;
if (GB_Global.malloc_is_thread_safe)
{
p = GB_Global.malloc_function (size) ;
}
else
{
#pragma omp critical(GB_malloc_protection)
{
p = GB_Global.malloc_function (size) ;
}
}
GB_Global_memtable_add (p, size) ;
return (p) ;
}
//------------------------------------------------------------------------------
// calloc_function
//------------------------------------------------------------------------------
void GB_Global_calloc_function_set (void * (* calloc_function) (size_t, size_t))
{
GB_Global.calloc_function = calloc_function ;
}
void * GB_Global_calloc_function_get (void)
{
return ((void *) GB_Global.calloc_function) ;
}
//------------------------------------------------------------------------------
// realloc_function
//------------------------------------------------------------------------------
void GB_Global_realloc_function_set
(
void * (* realloc_function) (void *, size_t)
)
{
GB_Global.realloc_function = realloc_function ;
}
void * GB_Global_realloc_function_get (void)
{
return ((void *) GB_Global.realloc_function) ;
}
bool GB_Global_have_realloc_function (void)
{
return (GB_Global.realloc_function != NULL) ;
}
void * GB_Global_realloc_function (void *p, size_t size)
{
void *pnew = NULL ;
if (GB_Global.malloc_is_thread_safe)
{
pnew = GB_Global.realloc_function (p, size) ;
}
else
{
#pragma omp critical(GB_malloc_protection)
{
pnew = GB_Global.realloc_function (p, size) ;
}
}
if (pnew != NULL)
{
GB_Global_memtable_remove (p) ;
GB_Global_memtable_add (pnew, size) ;
}
return (pnew) ;
}
//------------------------------------------------------------------------------
// free_function
//------------------------------------------------------------------------------
void GB_Global_free_function_set (void (* free_function) (void *))
{
GB_Global.free_function = free_function ;
}
void * GB_Global_free_function_get (void)
{
return ((void *) GB_Global.free_function) ;
}
void GB_Global_free_function (void *p)
{
if (GB_Global.malloc_is_thread_safe)
{
GB_Global.free_function (p) ;
}
else
{
#pragma omp critical(GB_malloc_protection)
{
GB_Global.free_function (p) ;
}
}
GB_Global_memtable_remove (p) ;
}
//------------------------------------------------------------------------------
// malloc/free persistent memory: malloc and make the memory persistent
//------------------------------------------------------------------------------
// By default, MATLAB frees any memory allocated by mxMalloc when a mexFunction
// returns, except for any memory passed back to the MATLAB caller. This is
// fine for all of GraphBLAS, except for the JIT hash table.
void * GB_Global_persistent_malloc (size_t size)
{
// malloc persistent memory
void *p = GB_Global.malloc_function (size) ;
GB_Global_make_persistent (p) ;
return (p) ;
}
void GB_Global_make_persistent (void *p)
{
if (p != NULL && GB_Global.persistent_function != NULL)
{
// tell MATLAB to make this memory persistent
GB_Global.persistent_function (p) ;
}
}
void GB_Global_persistent_set (void (* persistent_function) (void *))
{
// set the persistent function for MATLAB
GB_Global.persistent_function = persistent_function ;
}
void GB_Global_persistent_free (void **p)
{
// free persistent memory
if (p != NULL && *p != NULL)
{
GB_Global.free_function (*p) ;
}
(*p) = NULL ;
}
//------------------------------------------------------------------------------
// malloc_is_thread_safe
//------------------------------------------------------------------------------
void GB_Global_malloc_is_thread_safe_set (bool malloc_is_thread_safe)
{
GB_Global.malloc_is_thread_safe = malloc_is_thread_safe ;
}
bool GB_Global_malloc_is_thread_safe_get (void)
{
return (GB_Global.malloc_is_thread_safe) ;
}
//------------------------------------------------------------------------------
// malloc_tracking
//------------------------------------------------------------------------------
void GB_Global_malloc_tracking_set (bool malloc_tracking)
{
GB_Global.malloc_tracking = malloc_tracking ;
}
bool GB_Global_malloc_tracking_get (void)
{
return (GB_Global.malloc_tracking) ;
}
//------------------------------------------------------------------------------
// nmalloc
//------------------------------------------------------------------------------
void GB_Global_nmalloc_clear (void)
{
GB_ATOMIC_WRITE
GB_Global.nmalloc = 0 ;
}
int64_t GB_Global_nmalloc_get (void)
{
int64_t nmalloc ;
GB_ATOMIC_READ
nmalloc = GB_Global.nmalloc ;
return (nmalloc) ;
}
//------------------------------------------------------------------------------
// malloc_debug
//------------------------------------------------------------------------------
void GB_Global_malloc_debug_set (bool malloc_debug)
{
GB_ATOMIC_WRITE
GB_Global.malloc_debug = malloc_debug ;
}
bool GB_Global_malloc_debug_get (void)
{
bool malloc_debug ;
GB_ATOMIC_READ
malloc_debug = GB_Global.malloc_debug ;
return (malloc_debug) ;
}
//------------------------------------------------------------------------------
// malloc_debug_count
//------------------------------------------------------------------------------
void GB_Global_malloc_debug_count_set (int64_t malloc_debug_count)
{
GB_ATOMIC_WRITE
GB_Global.malloc_debug_count = malloc_debug_count ;
}
bool GB_Global_malloc_debug_count_decrement (void)
{
GB_ATOMIC_UPDATE
GB_Global.malloc_debug_count-- ;
int64_t malloc_debug_count ;
GB_ATOMIC_READ
malloc_debug_count = GB_Global.malloc_debug_count ;
return (malloc_debug_count <= 0) ;
}
//------------------------------------------------------------------------------
// hack: for setting an internal flag for testing and development only
//------------------------------------------------------------------------------
void GB_Global_hack_set (int k, int64_t hack)
{
GB_Global.hack [k] = hack ;
}
int64_t GB_Global_hack_get (int k)
{
return (GB_Global.hack [k]) ;
}
//------------------------------------------------------------------------------
// burble: for controlling the burble output
//------------------------------------------------------------------------------
void GB_Global_burble_set (bool burble)
{
GB_Global.burble = burble ;
}
bool GB_Global_burble_get (void)
{
return (GB_Global.burble) ;
}
GB_printf_function_t GB_Global_printf_get (void)
{
return (GB_Global.printf_func) ;
}
GB_flush_function_t GB_Global_flush_get (void)
{
return (GB_Global.flush_func) ;
}
void GB_Global_printf_set (GB_printf_function_t pr_func)
{
GB_Global.printf_func = pr_func ;
}
void GB_Global_flush_set (GB_flush_function_t fl_func)
{
GB_Global.flush_func = fl_func ;
}
//------------------------------------------------------------------------------
// for printing matrices in 1-based index notation (@GrB and Julia)
//------------------------------------------------------------------------------
void GB_Global_print_one_based_set (bool onebased)
{
GB_Global.print_one_based = onebased ;
}
bool GB_Global_print_one_based_get (void)
{
return (GB_Global.print_one_based) ;
}
//------------------------------------------------------------------------------
// for memory usage statistics
//------------------------------------------------------------------------------
void GB_Global_stats_mem_shallow_set (bool mem_shallow)
{
GB_Global.stats_mem_shallow = mem_shallow ;
}
bool GB_Global_stats_mem_shallow_get (void)
{
return (GB_Global.stats_mem_shallow) ;
}
//------------------------------------------------------------------------------
// CUDA (DRAFT: in progress)
//------------------------------------------------------------------------------
bool GB_Global_gpu_count_set (bool enable_cuda)
{
// set the # of GPUs in the system;
// this function is only called once, by GB_init.
#if defined ( GRAPHBLAS_HAS_CUDA )
if (enable_cuda)
{
return (GB_cuda_get_device_count (&GB_Global.gpu_count)) ;
}
else
#endif
{
// no GPUs available, or available but not requested
GB_Global.gpu_count = 0 ;
return (true) ;
}
}
int GB_Global_gpu_count_get (void)
{
// get the # of GPUs in the system
return (GB_Global.gpu_count) ;
}
#define GB_GPU_DEVICE_CHECK(error) \
if (device < 0 || device >= GB_Global.gpu_count) return (error) ;
size_t GB_Global_gpu_memorysize_get (int device)
{
// get the memory size of a specific GPU
GB_GPU_DEVICE_CHECK (0) ; // memory size zero if invalid GPU
return (GB_Global.gpu_properties [device].total_global_memory) ;
}
int GB_Global_gpu_sm_get (int device)
{
// get the # of SMs in a specific GPU
GB_GPU_DEVICE_CHECK (0) ; // zero if invalid GPU
return (GB_Global.gpu_properties [device].number_of_sms) ;
}
bool GB_Global_gpu_device_pool_size_set (int device, size_t size)
{
GB_GPU_DEVICE_CHECK (false) ; // fail if invalid GPU
GB_Global.gpu_properties [device].pool_size = size ;
return (true) ;
}
bool GB_Global_gpu_device_max_pool_size_set (int device, size_t size)
{
GB_GPU_DEVICE_CHECK (false) ; // fail if invalid GPU
GB_Global.gpu_properties[device].max_pool_size = size ;
return (true) ;
}
bool GB_Global_gpu_device_memory_resource_set (int device, void *resource)
{
GB_GPU_DEVICE_CHECK (false) ; // fail if invalid GPU
GB_Global.gpu_properties[device].memory_resource = resource;
return (true) ;
}
void* GB_Global_gpu_device_memory_resource_get (int device)
{
GB_GPU_DEVICE_CHECK (false) ; // fail if invalid GPU
return (GB_Global.gpu_properties [device].memory_resource) ;
// NOTE: this returns a void*, needs to be cast to be used
}
bool GB_Global_gpu_device_properties_get (int device)
{
// get all properties of a specific GPU;
// this function is only called once per GPU, by GB_init.
GB_GPU_DEVICE_CHECK (false) ; // fail if invalid GPU
#if defined ( GRAPHBLAS_HAS_CUDA )
return (GB_cuda_get_device_properties (device,
&(GB_Global.gpu_properties [device]))) ;
#else
// if no GPUs exist, they cannot be queried
return (false) ;
#endif
}
//------------------------------------------------------------------------------
// timing: for code development only
//------------------------------------------------------------------------------
void GB_Global_timing_clear_all (void)
{
for (int k = 0 ; k < 40 ; k++)
{
GB_Global.timing [k] = 0 ;
}
}
void GB_Global_timing_clear (int k)
{
GB_Global.timing [k] = 0 ;
}
void GB_Global_timing_set (int k, double t)
{
GB_Global.timing [k] = t ;
}
void GB_Global_timing_add (int k, double t)
{
GB_Global.timing [k] += t ;
}
double GB_Global_timing_get (int k)
{
return (GB_Global.timing [k]) ;
}
|