You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently is_distinct_from and is_not_disctinct_from is written in an unoptimized way:
left
.iter()
.zip(right.iter())
.map(|(x, y)| Some(x != y))
.collect()
Describe the solution you'd like
Write a faster kernel.