Skip to content
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

StaticArray improvements (map_with_index!) #3356

Closed

Conversation

Nephos
Copy link
Contributor

@Nephos Nephos commented Sep 26, 2016

Add the function map_with_index!

relative to #3354

@@ -64,7 +64,7 @@ $(O)/all_spec: deps $(SOURCES) $(SPEC_SOURCES)

$(O)/std_spec: deps $(SOURCES) $(SPEC_SOURCES)
@mkdir -p $(O)
$(BUILD_PATH) ./bin/crystal build $(FLAGS) -o $@ spec/std_spec.cr
$(BUILD_PATH) ./bin/crystal build $(FLAGS) -o $@ spec/std/static_array_spec.cr
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use bin/crystal spec spec/std/static_array_spec.cr to run individual specs.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes sorry i remove this one ^^

@@ -163,6 +163,25 @@ struct StaticArray(T, N)
self
end

def map
clone.map! { |e| yield e }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of clone, wouldn't be better to create the array with the final values using https://crystal-lang.org/api/0.19.2/StaticArray.html#new%28%26block%3AInt32-%3ET%29-class-method ?

This comment applies for #map_with_index's and #reverse.

I am not sure how much performance improvement would be though. You can measure performance using Benchmark.ips

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right i'm on it

Copy link
Contributor Author

@Nephos Nephos Sep 26, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

require "benchmark"
Benchmark.ips do |x|
  a = StaticArray[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
  x.report("clone") { a.clone }
  x.report("new") { typeof(a).new{|i| a[i]} }
end
>  crystal run b.cr  --release
clone 328.13M (± 2.70%)  1.00× slower
  new 328.83M (± 2.23%)       fastest
>  crystal run b.cr  --release
clone 328.56M (± 2.36%)       fastest
  new 325.84M (± 5.56%)  1.01× slower

On big StaticArray I finish with

clone 328.88M (± 3.08%)        fastest
  new   2.48M (± 0.48%) 132.63× slower

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Regardless of the benchmark, invoking clone is wrong because it invokes clone on each element in the static array. This is fine for numbers, but you don't really want to clone objects inside the array.

I'd do what @bcardiff suggests: create a new static array. These can use the new(&block : Int32 -> T) method (similar to how Array#reverse and Array#map_with_index are implemented)

@Nephos Nephos changed the title [WIP] Add StaticArray improvements Add StaticArray improvements Sep 26, 2016
def map_with_index!
i = 0
to_unsafe.map!(size) do |e|
i += 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incrementing i after yield would allow to drop i - 1 part which seems bit odd... just a thought :)

Copy link
Contributor Author

@Nephos Nephos Sep 26, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

map! do |e|
  res = yield e, i
  i += 1
  res
end

?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@Nephos Nephos force-pushed the feature/better_static_array branch from 4e7a9e1 to 710e297 Compare October 4, 2016 09:10
@Nephos Nephos changed the title Add StaticArray improvements StaticArray improvements (map_with_index!) Nov 28, 2016
@jkthorne
Copy link
Contributor

@Nephos are you still working on this?

@Nephos
Copy link
Contributor Author

Nephos commented May 24, 2017

I must resolve the new conflicts but I've nothing more to add in this.

@mverzilli
Copy link

@Nephos thanks for this! Ping me when you resolve the conflicts and we'll merge.

@Nephos Nephos closed this May 24, 2017
@Nephos Nephos deleted the feature/better_static_array branch May 24, 2017 14:44
@Nephos
Copy link
Contributor Author

Nephos commented May 24, 2017

I've to open a new PR, because I got an issue with the history (unable to merge because of unrelated history / I can't just remove & update the branch)

@mverzilli
Copy link

Thanks for clarifying! I was wondering :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants