Tim Holy
Tim Holy
Would the algorithm be shared in any sense? Or would they be executing completely different code?
Well, the main issue is that the algorithm dispatches on the resource, ```julia myalg(::CPU1, args...) = 1 myalg(::CPUThreads, args...) = 2 ... ```
@navidcy, it's only a couple of lines of code to add a new resource, so if you are ready to use such a feature I'd recommend just submitting a PR....
Same error as #7. FYI, that error doesn't actually matter: it's just building the file used for [running the tests](https://github.com/timholy/Cpp.jl/blob/master/test/cpp.jl). But since you're on Windows, did you notice the [part...
Sure, including the dll would be fine.
Which version of Julia are you running?
If it's version 1.something, try the version of `cpp.jl` in `extras/`, not this package.
With 1.2, you shouldn't use this package. Use the one in `extras/`. In fact you want to say `Pkg.rm("Cpp")`. Let me know if this fixes it.
To use the one in `extras/`, I think you just say ``` require("cpp.jl") ``` but it's been a while, I may not be remembering correctly.
Or wait, maybe given that the error is gone, you're OK. Can you run the package test? `include("/path/to/Cpp/test/cpp.jl")`. This will only work if you've run the build script.