Petr

Results 16 issues of Petr

First, we read `B*T+1` tokens, but advance the iterator by `B*T` tokens instead. Then, there is this if statement: ``` if (loader->current_position + (loader->num_processes * B * T + 1)...

This fixes the build errors when trying to compile new half-precision kernels. The new train/test/profile requires compute capability >8.0 (Ampere)

On my setup, I get the following: Before: ``` step 2/37: train loss 4.720275 (acc 4.688650) (224.046844 ms, 36563.773438 tok/s) step 3/37: train loss 3.802741 (acc 3.943135) (224.151611 ms, 36555.007812...

If I recompile with a new `emscripten` compiler version (3.1.64), I get the following error on importing the WebAssembly module: ``` LinkError: WebAssembly.instantiate(): Import #0 "env" "pthread_self": function import requires...

On a 404 error, my server returns some data (the error message page). This data is then interpreted as gaussian splats, which leads to weird errors. Instead, just throw an...

This piece of code uses uninitialized variable: ``` setDirection( dir ) { if (dir.y > 0.99999) { this.quaternion.set(0, 0, 0, 1); } else if (dir.y < - 0.99999) { this.quaternion.set(1,...