-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempting to add reltol and abstol to rank function #21215
Conversation
~~@StefanKarpinski~~ Julia needs an underling to give this PR a shot. [#13942](#13942). 1. I know I'm clearly missing some important things, but I hope the effort counts. I couldn't find a way to get the rows from the array comprehension... 2. Willing to start over from scratch - any comments/critiques/suggestions more than welcome. 3. I am first trying a MWE with simple structure and inputs. Then I will try to get something that works more generically. Is this a good way to procceed? [ci skip] Roadmap: * Verify each returned array is the same type as the types of the elements * Verify lengths of all arrays to be unzipped * Return as a single Array of Arrays or as separate Arrays? * Remove that `zip is its own inverse` in `@doc zip`? * Revise documentation phrasing and example
update julia fork
~~@StefanKarpinski~~ Julia needs an underling to give this PR a shot. [#13942](#13942). 1. I know I'm clearly missing some important things, but I hope the effort counts. I couldn't find a way to get the rows from the array comprehension... 2. Willing to start over from scratch - any comments/critiques/suggestions more than welcome. 3. I am first trying a MWE with simple structure and inputs. Then I will try to get something that works more generically. Is this a good way to procceed? [ci skip] Roadmap: * Verify each returned array is the same type as the types of the elements * Verify lengths of all arrays to be unzipped * Return as a single Array of Arrays or as separate Arrays? * Remove that `zip is its own inverse` in `@doc zip`? * Revise documentation phrasing and example
Not sure what the status of these branches is, but this got the unzip stuff mixed in with it. |
Looks like its only the last commit that is relevant for this PR? Lets try this (if you use command line git):
|
In the code |
@fredrikekre, man, I owe you a beer and a half. Thanks for bailing me out - I thought of the solution as I was getting up from bed (back up, take a copy of master, cherry pick what you need onto a new branch) but the command line escaped me. Thanks a zillion! @jw3126 just tried to run this. Does this look optimized to you? My LLVM is not up to snuff.
|
I can't decrypt that piece of llvm either, I would just time both versions. Note also that |
Ach so @jw3126 - you I take it you suggest to call |
Yes. |
We now have this. |
Attempting to address JuliaLang/LinearAlgebra.jl#15
Any critiques/comments/help/future advice is more than appreciated, willing to start from scratch.
I am clearly doing many things wrong here - I bungled two different commits, but don't know how to rebase my commits from
linalg
to the most recent master....Any adults willing to help a drowning kid are more than welcome.