ROCclr icon indicating copy to clipboard operation
ROCclr copied to clipboard

Results 32 ROCclr issues
Sort by recently updated
recently updated
newest added

Running `clinfo` with version 4.0, after the `clinfo` output, I get a core dump: ``` clinfo LoadLib(libhsa-amd-aqlprofile64.so) failed: libhsa-amd-aqlprofile64.so: cannot open shared object file: No such file or directory Number...

Using ubuntu18.04 rocm4.5.2 source to build rocclr: readme file states: ### Build ROCclr Here is command to build ROCclr: ```bash cd "$ROCclr_DIR" mkdir -p build; cd build cmake -DOPENCL_DIR="$OPENCL_DIR" -DCMAKE_INSTALL_PREFIX=/opt/rocm/rocclr...

Even compiling the simple [square example](https://github.com/ROCm-Developer-Tools/hip-tests/blob/develop/samples/0_Intro/square/square.hipref.cpp), this obviously needs to use hipMemcpy. However, I was kind of surprised that internally in hipMemcpy the BlitProgram is used which (in an OpenCL...

merge release code into development

The AMD MLIR group has a buildbot that tests the main-line MLIR repo with some AMD-specific options. One test has recently started failing, after a change in the codegen. The...

...and a very long macro name 😂 This might have been overlooked previously since the warning wasn't properly printed when building with Clang before https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/commit/55deecff765ff1c1443dc2163b90ed793f03ba4a. This also affects a few...

In an article Exploring AMD GPU scheduling details by experimenting with “worst practices” (https://link.springer.com/article/10.1007/s11241-022-09381-y) there is a statement: ROCclr’s software queues internally share a pool of HSA queues: one software...

``` bool HostQueue::terminate() { ..... // Wake-up the command loop, so it can exit { ScopedLock sl(queueLock_); thread_.acceptingCommands_ = false; queueLock_.notify(); } // FIXME_lmoriche: fix termination handshake while (thread_.state() <...

There seems to be a hard dependency on Unix platforms to use a GL interface provided by GLX. This causes problems when X is not available, such as when osmesa...

Related to https://github.com/ROCm-Developer-Tools/hipamd/issues/44 I'm maintaining hip and rocm-opencl-runtime package in Gentoo, and recently, I find although in wirtten cmake, rocclr is linked to libamd_comgr, in reality linker dropped it since...