-
(needs https://github.com/LuxDL/Lux.jl/pull/1026 for the dump)
```julia
using Lux, Reactant, Random
model = Recurrence(RNNCell(4 => 4))
ps, st = Lux.setup(Xoshiro(123), model) |> Reactant.to_rarray
…
-
Hi all, thanks for the great package!
I noticed recently with some Octofitter tests that passing a seeded RNG object (e.g. `rng = Xoshiro(0)` into `AdvancedHMC.sample(...;rng=rng)` does not give re…
-
```julia
using Lux, Reactant, Random
model = Recurrence(RNNCell(4 => 4))
ps, st = Lux.setup(Xoshiro(123), model) |> Reactant.to_rarray
x = rand(Float32, 4, 16, 12) |> Reactant.ConcreteRArray
@code_h…
-
When the simulation is unstable, sometimes, I see this error message:
```julia
ERROR: LoadError: BoundsError: attempt to access 94-element Vector{Subzero.Status} at index [102]
Stacktrace:
[1]…
-
When ModelicaRandom.c was introduced with the Noise package for MSL v3.2.2 the **xorshift** PRNGs from http://xoshiro.di.unimi.it/xorshift.php were utilized. These PRNGs are now superseded by **xoshir…
-
It seems that the macros `@SArray` and `@MArray` cannot handle `rand` with a specified random number generator, i.e. the following errors:
```
julia> rng = Xoshiro(1)
Xoshiro(0xfff0241072ddab67, 0…
-
There's a variety of modern PRNG algorithms we could choose from, with various tradeoffs around speed, memory, predictability, complexity, miscellaneous statistical properties, and also amenability to…
-
I'm encountering an `UndefRefError` in a private package during deserialization in a call of `Distributed.remotecall_fetch`:
```julia
Got exception outside of a @test
TaskFailedException
…
-
### What happened?
From this minimal code:
```julia
using Supposition, Test
@check function foo(x = Data.Integers{Int64}())
foo = x^2
foo >= 0
end
```
Everything is working fine, bu…
-
```julia
using Enzyme, Lux, SimpleChains, Random
model = Chain(Dense(10, 10, tanh), Dense(10, 10, tanh))
scmodel = ToSimpleChainsAdaptor(static((10,)))(model)
x = rand(Float32, 10, 2)
ps, st …