Server IP : 192.64.118.117 / Your IP : 3.144.7.9 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/random/ |
Upload File : |
from typing import Any, TypedDict from numpy import dtype, ndarray, uint64 from numpy.random.bit_generator import BitGenerator, SeedSequence from numpy._typing import _ArrayLikeInt_co class _PhiloxInternal(TypedDict): counter: ndarray[Any, dtype[uint64]] key: ndarray[Any, dtype[uint64]] class _PhiloxState(TypedDict): bit_generator: str state: _PhiloxInternal buffer: ndarray[Any, dtype[uint64]] buffer_pos: int has_uint32: int uinteger: int class Philox(BitGenerator): def __init__( self, seed: None | _ArrayLikeInt_co | SeedSequence = ..., counter: None | _ArrayLikeInt_co = ..., key: None | _ArrayLikeInt_co = ..., ) -> None: ... @property def state( self, ) -> _PhiloxState: ... @state.setter def state( self, value: _PhiloxState, ) -> None: ... def jumped(self, jumps: int = ...) -> Philox: ... def advance(self, delta: int) -> Philox: ...