Robert Dazi
Robert Dazi
Urho3D doesn't support the Wayland compositors without `xwayland` (personal config: `sway 3.10`). However, after an `SDL` upgrade and twisting the `GLEW` `CMakeLists.txt` to append `EGL` to the required libraries, it...
This MR solves #655. It removes the implementation of the fallback `Unischema.__getattr__` which doesn't seem to add any value.
Hello, I found a very minor issue (probably a typo): https://github.com/uber/petastorm/blob/d6f4e82eb2c3a6c2b4c16c060c7350331b60a51a/petastorm/unischema.py#L355-L356 This is not really required (basically since we don't reimplement `__getattribute__`, that will always be `object.__getattribute__(obj, item)` that will...
This MR proposes an alternative to the current documentation with another one that uses `Sphinx` and `breathe`. Currently `breathe` needs a patch to fully support all the function signatures as...
Hello, I've built an alternative documentation which is a little bit more esthetic than the current one. Here a preview of it: https://v01dxyz.github.io/rocprim-documentation Are you interested by this ?
Hello, As you may know RDNA2 has a 128MB L3 cache which is an important difference with the GCN/CDNA architecture, it allows to use efficiently a memory subsystem with a...
Some faulty kernels can cause the GPU to act not as expected by the runtime (such as answering in a reasonable amount of time). Currently, the runtime will loop until...
By looking at the code, ``hsa_executable_load_program_code_object`` is equivalent to ``hsa_executable_load_agent_code_object`` with `agent := {0}`. This could not succeed as it seems the code calls `hsa_agent_get_info` with the handle. It fails...
This code appends new segments to the elf image. But those segments need to be initialised using `pull`. Does the intent of the code is to do that ? If...
Hello, What is the current support of function calls with fixed length vector arguments when SVE is used for fixed length vectors (`AArch64TargetLowering::useSVEForFixedLengthVectorVT`) ? It doesn't seem supported at all,...