-
Notifications
You must be signed in to change notification settings - Fork 110
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
Migration towards Julia 1.0: Problem with Schur decomposition #421
Comments
Rename it to Later we might want to remove from public api. And hide behind But first minimal changes just getting things working |
Another problem - this time with the incompatible library JLD.jl. The library seems unmaintained for the last 2 months and does not compile with Julia 1.0. Two alternatives:
What do you think? |
Rebase your PR. |
@oxinabox Thank you. Now another problem, which I do not know how to correct:
The piece of code where the error is triggered reads:
Originally the line was calling
I replaced And then I get the quoted error with missing
So I do not really understand why it is not visible. Prefixing |
I think you might need
But I am not 100% sure. Since that function does nothing, you may be able to just remove that entirely. |
Prefixing with
|
The only 3 places where
|
It looks like the code tries to feed the Tensor constructor with a pointer to the no-op function. I have solved the problem by simply moving the definition of the |
And now TensorFlow fully compiles! Now it is time for unit tests... |
It's a callback passed to TensorFlow to deallocate a tensor when the tensor is deleted on the TensorFlow side. I made id a no-op since we're relying on the Julia GC to free the underlying array. |
To fix the following error
There is no more
select
function in the Base (see JuliaLang/julia#28155 and deprecation notices at https://docs.julialang.org/en/v0.7.0/NEWS/)I believe, that either we rename Base.select into TensorFlow.select or remove the function altogether. Whatever we do, we will break any code that uses Schur decomposition.
I have never used Schur decomposition and I do not know, what part does it play in the TensorFlow, so it is not up to me to decide what to do.
The text was updated successfully, but these errors were encountered: