-
Notifications
You must be signed in to change notification settings - Fork 7
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
join fails to run #107
Comments
Can you send the information about your machine (i.e. versioninfo())? |
Standard install from precompiled nightlies (a bit old but I guess for Windows it is not updated very often)
and the error is pretty standard
|
OK, although I do have tests for join (in strtest.jl and bench.jl), it didn't hit those two cases with substrings. |
As for @pszufe - have you encountered a similar issue (differences of available functions in |
Do the other ones work OK on your machine (that use |
Both fail (tested on
|
That's funny, because I've used those functions on Windows before (years ago). It must be an issue of whatever Julia is using for libc on Windows then. Also, have you tried my build / test / bench procedure?
|
I was going over old issues to close any that already had been taken care of - I tried to rerun this, but the link to |
I do not see a link to randpl.txt. If you tell me the context I can re-create the file |
It was http:/bogumilkaminski.pl/share/randpl.txt, the link was in the https://github.com/bkamins/JuliaStrBenchmark repo. |
The file is there. Just use the direct link: http://bogumilkaminski.pl/share/randpl.txt |
It turned out that it was failing due to the size - I've been able to download it using curl. |
If you run a benchmark at https://github.com/bkamins/JuliaStrBenchmark
You see that
join
fails to run. The reason is that lines 411 and 413 have a typo inio.jl
(d
instead ofdelim
).But additionally - if you fix it - at least on my machine they still fail because
wmemcpy
function is not found (but maybe I do not have a proper version of Julia as it is a target that is moving fast).PS. @ScottPJones Apart from this - again on my machine - Strs.jl is sometimes slower than strings from Base (I have noted in the test file where I find which case). This is an initial implementation of the benchmark - I have stopped here because of
join
bug.The text was updated successfully, but these errors were encountered: