Giter Site home page Giter Site logo

Multi index `Base.setindex` about julia HOT 6 OPEN

rayegun avatar rayegun commented on June 9, 2024
Multi index `Base.setindex`

from julia.

Comments (6)

arhik avatar arhik commented on June 9, 2024

If you are implying for setindex rather than inplace setindex! version. No.

You can do it with Accesssors.jl.

julia> using Accessors

julia> a = (1, 2, 3, 4, 5)
(1, 2, 3, 4, 5)

julia> @set a[[2, 5]] = (-1, -1)
(1, -1, 3, 4, -1)

julia> using Chairmarks

julia> @b @set a[[2, 5]] = (-1, -1)
41.047 ns (2.02 allocs: 128.760 bytes)

from julia.

nsajko avatar nsajko commented on June 9, 2024

Base.setindex itself isn't public API. Although perhaps it should be?

Guess I'll make a package.

from julia.

arhik avatar arhik commented on June 9, 2024

I quickly tried something like this below, but it is not going to be performant version.

g(c) = j -> (j in i) && (c += 1) > 0 ? v[c] : x[j]
ntuple(g(0), Val{N}()) 

julia> @b setindex(x, v, i)
391.071 ns (4.11 allocs: 131.657 bytes)
g(c) = j -> (j in i) && (c += 1) > 0 ? v[c] : x[j]
ntuple(g(0),  length(x)) 

Second is relatively more performant but still 10x slower than accessors.jl version above.

from julia.

arhik avatar arhik commented on June 9, 2024

Also this scanning version is better

function setindex(x::Tuple, v::Tuple, i::Tuple)
	N = length(x)
	is = ntuple(j ->  ifelse(j in i, 1, 0), Val{N}())
	vs = ntuple(Val{N}()) do j
		if is[j] === 1
			return v[sum(is[1:j])] 
		else
			return x[j]
		end
	end
	return vs
end

julia> @b setindex(x, v, i)
70.008 ns (3.02 allocs: 112.650 bytes)

from julia.

arhik avatar arhik commented on June 9, 2024

simply iterating through works too

function setindex(x::Tuple, v::Tuple, i::Tuple)
	out = x
	for (val, idx) in zip(v, i)
		out = Base.setindex(out, val, idx)
	end
	return out
end

julia> @b setindex(x, v, i)
22.901 ns (1.01 allocs: 48.403 bytes)

This is better than Accesssors.jl version.

Onesweep algorithm is possible I think. That can give best solution. I couldn't come up with one yet.

from julia.

arhik avatar arhik commented on June 9, 2024

Since single setindex in base is taking roughly 16ns, then

julia> @b Base.setindex(x, 1, 4)
15.798 ns (1.01 allocs: 48.424 bytes)

This is best so far.

simply iterating through works too

function setindex(x::Tuple, v::Tuple, i::Tuple)
	out = x
	for (val, idx) in zip(v, i)
		out = Base.setindex(out, val, idx)
	end
	return out
end

julia> @b setindex(x, v, i)
22.901 ns (1.01 allocs: 48.403 bytes)

This is better than Accesssors.jl version.

Onesweep algorithm is possible I think. That can give best solution. I couldn't come up with one yet.

from julia.

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.