:orphan:
# PetscRandomCreate
Creates a context for generating random numbers, and initializes the random-number generator.
## Synopsis
```
#include "petscsys.h"
PetscErrorCode PetscRandomCreate(MPI_Comm comm, PetscRandom *r)
```
Collective
## Input Parameter
- ***comm -*** MPI communicator
## Output Parameter
- ***r -*** the random number generator context
## Notes
The random type has to be set by `PetscRandomSetType()`.
This is only a primitive "parallel" random number generator, it should NOT
be used for sophisticated parallel Monte Carlo methods since it will very likely
not have the correct statistics across processors. You can provide your own
parallel generator using `PetscRandomRegister()`;
If you create a `PetscRandom()` using `PETSC_COMM_SELF` on several processors then
the SAME random numbers will be generated on all those processors. Use `PETSC_COMM_WORLD`
or the appropriate parallel communicator to eliminate this issue.
Use `VecSetRandom()` to set the elements of a vector to random numbers.
## Example of Usage
```none
PetscRandomCreate(PETSC_COMM_SELF,&r);
PetscRandomSetType(r,PETSCRAND48);
PetscRandomGetValue(r,&value1);
PetscRandomGetValueReal(r,&value2);
PetscRandomDestroy(&r);
```
## See Also
`PetscRandomSetType()`, `PetscRandomGetValue()`, `PetscRandomGetValueReal()`, `PetscRandomSetInterval()`,
`PetscRandomDestroy()`, `VecSetRandom()`, `PetscRandomType`, `PetscRandom`
## Level
intermediate
## Location
src/sys/classes/random/interface/randomc.c
## Examples
src/dm/field/tutorials/ex1.c
src/dm/tutorials/swarm_ex3.c
src/ksp/ksp/tutorials/ex11.c
src/ksp/ksp/tutorials/ex11f.F90
src/ksp/ksp/tutorials/ex18.c
src/ksp/ksp/tutorials/ex21.c
src/ksp/ksp/tutorials/ex2f.F90
src/ksp/ksp/tutorials/ex46.c
src/ksp/ksp/tutorials/ex5.c
src/ksp/ksp/tutorials/ex52.c
src/ksp/ksp/tutorials/ex57f.F90
## Implementations
PetscRandomCreate_CURAND in src/sys/classes/random/impls/curand/curand.c
PetscRandomCreate_Rand in src/sys/classes/random/impls/rand/rand.c
PetscRandomCreate_Rand48 in src/sys/classes/random/impls/rand48/rand48.c
PetscRandomCreate_Rander48 in src/sys/classes/random/impls/rander48/rander48.c
PetscRandomCreate_Random123 in src/sys/classes/random/impls/random123/random123.c
PetscRandomCreate_Sprng in src/sys/classes/random/impls/sprng/sprng.c
---
[Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/sys/classes/random/interface/randomc.c)
[Index of all Sys routines](index.md)
[Table of Contents for all manual pages](/manualpages/index.md)
[Index of all manual pages](/manualpages/singleindex.md)