Displaying 2 results from an estimated 2 matches for "resuslt".
Did you mean:
result
2011 Aug 26
1
Sharp turn in cdf?
x = c(runif(1000, 0,2.5), runif(100, 2.5, 4))
plot(ecdf(x))
You will notice a sharp turn around x = 2.5
How do I get that value of x using R?
--
Thanks,
Jim.
[[alternative HTML version deleted]]
2018 Dec 13
2
Dealing with information loss for widened integer operations at ISel time
...perate on 32-bit values.
There are some challenges though. Consider the variable-length shifts
introduced in RV64I. SLLW, SRLW, and SRAW operate on 32-bit values and produce
32-bit sign-extended results. They read only the lower 5 bits from the shift
amount. The following function should trivially resuslt in SRLW being
selected:
define signext i32 @sllw(i32 signext %a, i32 zeroext %b) {
%1 = shl i32 %a, %b
ret i32 %1
}
Except it's not actually possible to write a correct pattern for this. It is
essential to know the original type of the shift amount. The fact it was i32
mea...