Giter Club home page Giter Club logo

Comments (4)

mcabbott avatar mcabbott commented on June 11, 2024

Right now this is equivalent to q = @. (x> 0.5) ? z : y, which gives the same error. What will work is ifelse:

julia> @cast q[i, j] := ifelse(x[i, j] > 0.5, z[i, j],  y[i, j])
5×5 Matrix{Float64}:
 0.0  1.0  0.0  1.0  1.0
 1.0  0.0  1.0  0.0  0.0
 1.0  0.0  0.0  0.0  0.0
 0.0  1.0  1.0  0.0  1.0
 0.0  1.0  1.0  1.0  1.0

But perhaps your real use has more complicated functions on the right? It might not be hard to detect this, and re-write it as q = @. ((x,z,y) -> (x> 0.5) ? z : y)(x, z, y)

from tensorcast.jl.

darsnack avatar darsnack commented on June 11, 2024

But perhaps your real use has more complicated functions on the right? It might not be hard to detect this, and re-write it as q = @. ((x,z,y) -> (x> 0.5) ? z : y)(x, z, y)

Yeah that's my use-case. I use ifelse right now, but I think the ternary version would avoid some computation. It's not really a big deal for me, but I figured I'd report it anyways.

from tensorcast.jl.

mcabbott avatar mcabbott commented on June 11, 2024

Sure. So the transformation needed is something like this:

@cast q[i, j] := (abs(x[i, j]) > 0.5) ? exp(y[i]) : atan(y[i], z[j]+t[j,i])
# q = @. ((x,y,z,t) -> abs(x)>0.5 ? exp(y) : atan(y,z+t))(x, y, z', t')

Perhaps:

julia> @pretty @cast q[i, j] := (abs(x[i, j]) > 0.5) ? exp(y[i]) : atan(y[i], z[j]+t[j,i])
begin
    local quelea = transmute(z, (nothing, 1))
    local shrew = transmute(t, (2, 1))
    local waterbuffalo(x, y, quelea, shrew) = begin
                if abs(x) > 0.5
                    exp(y)
                else
                    atan(y, quelea + shrew)
                end
            end
    q = @__dot__(waterbuffalo(x, y, quelea, shrew))
end

from tensorcast.jl.

mcabbott avatar mcabbott commented on June 11, 2024

This should be fixed on master. Evil test cases would be welcome, the ones I tested are quite simple:
https://github.com/mcabbott/TensorCast.jl/blob/master/test/four.jl#L44

from tensorcast.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.