File size: 43,966 Bytes
5c7f7bd |
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 |
/* Copyright 2010-2014 NVIDIA Corporation. All rights reserved.
*
* NOTICE TO LICENSEE:
*
* The source code and/or documentation ("Licensed Deliverables") are
* subject to NVIDIA intellectual property rights under U.S. and
* international Copyright laws.
*
* The Licensed Deliverables contained herein are PROPRIETARY and
* CONFIDENTIAL to NVIDIA and are being provided under the terms and
* conditions of a form of NVIDIA software license agreement by and
* between NVIDIA and Licensee ("License Agreement") or electronically
* accepted by Licensee. Notwithstanding any terms or conditions to
* the contrary in the License Agreement, reproduction or disclosure
* of the Licensed Deliverables to any third party without the express
* written consent of NVIDIA is prohibited.
*
* NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
* LICENSE AGREEMENT, NVIDIA MAKES NO REPRESENTATION ABOUT THE
* SUITABILITY OF THESE LICENSED DELIVERABLES FOR ANY PURPOSE. THEY ARE
* PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND.
* NVIDIA DISCLAIMS ALL WARRANTIES WITH REGARD TO THESE LICENSED
* DELIVERABLES, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY,
* NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
* NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
* LICENSE AGREEMENT, IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY
* SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THESE LICENSED DELIVERABLES.
*
* U.S. Government End Users. These Licensed Deliverables are a
* "commercial item" as that term is defined at 48 C.F.R. 2.101 (OCT
* 1995), consisting of "commercial computer software" and "commercial
* computer software documentation" as such terms are used in 48
* C.F.R. 12.212 (SEPT 1995) and are provided to the U.S. Government
* only as a commercial end item. Consistent with 48 C.F.R.12.212 and
* 48 C.F.R. 227.7202-1 through 227.7202-4 (JUNE 1995), all
* U.S. Government End Users acquire the Licensed Deliverables with
* only those rights set forth herein.
*
* Any use of the Licensed Deliverables in individual and commercial
* software must include, in the user documentation and internal
* comments to the code, the above Disclaimer and U.S. Government End
* Users Notice.
*/
#if !defined(CURAND_H_)
#define CURAND_H_
/**
* \defgroup HOST Host API
*
* @{
*/
#ifndef __CUDACC_RTC__
#include <cuda_runtime.h>
#endif
#ifndef CURANDAPI
#ifdef _WIN32
#define CURANDAPI __stdcall
#else
#define CURANDAPI
#endif
#endif
#if defined(__cplusplus)
extern "C" {
#endif /* __cplusplus */
#define CURAND_VER_MAJOR 10
#define CURAND_VER_MINOR 3
#define CURAND_VER_PATCH 2
#define CURAND_VER_BUILD 106
#define CURAND_VERSION (CURAND_VER_MAJOR * 1000 + \
CURAND_VER_MINOR * 100 + \
CURAND_VER_PATCH)
/* CURAND Host API datatypes */
/**
* @{
*/
/**
* CURAND function call status types
*/
enum curandStatus {
CURAND_STATUS_SUCCESS = 0, ///< No errors
CURAND_STATUS_VERSION_MISMATCH = 100, ///< Header file and linked library version do not match
CURAND_STATUS_NOT_INITIALIZED = 101, ///< Generator not initialized
CURAND_STATUS_ALLOCATION_FAILED = 102, ///< Memory allocation failed
CURAND_STATUS_TYPE_ERROR = 103, ///< Generator is wrong type
CURAND_STATUS_OUT_OF_RANGE = 104, ///< Argument out of range
CURAND_STATUS_LENGTH_NOT_MULTIPLE = 105, ///< Length requested is not a multple of dimension
CURAND_STATUS_DOUBLE_PRECISION_REQUIRED = 106, ///< GPU does not have double precision required by MRG32k3a
CURAND_STATUS_LAUNCH_FAILURE = 201, ///< Kernel launch failure
CURAND_STATUS_PREEXISTING_FAILURE = 202, ///< Preexisting failure on library entry
CURAND_STATUS_INITIALIZATION_FAILED = 203, ///< Initialization of CUDA failed
CURAND_STATUS_ARCH_MISMATCH = 204, ///< Architecture mismatch, GPU does not support requested feature
CURAND_STATUS_INTERNAL_ERROR = 999 ///< Internal library error
};
/*
* CURAND function call status types
*/
/** \cond UNHIDE_TYPEDEFS */
typedef enum curandStatus curandStatus_t;
/** \endcond */
/**
* CURAND generator types
*/
enum curandRngType {
CURAND_RNG_TEST = 0,
CURAND_RNG_PSEUDO_DEFAULT = 100, ///< Default pseudorandom generator
CURAND_RNG_PSEUDO_XORWOW = 101, ///< XORWOW pseudorandom generator
CURAND_RNG_PSEUDO_MRG32K3A = 121, ///< MRG32k3a pseudorandom generator
CURAND_RNG_PSEUDO_MTGP32 = 141, ///< Mersenne Twister MTGP32 pseudorandom generator
CURAND_RNG_PSEUDO_MT19937 = 142, ///< Mersenne Twister MT19937 pseudorandom generator
CURAND_RNG_PSEUDO_PHILOX4_32_10 = 161, ///< PHILOX-4x32-10 pseudorandom generator
CURAND_RNG_QUASI_DEFAULT = 200, ///< Default quasirandom generator
CURAND_RNG_QUASI_SOBOL32 = 201, ///< Sobol32 quasirandom generator
CURAND_RNG_QUASI_SCRAMBLED_SOBOL32 = 202, ///< Scrambled Sobol32 quasirandom generator
CURAND_RNG_QUASI_SOBOL64 = 203, ///< Sobol64 quasirandom generator
CURAND_RNG_QUASI_SCRAMBLED_SOBOL64 = 204 ///< Scrambled Sobol64 quasirandom generator
};
/*
* CURAND generator types
*/
/** \cond UNHIDE_TYPEDEFS */
typedef enum curandRngType curandRngType_t;
/** \endcond */
/**
* CURAND ordering of results in memory
*/
enum curandOrdering {
CURAND_ORDERING_PSEUDO_BEST = 100, ///< Best ordering for pseudorandom results
CURAND_ORDERING_PSEUDO_DEFAULT = 101, ///< Specific default thread sequence for pseudorandom results, same as CURAND_ORDERING_PSEUDO_BEST
CURAND_ORDERING_PSEUDO_SEEDED = 102, ///< Specific seeding pattern for fast lower quality pseudorandom results
CURAND_ORDERING_PSEUDO_LEGACY = 103, ///< Specific legacy sequence for pseudorandom results, guaranteed to remain the same for all cuRAND release
CURAND_ORDERING_PSEUDO_DYNAMIC = 104, ///< Specific ordering adjusted to the device it is being executed on, provides the best performance
CURAND_ORDERING_QUASI_DEFAULT = 201 ///< Specific n-dimensional ordering for quasirandom results
};
/*
* CURAND ordering of results in memory
*/
/** \cond UNHIDE_TYPEDEFS */
typedef enum curandOrdering curandOrdering_t;
/** \endcond */
/**
* CURAND choice of direction vector set
*/
enum curandDirectionVectorSet {
CURAND_DIRECTION_VECTORS_32_JOEKUO6 = 101, ///< Specific set of 32-bit direction vectors generated from polynomials recommended by S. Joe and F. Y. Kuo, for up to 20,000 dimensions
CURAND_SCRAMBLED_DIRECTION_VECTORS_32_JOEKUO6 = 102, ///< Specific set of 32-bit direction vectors generated from polynomials recommended by S. Joe and F. Y. Kuo, for up to 20,000 dimensions, and scrambled
CURAND_DIRECTION_VECTORS_64_JOEKUO6 = 103, ///< Specific set of 64-bit direction vectors generated from polynomials recommended by S. Joe and F. Y. Kuo, for up to 20,000 dimensions
CURAND_SCRAMBLED_DIRECTION_VECTORS_64_JOEKUO6 = 104 ///< Specific set of 64-bit direction vectors generated from polynomials recommended by S. Joe and F. Y. Kuo, for up to 20,000 dimensions, and scrambled
};
/*
* CURAND choice of direction vector set
*/
/** \cond UNHIDE_TYPEDEFS */
typedef enum curandDirectionVectorSet curandDirectionVectorSet_t;
/** \endcond */
/**
* CURAND array of 32-bit direction vectors
*/
/** \cond UNHIDE_TYPEDEFS */
typedef unsigned int curandDirectionVectors32_t[32];
/** \endcond */
/**
* CURAND array of 64-bit direction vectors
*/
/** \cond UNHIDE_TYPEDEFS */
typedef unsigned long long curandDirectionVectors64_t[64];
/** \endcond **/
/**
* CURAND generator (opaque)
*/
struct curandGenerator_st;
/**
* CURAND generator
*/
/** \cond UNHIDE_TYPEDEFS */
typedef struct curandGenerator_st *curandGenerator_t;
/** \endcond */
/**
* CURAND distribution
*/
/** \cond UNHIDE_TYPEDEFS */
typedef double curandDistribution_st;
typedef curandDistribution_st *curandDistribution_t;
typedef struct curandDistributionShift_st *curandDistributionShift_t;
/** \endcond */
/**
* CURAND distribution M2
*/
/** \cond UNHIDE_TYPEDEFS */
typedef struct curandDistributionM2Shift_st *curandDistributionM2Shift_t;
typedef struct curandHistogramM2_st *curandHistogramM2_t;
typedef unsigned int curandHistogramM2K_st;
typedef curandHistogramM2K_st *curandHistogramM2K_t;
typedef curandDistribution_st curandHistogramM2V_st;
typedef curandHistogramM2V_st *curandHistogramM2V_t;
typedef struct curandDiscreteDistribution_st *curandDiscreteDistribution_t;
/** \endcond */
/*
* CURAND METHOD
*/
/** \cond UNHIDE_ENUMS */
enum curandMethod {
CURAND_CHOOSE_BEST = 0, // choose best depends on args
CURAND_ITR = 1,
CURAND_KNUTH = 2,
CURAND_HITR = 3,
CURAND_M1 = 4,
CURAND_M2 = 5,
CURAND_BINARY_SEARCH = 6,
CURAND_DISCRETE_GAUSS = 7,
CURAND_REJECTION = 8,
CURAND_DEVICE_API = 9,
CURAND_FAST_REJECTION = 10,
CURAND_3RD = 11,
CURAND_DEFINITION = 12,
CURAND_POISSON = 13
};
typedef enum curandMethod curandMethod_t;
/** \endcond */
#ifndef __CUDACC_RTC__
/**
* @}
*/
/**
* \brief Create new random number generator.
*
* Creates a new random number generator of type \p rng_type
* and returns it in \p *generator.
*
* Legal values for \p rng_type are:
* - CURAND_RNG_PSEUDO_DEFAULT
* - CURAND_RNG_PSEUDO_XORWOW
* - CURAND_RNG_PSEUDO_MRG32K3A
* - CURAND_RNG_PSEUDO_MTGP32
* - CURAND_RNG_PSEUDO_MT19937
* - CURAND_RNG_PSEUDO_PHILOX4_32_10
* - CURAND_RNG_QUASI_DEFAULT
* - CURAND_RNG_QUASI_SOBOL32
* - CURAND_RNG_QUASI_SCRAMBLED_SOBOL32
* - CURAND_RNG_QUASI_SOBOL64
* - CURAND_RNG_QUASI_SCRAMBLED_SOBOL64
*
* When \p rng_type is CURAND_RNG_PSEUDO_DEFAULT, the type chosen
* is CURAND_RNG_PSEUDO_XORWOW. \n
* When \p rng_type is CURAND_RNG_QUASI_DEFAULT,
* the type chosen is CURAND_RNG_QUASI_SOBOL32.
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_XORWOW are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_MRG32K3A are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_MTGP32 are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_MT19937 are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* * The default values for \p rng_type = CURAND_RNG_PSEUDO_PHILOX4_32_10 are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SOBOL32 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SOBOL64 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SCRAMBBLED_SOBOL32 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SCRAMBLED_SOBOL64 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* \param generator - Pointer to generator
* \param rng_type - Type of generator to create
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED, if memory could not be allocated \n
* - CURAND_STATUS_INITIALIZATION_FAILED if there was a problem setting up the GPU \n
* - CURAND_STATUS_VERSION_MISMATCH if the header file version does not match the
* dynamically linked library version \n
* - CURAND_STATUS_TYPE_ERROR if the value for \p rng_type is invalid \n
* - CURAND_STATUS_SUCCESS if generator was created successfully \n
*
*/
curandStatus_t CURANDAPI
curandCreateGenerator(curandGenerator_t *generator, curandRngType_t rng_type);
/**
* \brief Create new host CPU random number generator.
*
* Creates a new host CPU random number generator of type \p rng_type
* and returns it in \p *generator.
*
* Legal values for \p rng_type are:
* - CURAND_RNG_PSEUDO_DEFAULT
* - CURAND_RNG_PSEUDO_XORWOW
* - CURAND_RNG_PSEUDO_MRG32K3A
* - CURAND_RNG_PSEUDO_MTGP32
* - CURAND_RNG_PSEUDO_MT19937
* - CURAND_RNG_PSEUDO_PHILOX4_32_10
* - CURAND_RNG_QUASI_DEFAULT
* - CURAND_RNG_QUASI_SOBOL32
*
* When \p rng_type is CURAND_RNG_PSEUDO_DEFAULT, the type chosen
* is CURAND_RNG_PSEUDO_XORWOW. \n
* When \p rng_type is CURAND_RNG_QUASI_DEFAULT,
* the type chosen is CURAND_RNG_QUASI_SOBOL32.
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_XORWOW are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_MRG32K3A are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_MTGP32 are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_PSEUDO_MT19937 are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* * The default values for \p rng_type = CURAND_RNG_PSEUDO_PHILOX4_32_10 are:
* - \p seed = 0
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_PSEUDO_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SOBOL32 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SOBOL64 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SCRAMBLED_SOBOL32 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* The default values for \p rng_type = CURAND_RNG_QUASI_SCRAMBLED_SOBOL64 are:
* - \p dimensions = 1
* - \p offset = 0
* - \p ordering = CURAND_ORDERING_QUASI_DEFAULT
*
* \param generator - Pointer to generator
* \param rng_type - Type of generator to create
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_INITIALIZATION_FAILED if there was a problem setting up the GPU \n
* - CURAND_STATUS_VERSION_MISMATCH if the header file version does not match the
* dynamically linked library version \n
* - CURAND_STATUS_TYPE_ERROR if the value for \p rng_type is invalid \n
* - CURAND_STATUS_SUCCESS if generator was created successfully \n
*/
curandStatus_t CURANDAPI
curandCreateGeneratorHost(curandGenerator_t *generator, curandRngType_t rng_type);
/**
* \brief Destroy an existing generator.
*
* Destroy an existing generator and free all memory associated with its state.
*
* \param generator - Generator to destroy
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_SUCCESS if generator was destroyed successfully \n
*/
curandStatus_t CURANDAPI
curandDestroyGenerator(curandGenerator_t generator);
/**
* \brief Return the version number of the library.
*
* Return in \p *version the version number of the dynamically linked CURAND
* library. The format is the same as CUDART_VERSION from the CUDA Runtime.
* The only supported configuration is CURAND version equal to CUDA Runtime
* version.
*
* \param version - CURAND library version
*
* \return
* - CURAND_STATUS_SUCCESS if the version number was successfully returned \n
*/
curandStatus_t CURANDAPI
curandGetVersion(int *version);
/**
* \brief Return the value of the curand property.
*
* Return in \p *value the number for the property described by \p type of the
* dynamically linked CURAND library.
*
* \param type - CUDA library property
* \param value - integer value for the requested property
*
* \return
* - CURAND_STATUS_SUCCESS if the property value was successfully returned \n
* - CURAND_STATUS_OUT_OF_RANGE if the property type is not recognized \n
*/
curandStatus_t CURANDAPI
curandGetProperty(libraryPropertyType type, int *value);
/**
* \brief Set the current stream for CURAND kernel launches.
*
* Set the current stream for CURAND kernel launches. All library functions
* will use this stream until set again.
*
* \param generator - Generator to modify
* \param stream - Stream to use or ::NULL for null stream
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_SUCCESS if stream was set successfully \n
*/
curandStatus_t CURANDAPI
curandSetStream(curandGenerator_t generator, cudaStream_t stream);
/**
* \brief Set the seed value of the pseudo-random number generator.
*
* Set the seed value of the pseudorandom number generator.
* All values of seed are valid. Different seeds will produce different sequences.
* Different seeds will often not be statistically correlated with each other,
* but some pairs of seed values may generate sequences which are statistically correlated.
*
* \param generator - Generator to modify
* \param seed - Seed value
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_TYPE_ERROR if the generator is not a pseudorandom number generator \n
* - CURAND_STATUS_SUCCESS if generator seed was set successfully \n
*/
curandStatus_t CURANDAPI
curandSetPseudoRandomGeneratorSeed(curandGenerator_t generator, unsigned long long seed);
/**
* \brief Set the absolute offset of the pseudo or quasirandom number generator.
*
* Set the absolute offset of the pseudo or quasirandom number generator.
*
* All values of offset are valid. The offset position is absolute, not
* relative to the current position in the sequence.
*
* \param generator - Generator to modify
* \param offset - Absolute offset position
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_SUCCESS if generator offset was set successfully \n
*/
curandStatus_t CURANDAPI
curandSetGeneratorOffset(curandGenerator_t generator, unsigned long long offset);
/**
* \brief Set the ordering of results of the pseudo or quasirandom number generator.
*
* Set the ordering of results of the pseudo or quasirandom number generator.
*
* Legal values of \p order for pseudorandom generators are:
* - CURAND_ORDERING_PSEUDO_DEFAULT
* - CURAND_ORDERING_PSEUDO_BEST
* - CURAND_ORDERING_PSEUDO_SEEDED
* - CURAND_ORDERING_PSEUDO_LEGACY
*
* Legal values of \p order for quasirandom generators are:
* - CURAND_ORDERING_QUASI_DEFAULT
*
* \param generator - Generator to modify
* \param order - Ordering of results
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_OUT_OF_RANGE if the ordering is not valid \n
* - CURAND_STATUS_SUCCESS if generator ordering was set successfully \n
*/
curandStatus_t CURANDAPI
curandSetGeneratorOrdering(curandGenerator_t generator, curandOrdering_t order);
/**
* \brief Set the number of dimensions.
*
* Set the number of dimensions to be generated by the quasirandom number
* generator.
*
* Legal values for \p num_dimensions are 1 to 20000.
*
* \param generator - Generator to modify
* \param num_dimensions - Number of dimensions
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_OUT_OF_RANGE if num_dimensions is not valid \n
* - CURAND_STATUS_TYPE_ERROR if the generator is not a quasirandom number generator \n
* - CURAND_STATUS_SUCCESS if generator ordering was set successfully \n
*/
curandStatus_t CURANDAPI
curandSetQuasiRandomGeneratorDimensions(curandGenerator_t generator, unsigned int num_dimensions);
/**
* \brief Generate 32-bit pseudo or quasirandom numbers.
*
* Use \p generator to generate \p num 32-bit results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 32-bit values with every bit random.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param num - Number of random 32-bit values to generate
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_TYPE_ERROR if the generator is a 64 bit quasirandom generator.
* (use ::curandGenerateLongLong() with 64 bit quasirandom generators)
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerate(curandGenerator_t generator, unsigned int *outputPtr, size_t num);
/**
* \brief Generate 64-bit quasirandom numbers.
*
* Use \p generator to generate \p num 64-bit results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 64-bit values with every bit random.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param num - Number of random 64-bit values to generate
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_TYPE_ERROR if the generator is not a 64 bit quasirandom generator\n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateLongLong(curandGenerator_t generator, unsigned long long *outputPtr, size_t num);
/**
* \brief Generate uniformly distributed floats.
*
* Use \p generator to generate \p num float results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 32-bit floating point values between \p 0.0f and \p 1.0f,
* excluding \p 0.0f and including \p 1.0f.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param num - Number of floats to generate
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateUniform(curandGenerator_t generator, float *outputPtr, size_t num);
/**
* \brief Generate uniformly distributed doubles.
*
* Use \p generator to generate \p num double results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 64-bit double precision floating point values between
* \p 0.0 and \p 1.0, excluding \p 0.0 and including \p 1.0.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param num - Number of doubles to generate
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension \n
* - CURAND_STATUS_DOUBLE_PRECISION_REQUIRED if the GPU does not support double precision \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateUniformDouble(curandGenerator_t generator, double *outputPtr, size_t num);
/**
* \brief Generate normally distributed doubles.
*
* Use \p generator to generate \p n float results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 32-bit floating point values with mean \p mean and standard
* deviation \p stddev.
*
* Normally distributed results are generated from pseudorandom generators
* with a Box-Muller transform, and so require \p n to be even.
* Quasirandom generators use an inverse cumulative distribution
* function to preserve dimensionality.
*
* There may be slight numerical differences between results generated
* on the GPU with generators created with ::curandCreateGenerator()
* and results calculated on the CPU with generators created with
* ::curandCreateGeneratorHost(). These differences arise because of
* differences in results for transcendental functions. In addition,
* future versions of CURAND may use newer versions of the CUDA math
* library, so different versions of CURAND may give slightly different
* numerical values.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param n - Number of floats to generate
* \param mean - Mean of normal distribution
* \param stddev - Standard deviation of normal distribution
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension, or is not a multiple
* of two for pseudorandom generators \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateNormal(curandGenerator_t generator, float *outputPtr,
size_t n, float mean, float stddev);
/**
* \brief Generate normally distributed doubles.
*
* Use \p generator to generate \p n double results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 64-bit floating point values with mean \p mean and standard
* deviation \p stddev.
*
* Normally distributed results are generated from pseudorandom generators
* with a Box-Muller transform, and so require \p n to be even.
* Quasirandom generators use an inverse cumulative distribution
* function to preserve dimensionality.
*
* There may be slight numerical differences between results generated
* on the GPU with generators created with ::curandCreateGenerator()
* and results calculated on the CPU with generators created with
* ::curandCreateGeneratorHost(). These differences arise because of
* differences in results for transcendental functions. In addition,
* future versions of CURAND may use newer versions of the CUDA math
* library, so different versions of CURAND may give slightly different
* numerical values.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param n - Number of doubles to generate
* \param mean - Mean of normal distribution
* \param stddev - Standard deviation of normal distribution
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension, or is not a multiple
* of two for pseudorandom generators \n
* - CURAND_STATUS_DOUBLE_PRECISION_REQUIRED if the GPU does not support double precision \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateNormalDouble(curandGenerator_t generator, double *outputPtr,
size_t n, double mean, double stddev);
/**
* \brief Generate log-normally distributed floats.
*
* Use \p generator to generate \p n float results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 32-bit floating point values with log-normal distribution based on
* an associated normal distribution with mean \p mean and standard deviation \p stddev.
*
* Normally distributed results are generated from pseudorandom generators
* with a Box-Muller transform, and so require \p n to be even.
* Quasirandom generators use an inverse cumulative distribution
* function to preserve dimensionality.
* The normally distributed results are transformed into log-normal distribution.
*
* There may be slight numerical differences between results generated
* on the GPU with generators created with ::curandCreateGenerator()
* and results calculated on the CPU with generators created with
* ::curandCreateGeneratorHost(). These differences arise because of
* differences in results for transcendental functions. In addition,
* future versions of CURAND may use newer versions of the CUDA math
* library, so different versions of CURAND may give slightly different
* numerical values.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param n - Number of floats to generate
* \param mean - Mean of associated normal distribution
* \param stddev - Standard deviation of associated normal distribution
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension, or is not a multiple
* of two for pseudorandom generators \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateLogNormal(curandGenerator_t generator, float *outputPtr,
size_t n, float mean, float stddev);
/**
* \brief Generate log-normally distributed doubles.
*
* Use \p generator to generate \p n double results into the device memory at
* \p outputPtr. The device memory must have been previously allocated and be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 64-bit floating point values with log-normal distribution based on
* an associated normal distribution with mean \p mean and standard deviation \p stddev.
*
* Normally distributed results are generated from pseudorandom generators
* with a Box-Muller transform, and so require \p n to be even.
* Quasirandom generators use an inverse cumulative distribution
* function to preserve dimensionality.
* The normally distributed results are transformed into log-normal distribution.
*
* There may be slight numerical differences between results generated
* on the GPU with generators created with ::curandCreateGenerator()
* and results calculated on the CPU with generators created with
* ::curandCreateGeneratorHost(). These differences arise because of
* differences in results for transcendental functions. In addition,
* future versions of CURAND may use newer versions of the CUDA math
* library, so different versions of CURAND may give slightly different
* numerical values.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param n - Number of doubles to generate
* \param mean - Mean of normal distribution
* \param stddev - Standard deviation of normal distribution
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension, or is not a multiple
* of two for pseudorandom generators \n
* - CURAND_STATUS_DOUBLE_PRECISION_REQUIRED if the GPU does not support double precision \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateLogNormalDouble(curandGenerator_t generator, double *outputPtr,
size_t n, double mean, double stddev);
/**
* \brief Construct the histogram array for a Poisson distribution.
*
* Construct the histogram array for the Poisson distribution with lambda \p lambda.
* For lambda greater than 2000, an approximation with a normal distribution is used.
*
* \param lambda - lambda for the Poisson distribution
*
*
* \param discrete_distribution - pointer to the histogram in device memory
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_DOUBLE_PRECISION_REQUIRED if the GPU does not support double precision \n
* - CURAND_STATUS_INITIALIZATION_FAILED if there was a problem setting up the GPU \n
* - CURAND_STATUS_NOT_INITIALIZED if the distribution pointer was null \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_OUT_OF_RANGE if lambda is non-positive or greater than 400,000 \n
* - CURAND_STATUS_SUCCESS if the histogram was generated successfully \n
*/
curandStatus_t CURANDAPI
curandCreatePoissonDistribution(double lambda, curandDiscreteDistribution_t *discrete_distribution);
/**
* \brief Destroy the histogram array for a discrete distribution (e.g. Poisson).
*
* Destroy the histogram array for a discrete distribution created by curandCreatePoissonDistribution.
*
* \param discrete_distribution - pointer to device memory where the histogram is stored
*
* \return
* - CURAND_STATUS_NOT_INITIALIZED if the histogram was never created \n
* - CURAND_STATUS_SUCCESS if the histogram was destroyed successfully \n
*/
curandStatus_t CURANDAPI
curandDestroyDistribution(curandDiscreteDistribution_t discrete_distribution);
/**
* \brief Generate Poisson-distributed unsigned ints.
*
* Use \p generator to generate \p n unsigned int results into device memory at
* \p outputPtr. The device memory must have been previously allocated and must be
* large enough to hold all the results. Launches are done with the stream
* set using ::curandSetStream(), or the null stream if no stream has been set.
*
* Results are 32-bit unsigned int point values with Poisson distribution, with lambda \p lambda.
*
* \param generator - Generator to use
* \param outputPtr - Pointer to device memory to store CUDA-generated results, or
* Pointer to host memory to store CPU-generated results
* \param n - Number of unsigned ints to generate
* \param lambda - lambda for the Poisson distribution
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_LENGTH_NOT_MULTIPLE if the number of output samples is
* not a multiple of the quasirandom dimension\n
* - CURAND_STATUS_DOUBLE_PRECISION_REQUIRED if the GPU or sm does not support double precision \n
* - CURAND_STATUS_OUT_OF_RANGE if lambda is non-positive or greater than 400,000 \n
* - CURAND_STATUS_SUCCESS if the results were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGeneratePoisson(curandGenerator_t generator, unsigned int *outputPtr,
size_t n, double lambda);
// just for internal usage
curandStatus_t CURANDAPI
curandGeneratePoissonMethod(curandGenerator_t generator, unsigned int *outputPtr,
size_t n, double lambda, curandMethod_t method);
curandStatus_t CURANDAPI
curandGenerateBinomial(curandGenerator_t generator, unsigned int *outputPtr,
size_t num, unsigned int n, double p);
// just for internal usage
curandStatus_t CURANDAPI
curandGenerateBinomialMethod(curandGenerator_t generator,
unsigned int *outputPtr,
size_t num, unsigned int n, double p,
curandMethod_t method);
/**
* \brief Setup starting states.
*
* Generate the starting state of the generator. This function is
* automatically called by generation functions such as
* ::curandGenerate() and ::curandGenerateUniform().
* It can be called manually for performance testing reasons to separate
* timings for starting state generation and random number generation.
*
* \param generator - Generator to update
*
* \return
* - CURAND_STATUS_ALLOCATION_FAILED if memory could not be allocated \n
* - CURAND_STATUS_NOT_INITIALIZED if the generator was never created \n
* - CURAND_STATUS_PREEXISTING_FAILURE if there was an existing error from
* a previous kernel launch \n
* - CURAND_STATUS_LAUNCH_FAILURE if the kernel launch failed for any reason \n
* - CURAND_STATUS_SUCCESS if the seeds were generated successfully \n
*/
curandStatus_t CURANDAPI
curandGenerateSeeds(curandGenerator_t generator);
/**
* \brief Get direction vectors for 32-bit quasirandom number generation.
*
* Get a pointer to an array of direction vectors that can be used
* for quasirandom number generation. The resulting pointer will
* reference an array of direction vectors in host memory.
*
* The array contains vectors for many dimensions. Each dimension
* has 32 vectors. Each individual vector is an unsigned int.
*
* Legal values for \p set are:
* - CURAND_DIRECTION_VECTORS_32_JOEKUO6 (20,000 dimensions)
* - CURAND_SCRAMBLED_DIRECTION_VECTORS_32_JOEKUO6 (20,000 dimensions)
*
* \param vectors - Address of pointer in which to return direction vectors
* \param set - Which set of direction vectors to use
*
* \return
* - CURAND_STATUS_OUT_OF_RANGE if the choice of set is invalid \n
* - CURAND_STATUS_SUCCESS if the pointer was set successfully \n
*/
curandStatus_t CURANDAPI
curandGetDirectionVectors32(curandDirectionVectors32_t *vectors[], curandDirectionVectorSet_t set);
/**
* \brief Get scramble constants for 32-bit scrambled Sobol' .
*
* Get a pointer to an array of scramble constants that can be used
* for quasirandom number generation. The resulting pointer will
* reference an array of unsinged ints in host memory.
*
* The array contains constants for many dimensions. Each dimension
* has a single unsigned int constant.
*
* \param constants - Address of pointer in which to return scramble constants
*
* \return
* - CURAND_STATUS_SUCCESS if the pointer was set successfully \n
*/
curandStatus_t CURANDAPI
curandGetScrambleConstants32(unsigned int * * constants);
/**
* \brief Get direction vectors for 64-bit quasirandom number generation.
*
* Get a pointer to an array of direction vectors that can be used
* for quasirandom number generation. The resulting pointer will
* reference an array of direction vectors in host memory.
*
* The array contains vectors for many dimensions. Each dimension
* has 64 vectors. Each individual vector is an unsigned long long.
*
* Legal values for \p set are:
* - CURAND_DIRECTION_VECTORS_64_JOEKUO6 (20,000 dimensions)
* - CURAND_SCRAMBLED_DIRECTION_VECTORS_64_JOEKUO6 (20,000 dimensions)
*
* \param vectors - Address of pointer in which to return direction vectors
* \param set - Which set of direction vectors to use
*
* \return
* - CURAND_STATUS_OUT_OF_RANGE if the choice of set is invalid \n
* - CURAND_STATUS_SUCCESS if the pointer was set successfully \n
*/
curandStatus_t CURANDAPI
curandGetDirectionVectors64(curandDirectionVectors64_t *vectors[], curandDirectionVectorSet_t set);
/**
* \brief Get scramble constants for 64-bit scrambled Sobol' .
*
* Get a pointer to an array of scramble constants that can be used
* for quasirandom number generation. The resulting pointer will
* reference an array of unsinged long longs in host memory.
*
* The array contains constants for many dimensions. Each dimension
* has a single unsigned long long constant.
*
* \param constants - Address of pointer in which to return scramble constants
*
* \return
* - CURAND_STATUS_SUCCESS if the pointer was set successfully \n
*/
curandStatus_t CURANDAPI
curandGetScrambleConstants64(unsigned long long * * constants);
/** @} */
#endif // __CUDACC_RTC__
#if defined(__cplusplus)
}
#endif /* __cplusplus */
#endif /* !defined(CURAND_H_) */
|