lu!(fact, A, check=false) works for CPU but not for GPU because this keyword argument is not allowed. This makes it hard to use the generic interface in generic code because it has slightly different arguments. This adds the check keyword argument to match the original argument interface.
lu!(fact, A, check=false)
works for CPU but not for GPU because this keyword argument is not allowed. This makes it hard to use the generic interface in generic code because it has slightly different arguments. This adds thecheck
keyword argument to match the original argument interface.