We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f79c1a0 commit 31ffd98Copy full SHA for 31ffd98
arrayfire/library.py
@@ -373,6 +373,25 @@ class BINARYOP(_Enum):
373
MIN = _Enum_Type(2)
374
MAX = _Enum_Type(3)
375
376
+class RANDOM_ENGINE(_Enum):
377
+ """
378
+ Random engine types
379
380
+ PHILOX_4X32_10 = _Enum_Type(100)
381
+ THREEFRY_2X32_16 = _Enum_Type(200)
382
+ MERSENNE_GP11213 = _Enum_Type(300)
383
+ PHILOX = PHILOX_4X32_10
384
+ THREEFRY = THREEFRY_2X32_16
385
+ DEFAULT = PHILOX
386
+
387
+class STORAGE(_Enum):
388
389
+ Matrix Storage types
390
391
+ DENSE = _Enum_Type(0)
392
+ CSR = _Enum_Type(1)
393
+ CSC = _Enum_Type(2)
394
+ COO = _Enum_Type(3)
395
396
def _setup():
397
import platform
0 commit comments