File size: 48,999 Bytes
46a43b0 | 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 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 | from __future__ import annotations
import atexit
import binascii
import functools
import hashlib
import operator
import os
import time
import threading
import weakref
import numpy
import warnings
from numpy.linalg import LinAlgError
import cupy
from cupy import _core
from cupy import cuda
from cupy.cuda import device
from cupy.random import _kernels
from cupy.random._generator_api import FeistelBijection
from cupy import _util
import importlib
import sys
def lazy_import(name):
spec = importlib.util.find_spec(name)
loader = importlib.util.LazyLoader(spec.loader)
spec.loader = loader
module = importlib.util.module_from_spec(spec)
sys.modules[name] = module
loader.exec_module(module)
return module
cupyx = lazy_import('cupyx')
_UINT32_MAX = 0xffffffff
_UINT64_MAX = 0xffffffffffffffff
class RandomState:
"""Portable container of a pseudo-random number generator.
An instance of this class holds the state of a random number generator. The
state is available only on the device which has been current at the
initialization of the instance.
Functions of :mod:`cupy.random` use global instances of this class.
Different instances are used for different devices. The global state for
the current device can be obtained by the
:func:`cupy.random.get_random_state` function.
Args:
seed (None or int): Seed of the random number generator. See the
:meth:`~cupy.random.RandomState.seed` method for detail.
method (int): Method of the random number generator. Following values
are available::
cupy.cuda.curand.CURAND_RNG_PSEUDO_DEFAULT
cupy.cuda.curand.CURAND_RNG_PSEUDO_XORWOW
cupy.cuda.curand.CURAND_RNG_PSEUDO_MRG32K3A
cupy.cuda.curand.CURAND_RNG_PSEUDO_MTGP32
cupy.cuda.curand.CURAND_RNG_PSEUDO_MT19937
cupy.cuda.curand.CURAND_RNG_PSEUDO_PHILOX4_32_10
"""
def __init__(self, seed=None, method=None):
from cupy_backends.cuda.libs import curand
if method is None:
method = curand.CURAND_RNG_PSEUDO_DEFAULT
# lock for the _rk_seed and _generator. The GIL is probably sufficient
# on to not require one on _generator, but it is relatively cheap.
self._lock = threading.Lock()
self._generator = curand.createGenerator(method)
self._finalizer = weakref.finalize(
self, curand.destroyGenerator, self._generator)
self.method = method
self.seed(seed)
def _get_seed(self, size):
with self._lock:
rk_seed = self._rk_seed
self._rk_seed = (rk_seed + size) % _UINT64_MAX
return rk_seed
def _generate_normal(self, func, size, dtype, *args):
# curand functions below don't support odd size.
# * curand.generateNormal
# * curand.generateNormalDouble
# * curand.generateLogNormal
# * curand.generateLogNormalDouble
size = _core.get_size(size)
element_size = _core.internal.prod(size)
if element_size % 2 == 0:
out = cupy.empty(size, dtype=dtype)
with self._lock:
func(self._generator, out.data.ptr, out.size, *args)
return out
else:
out = cupy.empty((element_size + 1,), dtype=dtype)
with self._lock:
func(self._generator, out.data.ptr, out.size, *args)
return out[:element_size].reshape(size)
# NumPy compatible functions
def beta(self, a, b, size=None, dtype=float):
"""Returns an array of samples drawn from the beta distribution.
.. seealso::
- :func:`cupy.random.beta` for full documentation
- :meth:`numpy.random.RandomState.beta`
"""
a, b = cupy.asarray(a), cupy.asarray(b)
if size is None:
size = cupy.broadcast(a, b).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.beta_kernel(a, b, rk_seed, y)
return y
def binomial(self, n, p, size=None, dtype=int):
"""Returns an array of samples drawn from the binomial distribution.
.. seealso::
- :func:`cupy.random.binomial` for full documentation
- :meth:`numpy.random.RandomState.binomial`
"""
n, p = cupy.asarray(n), cupy.asarray(p)
if size is None:
size = cupy.broadcast(n, p).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.binomial_kernel(n, p, rk_seed, y)
return y
def chisquare(self, df, size=None, dtype=float):
"""Returns an array of samples drawn from the chi-square distribution.
.. seealso::
- :func:`cupy.random.chisquare` for full documentation
- :meth:`numpy.random.RandomState.chisquare`
"""
df = cupy.asarray(df)
if size is None:
size = df.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.chisquare_kernel(df, rk_seed, y)
return y
def dirichlet(self, alpha, size=None, dtype=float):
"""Returns an array of samples drawn from the dirichlet distribution.
.. seealso::
- :func:`cupy.random.dirichlet` for full documentation
- :meth:`numpy.random.RandomState.dirichlet`
"""
alpha = cupy.asarray(alpha)
if size is None:
size = alpha.shape
elif isinstance(size, (int, cupy.integer)):
size = (size,) + alpha.shape
else:
size += alpha.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.standard_gamma_kernel(alpha, rk_seed, y)
y /= y.sum(axis=-1, keepdims=True)
return y
def exponential(self, scale=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from a exponential distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.exponential` for full documentation
- :meth:`numpy.random.RandomState.exponential`
"""
scale = cupy.asarray(scale, dtype)
if (scale < 0).any(): # synchronize!
raise ValueError('scale < 0')
if size is None:
size = scale.shape
x = self.standard_exponential(size, dtype)
x *= scale
return x
def f(self, dfnum, dfden, size=None, dtype=float):
"""Returns an array of samples drawn from the f distribution.
.. seealso::
- :func:`cupy.random.f` for full documentation
- :meth:`numpy.random.RandomState.f`
"""
dfnum, dfden = cupy.asarray(dfnum), cupy.asarray(dfden)
if size is None:
size = cupy.broadcast(dfnum, dfden).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.f_kernel(dfnum, dfden, rk_seed, y)
return y
def gamma(self, shape, scale=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from a gamma distribution.
.. seealso::
- :func:`cupy.random.gamma` for full documentation
- :meth:`numpy.random.RandomState.gamma`
"""
shape, scale = cupy.asarray(shape), cupy.asarray(scale)
if size is None:
size = cupy.broadcast(shape, scale).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.standard_gamma_kernel(shape, rk_seed, y)
y *= scale
return y
def geometric(self, p, size=None, dtype='l'):
"""Returns an array of samples drawn from the geometric distribution.
.. seealso::
- :func:`cupy.random.geometric` for full documentation
- :meth:`numpy.random.RandomState.geometric`
"""
p = cupy.asarray(p)
if size is None:
size = p.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.geometric_kernel(p, rk_seed, y)
return y
def hypergeometric(self, ngood, nbad, nsample, size=None, dtype='l'):
"""Returns an array of samples drawn from the hypergeometric distribution.
.. seealso::
- :func:`cupy.random.hypergeometric` for full documentation
- :meth:`numpy.random.RandomState.hypergeometric`
""" # NOQA
ngood, nbad, nsample = \
cupy.asarray(ngood), cupy.asarray(nbad), cupy.asarray(nsample)
if size is None:
size = cupy.broadcast(ngood, nbad, nsample).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.hypergeometric_kernel(ngood, nbad, nsample, rk_seed, y)
return y
_laplace_kernel = _core.ElementwiseKernel(
'T x, T loc, T scale', 'T y',
'y = loc + scale * ((x <= 0.5) ? log(x + x): -log(x + x - 1.0))',
'cupy_laplace_kernel')
def laplace(self, loc=0.0, scale=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from the laplace distribution.
.. seealso::
- :func:`cupy.random.laplace` for full documentation
- :meth:`numpy.random.RandomState.laplace`
"""
loc = cupy.asarray(loc, dtype)
scale = cupy.asarray(scale, dtype)
if size is None:
size = cupy.broadcast(loc, scale).shape
x = self._random_sample_raw(size, dtype)
RandomState._laplace_kernel(x, loc, scale, x)
return x
def logistic(self, loc=0.0, scale=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from the logistic distribution.
.. seealso::
- :func:`cupy.random.logistic` for full documentation
- :meth:`numpy.random.RandomState.logistic`
"""
loc, scale = cupy.asarray(loc), cupy.asarray(scale)
if size is None:
size = cupy.broadcast(loc, scale).shape
x = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(x.size)
_kernels.open_uniform_kernel(rk_seed, x)
x = (1.0 - x) / x
cupy.log(x, out=x)
cupy.multiply(x, scale, out=x)
cupy.add(x, loc, out=x)
return x
def lognormal(self, mean=0.0, sigma=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from a log normal distribution.
.. seealso::
- :func:`cupy.random.lognormal` for full documentation
- :meth:`numpy.random.RandomState.lognormal`
"""
from cupy_backends.cuda.libs import curand
if any(isinstance(arg, cupy.ndarray) for arg in (mean, sigma)):
x = self.normal(mean, sigma, size, dtype)
cupy.exp(x, out=x)
return x
if size is None:
size = ()
dtype = _check_and_get_dtype(dtype)
if dtype.char == 'f':
func = curand.generateLogNormal
else:
func = curand.generateLogNormalDouble
return self._generate_normal(func, size, dtype, mean, sigma)
def logseries(self, p, size=None, dtype='l'):
"""Returns an array of samples drawn from a log series distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.logseries` for full documentation
- :meth:`numpy.random.RandomState.logseries`
"""
p = cupy.asarray(p)
if cupy.any(p <= 0): # synchronize!
raise ValueError('p <= 0.0')
if cupy.any(p >= 1): # synchronize!
raise ValueError('p >= 1.0')
if size is None:
size = p.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.logseries_kernel(p, rk_seed, y)
return y
def multivariate_normal(self, mean, cov, size=None, check_valid='ignore',
tol=1e-08, method='cholesky', dtype=float):
"""Returns an array of samples drawn from the multivariate normal
distribution.
.. warning::
This function calls one or more cuSOLVER routine(s) which may yield
invalid results if input conditions are not met.
To detect these invalid results, you can set the `linalg`
configuration to a value that is not `ignore` in
:func:`cupyx.errstate` or :func:`cupyx.seterr`.
.. seealso::
- :func:`cupy.random.multivariate_normal` for full documentation
- :meth:`numpy.random.RandomState.multivariate_normal`
"""
_util.experimental('cupy.random.RandomState.multivariate_normal')
mean = cupy.asarray(mean, dtype=dtype)
cov = cupy.asarray(cov, dtype=dtype)
if size is None:
shape = []
elif isinstance(size, (int, cupy.integer)):
shape = [size]
else:
shape = size
if len(mean.shape) != 1:
raise ValueError('mean must be 1 dimensional')
if (len(cov.shape) != 2) or (cov.shape[0] != cov.shape[1]):
raise ValueError('cov must be 2 dimensional and square')
if mean.shape[0] != cov.shape[0]:
raise ValueError('mean and cov must have same length')
final_shape = list(shape[:])
final_shape.append(mean.shape[0])
if method not in {'eigh', 'svd', 'cholesky'}:
raise ValueError(
"method must be one of {'eigh', 'svd', 'cholesky'}")
if check_valid != 'ignore':
if check_valid != 'warn' and check_valid != 'raise':
raise ValueError(
"check_valid must equal 'warn', 'raise', or 'ignore'")
if check_valid == 'warn':
with cupyx.errstate(linalg='raise'):
try:
decomp = cupy.linalg.cholesky(cov)
except LinAlgError:
with cupyx.errstate(linalg='ignore'):
if method != 'cholesky':
if method == 'eigh':
(s, u) = cupy.linalg.eigh(cov)
psd = not cupy.any(s < -tol)
if method == 'svd':
(u, s, vh) = cupy.linalg.svd(cov)
psd = cupy.allclose(cupy.dot(vh.T * s, vh),
cov, rtol=tol, atol=tol)
decomp = u * cupy.sqrt(cupy.abs(s))
if not psd:
warnings.warn("covariance is not positive-" +
"semidefinite, output may be " +
"invalid.", RuntimeWarning)
else:
warnings.warn("covariance is not positive-" +
"semidefinite, output *is* " +
"invalid.", RuntimeWarning)
decomp = cupy.linalg.cholesky(cov)
else:
with cupyx.errstate(linalg=check_valid):
try:
if method == 'cholesky':
decomp = cupy.linalg.cholesky(cov)
elif method == 'eigh':
(s, u) = cupy.linalg.eigh(cov)
decomp = u * cupy.sqrt(cupy.abs(s))
elif method == 'svd':
(u, s, vh) = cupy.linalg.svd(cov)
decomp = u * cupy.sqrt(cupy.abs(s))
except LinAlgError:
raise LinAlgError("Matrix is not positive definite; if " +
"matrix is positive-semidefinite, set" +
"'check_valid' to 'warn'")
x = self.standard_normal(final_shape,
dtype=dtype).reshape(-1, mean.shape[0])
x = cupy.dot(decomp, x.T)
x = x.T
x += mean
x.shape = tuple(final_shape)
return x
def negative_binomial(self, n, p, size=None, dtype=int):
"""Returns an array of samples drawn from the negative binomial distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.negative_binomial` for full documentation
- :meth:`numpy.random.RandomState.negative_binomial`
""" # NOQA
n = cupy.asarray(n)
p = cupy.asarray(p)
if cupy.any(n <= 0): # synchronize!
raise ValueError('n <= 0')
if cupy.any(p < 0): # synchronize!
raise ValueError('p < 0')
if cupy.any(p > 1): # synchronize!
raise ValueError('p > 1')
y = self.gamma(n, (1-p)/p, size)
return self.poisson(y, dtype=dtype)
def normal(self, loc=0.0, scale=1.0, size=None, dtype=float):
"""Returns an array of normally distributed samples.
.. seealso::
- :func:`cupy.random.normal` for full documentation
- :meth:`numpy.random.RandomState.normal`
"""
from cupy_backends.cuda.libs import curand
dtype = _check_and_get_dtype(dtype)
if size is None:
size = cupy.broadcast(loc, scale).shape
if dtype.char == 'f':
func = curand.generateNormal
else:
func = curand.generateNormalDouble
if isinstance(scale, cupy.ndarray):
x = self._generate_normal(func, size, dtype, 0.0, 1.0)
cupy.multiply(x, scale, out=x)
cupy.add(x, loc, out=x)
elif isinstance(loc, cupy.ndarray):
x = self._generate_normal(func, size, dtype, 0.0, scale)
cupy.add(x, loc, out=x)
else:
x = self._generate_normal(func, size, dtype, loc, scale)
return x
def pareto(self, a, size=None, dtype=float):
"""Returns an array of samples drawn from the pareto II distribution.
.. seealso::
- :func:`cupy.random.pareto` for full documentation
- :meth:`numpy.random.RandomState.pareto`
"""
a = cupy.asarray(a)
if size is None:
size = a.shape
x = self._random_sample_raw(size, dtype)
cupy.log(x, out=x)
cupy.exp(-x/a, out=x)
return x - 1
def noncentral_chisquare(self, df, nonc, size=None, dtype=float):
"""Returns an array of samples drawn from the noncentral chi-square
distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.noncentral_chisquare` for full documentation
- :meth:`numpy.random.RandomState.noncentral_chisquare`
"""
df, nonc = cupy.asarray(df), cupy.asarray(nonc)
if cupy.any(df <= 0): # synchronize!
raise ValueError('df <= 0')
if cupy.any(nonc < 0): # synchronize!
raise ValueError('nonc < 0')
if size is None:
size = cupy.broadcast(df, nonc).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.noncentral_chisquare_kernel(df, nonc, rk_seed, y)
return y
def noncentral_f(self, dfnum, dfden, nonc, size=None, dtype=float):
"""Returns an array of samples drawn from the noncentral F distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.noncentral_f` for full documentation
- :meth:`numpy.random.RandomState.noncentral_f`
""" # NOQA
dfnum, dfden, nonc = \
cupy.asarray(dfnum), cupy.asarray(dfden), cupy.asarray(nonc)
if cupy.any(dfnum <= 0): # synchronize!
raise ValueError('dfnum <= 0')
if cupy.any(dfden <= 0): # synchronize!
raise ValueError('dfden <= 0')
if cupy.any(nonc < 0): # synchronize!
raise ValueError('nonc < 0')
if size is None:
size = cupy.broadcast(dfnum, dfden, nonc).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.noncentral_f_kernel(dfnum, dfden, nonc, rk_seed, y)
return y
def poisson(self, lam=1.0, size=None, dtype='l'):
"""Returns an array of samples drawn from the poisson distribution.
.. seealso::
- :func:`cupy.random.poisson` for full documentation
- :meth:`numpy.random.RandomState.poisson`
"""
lam = cupy.asarray(lam)
if size is None:
size = lam.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.poisson_kernel(lam, rk_seed, y)
return y
def power(self, a, size=None, dtype=float):
"""Returns an array of samples drawn from the power distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.power` for full documentation
- :meth:`numpy.random.RandomState.power`
"""
a = cupy.asarray(a)
if cupy.any(a < 0): # synchronize!
raise ValueError('a < 0')
if size is None:
size = a.shape
x = self.standard_exponential(size=size, dtype=dtype)
cupy.exp(-x, out=x)
cupy.add(1, -x, out=x)
cupy.power(x, 1./a, out=x)
return x
def rand(self, *size, **kwarg):
"""Returns uniform random values over the interval ``[0, 1)``.
.. seealso::
- :func:`cupy.random.rand` for full documentation
- :meth:`numpy.random.RandomState.rand`
"""
dtype = kwarg.pop('dtype', float)
if kwarg:
raise TypeError('rand() got unexpected keyword arguments %s'
% ', '.join(kwarg.keys()))
return self.random_sample(size=size, dtype=dtype)
def randn(self, *size, **kwarg):
"""Returns an array of standard normal random values.
.. seealso::
- :func:`cupy.random.randn` for full documentation
- :meth:`numpy.random.RandomState.randn`
"""
dtype = kwarg.pop('dtype', float)
if kwarg:
raise TypeError('randn() got unexpected keyword arguments %s'
% ', '.join(kwarg.keys()))
return self.normal(size=size, dtype=dtype)
_mod1_kernel = _core.ElementwiseKernel(
'', 'T x', 'x = (x == (T)1) ? 0 : x', 'cupy_random_x_mod_1')
def _random_sample_raw(self, size, dtype):
from cupy_backends.cuda.libs import curand
dtype = _check_and_get_dtype(dtype)
out = cupy.empty(size, dtype=dtype)
if dtype.char == 'f':
func = curand.generateUniform
else:
func = curand.generateUniformDouble
with self._lock:
func(self._generator, out.data.ptr, out.size)
return out
def random_sample(self, size=None, dtype=float):
"""Returns an array of random values over the interval ``[0, 1)``.
.. seealso::
- :func:`cupy.random.random_sample` for full documentation
- :meth:`numpy.random.RandomState.random_sample`
"""
if size is None:
size = ()
out = self._random_sample_raw(size, dtype)
RandomState._mod1_kernel(out)
return out
def rayleigh(self, scale=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from a rayleigh distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.rayleigh` for full documentation
- :meth:`numpy.random.RandomState.rayleigh`
"""
scale = cupy.asarray(scale)
if size is None:
size = scale.shape
if cupy.any(scale < 0): # synchronize!
raise ValueError('scale < 0')
x = self._random_sample_raw(size, dtype)
x = cupy.log(x, out=x)
x = cupy.multiply(x, -2., out=x)
x = cupy.sqrt(x, out=x)
x = cupy.multiply(x, scale, out=x)
return x
_interval_upper_limit = _core.ElementwiseKernel(
'T max, T mx', 'T out',
'out = max - (mx != max ? (max - mx) % (mx + 1) : 0)',
'cupy_random_interval_upper_limit')
_interval_sample_modulo = _core.ElementwiseKernel(
'T max, T mx', 'T sample',
'if (mx != max) { sample %= mx + 1; }',
'cupy_random_interval_sample_modulo')
def _interval(self, mx, size):
"""Generate multiple integers independently sampled uniformly from ``[0, mx]``.
Args:
mx (int): Upper bound of the interval
size (None or int or tuple): Shape of the array or the scalar
returned.
Returns:
int or cupy.ndarray: If ``None``, an :class:`cupy.ndarray` with
shape ``()`` is returned.
If ``int``, 1-D array of length size is returned.
If ``tuple``, multi-dimensional array with shape
``size`` is returned.
Currently, only 32 bit or 64 bit integers can be sampled.
""" # NOQA
if size is None:
size = ()
elif isinstance(size, int):
size = size,
is_mx_scalar = numpy.isscalar(mx)
if is_mx_scalar:
if mx == 0:
return cupy.zeros(size, dtype=numpy.uint32)
if mx < 0:
raise ValueError(
'mx must be non-negative (actual: {})'.format(mx))
elif mx <= _UINT32_MAX:
dtype = numpy.uint32
upper_limit = dtype(_UINT32_MAX - (1 << 32) % (mx + 1))
elif mx <= _UINT64_MAX:
dtype = numpy.uint64
upper_limit = dtype(_UINT64_MAX - (1 << 64) % (mx + 1))
else:
raise ValueError(
'mx must be within uint64 range (actual: {})'.format(mx))
else:
dtype = mx.dtype
if dtype == cupy.int32 or dtype == cupy.uint32:
dtype = numpy.uint32
mx = mx.astype(dtype, copy=False)
upper_limit = self._interval_upper_limit(_UINT32_MAX, mx)
elif dtype == cupy.int64 or dtype == cupy.uint64:
dtype = numpy.uint64
mx = mx.astype(dtype, copy=False)
upper_limit = self._interval_upper_limit(_UINT64_MAX, mx)
else:
raise ValueError(
'dtype must be integer, got: {}'.format(dtype))
n_sample = functools.reduce(operator.mul, size, 1)
if n_sample == 0:
return cupy.empty(size, dtype=dtype)
sample = self._curand_generate(n_sample, dtype)
if is_mx_scalar:
mx1 = mx + 1
if mx1 == 1 << (mx1.bit_length() - 1):
mask = (1 << mx.bit_length()) - 1
sample &= mask
return sample.reshape(size)
# Get index of samples that exceed the upper limit
ng_indices = self._get_indices(sample, upper_limit, False)
n_ng = ng_indices.size
if n_ng > 0 and not numpy.isscalar(mx):
upper_limit = upper_limit[ng_indices]
while n_ng > 0:
n_supplement = (max(n_ng * 2, 1024)
if is_mx_scalar else upper_limit.size)
supplement = self._curand_generate(n_supplement, dtype)
# Get index of supplements that are within the upper limit
ok_indices = self._get_indices(supplement, upper_limit, True)
n_ok = ok_indices.size
# Replace the values that exceed the upper limit
if n_ok >= n_ng:
sample[ng_indices] = supplement[ok_indices[:n_ng]]
n_ng = 0
else:
sample[ng_indices[:n_ok]] = supplement[ok_indices]
ng_indices = ng_indices[n_ok:]
if not is_mx_scalar:
upper_limit = upper_limit[n_ok:]
n_ng -= n_ok
if is_mx_scalar:
sample %= mx1
elif dtype == cupy.uint32:
sample = self._interval_sample_modulo(_UINT32_MAX, mx, sample)
else: # dtype == cupy.uint64
sample = self._interval_sample_modulo(_UINT64_MAX, mx, sample)
return sample.reshape(size)
def _curand_generate(self, num, dtype):
from cupy_backends.cuda.libs import curand
sample = cupy.empty((num,), dtype=dtype)
# Call 32-bit RNG to fill 32-bit or 64-bit `sample`
size32 = sample.view(dtype=numpy.uint32).size
with self._lock:
curand.generate(self._generator, sample.data.ptr, size32)
return sample
def _get_indices(self, sample, upper_limit, cond):
dtype = numpy.uint32 if sample.size < 2**32 else numpy.uint64
flags = (sample <= upper_limit) if cond else (sample > upper_limit)
csum = cupy.cumsum(flags, dtype=dtype)
del flags
indices = cupy.empty((int(csum[-1]),), dtype=dtype)
self._kernel_get_indices(csum, indices, size=csum.size)
return indices
_kernel_get_indices = _core.ElementwiseKernel(
'raw U csum', 'raw U indices',
'''
int j = 0;
if (i > 0) { j = csum[i-1]; }
if (csum[i] > j) { indices[j] = i; }
''',
'cupy_get_indices')
def seed(self, seed=None):
"""Resets the state of the random number generator with a seed.
.. seealso::
- :func:`cupy.random.seed` for full documentation
- :meth:`numpy.random.RandomState.seed`
"""
from cupy_backends.cuda.libs import curand
if seed is None:
try:
seed_str = binascii.hexlify(os.urandom(8))
seed = int(seed_str, 16)
except NotImplementedError:
seed = (time.time() * 1000000) % _UINT64_MAX
else:
if isinstance(seed, numpy.ndarray):
seed = int(hashlib.md5(
seed, usedforsecurity=False).hexdigest()[:16], 16)
else:
seed_arr = numpy.asarray(seed)
if seed_arr.dtype.kind not in 'biu':
raise TypeError('Seed must be an integer.')
seed = int(seed_arr)
# Check that no integer overflow occurred during the cast
if seed < 0 or seed >= 2**64:
raise ValueError(
'Seed must be an integer between 0 and 2**64 - 1')
with self._lock:
curand.setPseudoRandomGeneratorSeed(self._generator, seed)
if (self.method not in (curand.CURAND_RNG_PSEUDO_MT19937,
curand.CURAND_RNG_PSEUDO_MTGP32)):
curand.setGeneratorOffset(self._generator, 0)
self._rk_seed = seed
def standard_cauchy(self, size=None, dtype=float):
"""Returns an array of samples drawn from the standard cauchy distribution.
.. seealso::
- :func:`cupy.random.standard_cauchy` for full documentation
- :meth:`numpy.random.RandomState.standard_cauchy`
""" # NOQA
x = self.uniform(size=size, dtype=dtype)
return cupy.tan(cupy.pi * (x - 0.5))
def standard_exponential(self, size=None, dtype=float):
"""Returns an array of samples drawn from the standard exp distribution.
.. seealso::
- :func:`cupy.random.standard_exponential` for full documentation
- :meth:`numpy.random.RandomState.standard_exponential`
""" # NOQA
if size is None:
size = ()
x = self._random_sample_raw(size, dtype)
return -cupy.log(x, out=x)
def standard_gamma(self, shape, size=None, dtype=float):
"""Returns an array of samples drawn from a standard gamma distribution.
.. seealso::
- :func:`cupy.random.standard_gamma` for full documentation
- :meth:`numpy.random.RandomState.standard_gamma`
""" # NOQA
shape = cupy.asarray(shape)
if size is None:
size = shape.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.standard_gamma_kernel(shape, rk_seed, y)
return y
def standard_normal(self, size=None, dtype=float):
"""Returns samples drawn from the standard normal distribution.
.. seealso::
- :func:`cupy.random.standard_normal` for full documentation
- :meth:`numpy.random.RandomState.standard_normal`
"""
return self.normal(size=size, dtype=dtype)
def standard_t(self, df, size=None, dtype=float):
"""Returns an array of samples drawn from the standard t distribution.
.. seealso::
- :func:`cupy.random.standard_t` for full documentation
- :meth:`numpy.random.RandomState.standard_t`
"""
df = cupy.asarray(df)
if size is None:
size = df.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.standard_t_kernel(df, rk_seed, y)
return y
def tomaxint(self, size=None):
"""Draws integers between 0 and max integer inclusive.
Return a sample of uniformly distributed random integers in the
interval [0, ``np.iinfo(np.int_).max``]. The `np.int_` type translates
to the C long integer type and its precision is platform dependent.
Args:
size (int or tuple of ints): Output shape.
Returns:
cupy.ndarray: Drawn samples.
.. seealso::
:meth:`numpy.random.RandomState.tomaxint`
"""
from cupy_backends.cuda.libs import curand
if size is None:
size = ()
sample = cupy.empty(size, dtype=cupy.int_)
# cupy.random only uses int32 random generator
size_in_int = sample.dtype.itemsize // 4
with self._lock:
curand.generate(
self._generator, sample.data.ptr, sample.size * size_in_int)
# Disable sign bit
sample &= cupy.iinfo(cupy.int_).max
return sample
_triangular_kernel = _core.ElementwiseKernel(
'L left, M mode, R right', 'T x',
"""
T base, leftbase, ratio, leftprod, rightprod;
base = right - left;
leftbase = mode - left;
ratio = leftbase / base;
leftprod = leftbase*base;
rightprod = (right - mode)*base;
if (x <= ratio)
{
x = left + sqrt(x*leftprod);
} else
{
x = right - sqrt((1.0 - x) * rightprod);
}
""",
'cupy_triangular_kernel'
)
def triangular(self, left, mode, right, size=None, dtype=float):
"""Returns an array of samples drawn from the triangular distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.triangular` for full documentation
- :meth:`numpy.random.RandomState.triangular`
"""
left, mode, right = \
cupy.asarray(left), cupy.asarray(mode), cupy.asarray(right)
if cupy.any(left > mode): # synchronize!
raise ValueError('left > mode')
if cupy.any(mode > right): # synchronize!
raise ValueError('mode > right')
if cupy.any(left == right): # synchronize!
raise ValueError('left == right')
if size is None:
size = cupy.broadcast(left, mode, right).shape
x = self.random_sample(size=size, dtype=dtype)
return RandomState._triangular_kernel(left, mode, right, x)
_scale_kernel = _core.ElementwiseKernel(
'T low, T high', 'T x',
'x = T(low) + x * T(high - low)',
'cupy_scale')
def uniform(self, low=0.0, high=1.0, size=None, dtype=float):
"""Returns an array of uniformly-distributed samples over an interval.
.. seealso::
- :func:`cupy.random.uniform` for full documentation
- :meth:`numpy.random.RandomState.uniform`
"""
if not numpy.isscalar(low):
low = cupy.asarray(low, dtype)
if not numpy.isscalar(high):
high = cupy.asarray(high, dtype)
if size is None:
size = cupy.broadcast(low, high).shape
dtype = numpy.dtype(dtype)
rand = self.random_sample(size=size, dtype=dtype)
return RandomState._scale_kernel(low, high, rand)
def vonmises(self, mu, kappa, size=None, dtype=float):
"""Returns an array of samples drawn from the von Mises distribution.
.. seealso::
- :func:`cupy.random.vonmises` for full documentation
- :meth:`numpy.random.RandomState.vonmises`
"""
mu, kappa = cupy.asarray(mu), cupy.asarray(kappa)
if size is None:
size = cupy.broadcast(mu, kappa).shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.vonmises_kernel(mu, kappa, rk_seed, y)
return y
_wald_kernel = _core.ElementwiseKernel(
'T mean, T scale, T U', 'T X',
"""
T mu_2l;
T Y;
mu_2l = mean / (2*scale);
Y = mean*X*X;
X = mean + mu_2l*(Y - sqrt(4*scale*Y + Y*Y));
if (U > mean/(mean+X))
{
X = mean*mean/X;
}
""",
'cupy_wald_scale')
def wald(self, mean, scale, size=None, dtype=float):
"""Returns an array of samples drawn from the Wald distribution.
.. seealso::
- :func:`cupy.random.wald` for full documentation
- :meth:`numpy.random.RandomState.wald`
"""
mean, scale = \
cupy.asarray(mean, dtype=dtype), cupy.asarray(scale, dtype=dtype)
if size is None:
size = cupy.broadcast(mean, scale).shape
x = self.normal(size=size, dtype=dtype)
u = self.random_sample(size=size, dtype=dtype)
return RandomState._wald_kernel(mean, scale, u, x)
def weibull(self, a, size=None, dtype=float):
"""Returns an array of samples drawn from the weibull distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.weibull` for full documentation
- :meth:`numpy.random.RandomState.weibull`
"""
a = cupy.asarray(a)
if cupy.any(a < 0): # synchronize!
raise ValueError('a < 0')
if size is None:
size = a.shape
x = self.standard_exponential(size, dtype)
cupy.power(x, 1./a, out=x)
return x
def zipf(self, a, size=None, dtype=int):
"""Returns an array of samples drawn from the Zipf distribution.
.. warning::
This function may synchronize the device.
.. seealso::
- :func:`cupy.random.zipf` for full documentation
- :meth:`numpy.random.RandomState.zipf`
"""
a = cupy.asarray(a)
if cupy.any(a <= 1.0): # synchronize!
raise ValueError('\'a\' must be a valid float > 1.0')
if size is None:
size = a.shape
y = cupy.empty(shape=size, dtype=dtype)
rk_seed = self._get_seed(y.size)
_kernels.zipf_kernel(a, rk_seed, y)
return y
def choice(self, a, size=None, replace=True, p=None):
"""Returns an array of random values from a given 1-D array.
.. seealso::
- :func:`cupy.random.choice` for full documentation
- :meth:`numpy.random.choice`
"""
if a is None:
raise ValueError('a must be 1-dimensional or an integer')
if isinstance(a, cupy.ndarray) and a.ndim == 0:
raise NotImplementedError
if isinstance(a, int):
a_size = a
if a_size < 0:
raise ValueError('a must be greater than or equal to 0')
else:
a = cupy.array(a, copy=False)
if a.ndim != 1:
raise ValueError('a must be 1-dimensional or an integer')
a_size = len(a)
if p is not None:
p = cupy.array(p)
if p.ndim != 1:
raise ValueError('p must be 1-dimensional')
if len(p) != a_size:
raise ValueError('a and p must have same size')
if not (p >= 0).all():
raise ValueError('probabilities are not non-negative')
p_sum = cupy.sum(p).get()
if not numpy.allclose(p_sum, 1):
raise ValueError('probabilities do not sum to 1')
if size is None:
raise NotImplementedError(
'choice() without specifying size is not supported yet')
shape = size
try:
size = _core.internal.prod(shape)
except TypeError:
# size is e.g. int
pass
if a_size == 0 and size > 0:
raise ValueError('a cannot be empty unless no samples are taken')
if not replace and p is None:
if a_size < size:
raise ValueError(
'Cannot take a larger sample than population when '
'\'replace=False\'')
if isinstance(a, int):
# Use memory-efficient bijection approach
n_rounds = FeistelBijection.num_rounds
rk_seed = self._get_seed(n_rounds)
rng = numpy.random.default_rng(rk_seed)
keys = rng.integers(
0, _UINT32_MAX + 1, size=n_rounds, dtype=numpy.uint32)
bijection = FeistelBijection(a_size, keys)
indices = bijection(size)
return indices.reshape(shape)
else:
indices = a.copy()
self.shuffle(indices)
return indices[:size].reshape(shape)
if not replace:
raise NotImplementedError
if p is not None:
# https://github.com/numpy/numpy/blob/v2.0.1/numpy/random/mtrand.pyx#L1013 # NOQA
cdf = p.cumsum()
cdf /= cdf[-1]
uniform_samples = self.random_sample(shape)
index = cdf.searchsorted(uniform_samples, side='right')
else:
if a_size == 0: # TODO: (#4511) Fix `randint` instead
a_size = 1
index = self.randint(0, a_size, size=shape)
# Align the dtype with NumPy
index = index.astype(cupy.int64, copy=False)
if isinstance(a, int):
return index
if index.ndim == 0:
return cupy.array(a[index], dtype=a.dtype)
return a[index]
def shuffle(self, a):
"""Returns a shuffled array.
.. seealso::
- :func:`cupy.random.shuffle` for full documentation
- :meth:`numpy.random.shuffle`
"""
if not isinstance(a, cupy.ndarray):
raise TypeError('The array must be cupy.ndarray')
if a.ndim == 0:
raise TypeError('An array whose ndim is 0 is not supported')
a[:] = a[self._permutation(len(a))]
def permutation(self, a):
"""Returns a permuted range or a permutation of an array."""
if isinstance(a, int):
return self._permutation(a)
else:
return a[self._permutation(len(a))]
def _permutation(self, num):
"""Returns a permuted range."""
from cupy_backends.cuda.libs import curand
sample = cupy.empty((num,), dtype=numpy.int32)
with self._lock:
curand.generate(self._generator, sample.data.ptr, num)
array = cupy.argsort(sample)
return array
_gumbel_kernel = _core.ElementwiseKernel(
'T x, T loc, T scale', 'T y',
'y = T(loc) - log(-log(x)) * T(scale)',
'cupy_gumbel_kernel')
def gumbel(self, loc=0.0, scale=1.0, size=None, dtype=float):
"""Returns an array of samples drawn from a Gumbel distribution.
.. seealso::
- :func:`cupy.random.gumbel` for full documentation
- :meth:`numpy.random.RandomState.gumbel`
"""
if not numpy.isscalar(loc):
loc = cupy.asarray(loc, dtype)
if not numpy.isscalar(scale):
scale = cupy.asarray(scale, dtype)
if size is None:
size = cupy.broadcast(loc, scale).shape
x = self._random_sample_raw(size=size, dtype=dtype)
RandomState._gumbel_kernel(x, loc, scale, x)
return x
def randint(self, low, high=None, size=None, dtype=int):
"""Returns a scalar or an array of integer values over ``[low, high)``.
.. seealso::
- :func:`cupy.random.randint` for full documentation
- :meth:`numpy.random.RandomState.randint`
"""
if not numpy.isscalar(low):
low = cupy.asarray(low)
if high is None:
lo = cupy.zeros_like(low)
hi = low - 1
else:
lo = low
hi = cupy.asarray(high) - 1
if size is None:
size = cupy.broadcast(lo, hi).shape
diff = hi - lo
total_elems = functools.reduce(operator.mul, size, 1)
out = self._interval(diff.flatten(), total_elems)
out = out.astype(dtype)
out = cupy.reshape(out, size)
lo = lo.astype(dtype, copy=False)
cupy.add(out, lo, out=out)
return out
else:
if high is None:
lo = 0
hi1 = int(low) - 1
else:
lo = int(low)
hi1 = int(high) - 1
if lo > hi1:
raise ValueError('low >= high')
if lo < cupy.iinfo(dtype).min:
raise ValueError(
'low is out of bounds for {}'.format(
cupy.dtype(dtype).name))
if hi1 > cupy.iinfo(dtype).max:
raise ValueError(
'high is out of bounds for {}'.format(
cupy.dtype(dtype).name))
diff = hi1 - lo
x = self._interval(diff, size).astype(dtype, copy=False)
cupy.add(x, lo, out=x)
return x
def seed(seed=None):
"""Resets the state of the random number generator with a seed.
This function resets the state of the global random number generator for
the current device. Be careful that generators for other devices are not
affected.
Args:
seed (None or int): Seed for the random number generator. If ``None``,
it uses :func:`os.urandom` if available or :func:`time.time`
otherwise. Note that this function does not support seeding by
an integer array.
"""
get_random_state().seed(seed)
# CuPy specific functions
_random_states = {}
@atexit.register
def reset_states():
global _random_states
_random_states = {}
def get_random_state():
"""Gets the state of the random number generator for the current device.
If the state for the current device is not created yet, this function
creates a new one, initializes it, and stores it as the state for the
current device.
Returns:
RandomState: The state of the random number generator for the
device.
"""
dev = cuda.Device()
rs = _random_states.get(dev.id, None)
if rs is None:
seed = os.getenv('CUPY_SEED')
if seed is not None:
seed = numpy.uint64(int(seed))
rs = RandomState(seed)
rs = _random_states.setdefault(dev.id, rs)
return rs
def set_random_state(rs):
"""Sets the state of the random number generator for the current device.
Args:
state(RandomState): Random state to set for the current device.
"""
if not isinstance(rs, RandomState):
raise TypeError(
'Random state must be an instance of RandomState. '
'Actual: {}'.format(type(rs)))
_random_states[device.get_device_id()] = rs
def _check_and_get_dtype(dtype):
dtype = numpy.dtype(dtype)
if dtype.char not in ('f', 'd'):
raise TypeError('cupy.random only supports float32 and float64')
return dtype
|