Y
Hacker News
new
|
ask
|
show
|
jobs
by
WithinReason
1327 days ago
But then SUB, DIV and RELU could be an HLOP as well, no?
1 comments
georgehotz
1327 days ago
We could have NEG instead of SUB, but with the constant folding it's a wash. DIV is already an HLOP with reciprocal (used to use POW, but that was slower. And what would you implement RELU in terms of?
link
WithinReason
1327 days ago
max(0,x)
link
georgehotz
1327 days ago
That's a ReduceOp right now, more annoying to reason about than a UnaryOp. But in the limit, yea. Or add an elementwise BinaryOp for max.
Submit a PR if you can improve something!
link