-
### Please check before submitting an issue
- [X] I have searched the issues and haven't found anything relevant
- [X] I will upload bugreport file in KernelSU Manager - Settings - Report log
- [X] I…
-
#### Input
[→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20true%0Aextend%20T%3A%3ASig%0A%0Amodule%20M%3B%20end%0A%0Asig%20%7B%20params%28x%3A%20M%29.void%20%7D%0Adef%20example%28x%29%0A%…
-
Hi there,
I faced an issue when tried to define a helper function for my CUDA Kernel like
```CUDA
inline __host__ __device__ float4 operator+(float4 a, float4 b)
{
return make_float4(a.x + …
-
As of right now, the HSA standard only supports identifying the following symbols types:
- Kernels
- Variables
The standard has listed indirect functions as a symbol type, but the AMD ROCr runtim…
-
would it be possible to register operations such as na2d using `torch.library.custom_op`,
or otherwise ensure that they participate in operation dispatch?
torch's built in flop counter, FlopCoun…
-
I'm trying to understand the code but unable to understand your loss calculation function can you please explain what are you doing because it doesn't seem you are doing anything in linear kernel you …
-
HIP/CUDA has separate compilations for host and device. Instructions of host functions are generated by host compilation, during which the compiler has no access to device function pointers. The devic…
-
In #5384 we found that this blows up with kernel deep recursion:
```
-- A function that reduced badly, as a canary for kernel reduction
def bad (n : Nat) : Nat :=
if h : n = 0 then 0 else bad (n…
-
### Please confirm there isn't an existing open bug report
- [X] I have searched open bugs for this issue
### Summary
The functions `Hibernate` (Mettre en veille) and `Suspend` (Suspendre) function…
-
### Describe the documentation issue
I want to add a custom op that does the following:
1. It calls an already registered op
2. Does some custom operation on top of it to set the final output.
I see…