Orochi icon indicating copy to clipboard operation
Orochi copied to clipboard

Results 17 Orochi issues
Sort by recently updated
recently updated
newest added

How can I register an OpenGL buffer for use in my CUDA/HIP kernel? `oroGraphicsMapResources(int count, oroGraphicsResource_t * resources, oroStream_t stream)` expects a registered resource as its second parameter but there...

Hi, first, congrats on getting Orochi 2.0 release out! comments: 1) tested your new Orochi 2.0 release on Zen4 Raphael iGPU and get some errors.. 1a)first RadixSort test fails on...

Hi, if we could get an Orochi OneAPI backend, then GPU desktop support, should be complete, from a vendor viewpoint.. hope it gets added eventually.. and I get notified when...

Hi, the API oroOccupancyMaxActiveBlocksPerMultiprocessor always fails. I tried the "main" branch and also "release/hip6.0_cuda12.2" with RX7900XTX and RTX4090 but it always failed. This can be reproduced by just adding this...

`ORO_TEXTURE_DESC.normalizedCoords` doesn't exist even though this `normalizedCoords` attribute is present on both NVIDIA and AMD (`cudaTextureDesc` and `hipTextureDesc` respectively). Why? If I wanted to contribute and add the support for...

I observe a lot of macro redefinition warnings during the HIPRT compilation: ``` 1>C:\Users\meistdan\projects\HIPRT\contrib\Orochi\Orochi\Orochi.cpp(64,1): warning C4005: 'cuCtxCreate_v3': macro redefinition 1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\include\cuda.h(91,1): 1>see previous definition of 'cuCtxCreate_v3' 1>C:\Users\meistdan\projects\HIPRT\contrib\Orochi\Orochi\Orochi.cpp(108,1):...

`std::codecvt_utf8_utf16`, that was deprecated due to security reasons, is used in `utf8_to_wstring`. https://github.com/GPUOpen-LibrariesAndSDKs/Orochi/blob/e8da229ac37877e431ca5a512db17246992dcd6b/Orochi/OrochiUtils.cpp#L39 If `utf8_to_wstring` is used only for paths, we can replace these path types with `std::filesystem` that handles...

https://github.com/GPUOpen-LibrariesAndSDKs/Orochi/blob/e8da229ac37877e431ca5a512db17246992dcd6b/Orochi/Orochi.h#L1161-L1170 The union (i.e., bitwise OR operation) of `oroApi` elements is not an element of `oroApi`. But the current API deign forces us to cast the union to `oroApi`, such...

Cross-posted: Can we add `const` to void** as follows? ``` oroError_t OROAPI oroModuleLaunchKernel(oroFunction_t f, unsigned int gridDimX, unsigned int gridDimY, unsigned int gridDimZ, unsigned int blockDimX, unsigned int blockDimY, unsigned...

feature request