Code Monkey home page Code Monkey logo

Comments (6)

johnynek avatar johnynek commented on June 11, 2024

I don't see how that PR can do it, but maybe. The code you are running is here I think:

def unorderedTraverse[G[_], A, B](

and that code is just not stack safe.

To make it stack safe, we could need to have a similar tree style approach as the PR you linked.

Or, and I think this is simpler, internal to the unorderedTraverse for Map just call .toList on the Map, do the traverse there, then call .toMap. If you are converting toList however, I imagine converting to Vector and using traverseViaChain then converting to Map will be more efficient?

def traverseViaChain[G[_], A, B](

from cats.

johnynek avatar johnynek commented on June 11, 2024

we should definitely add this test though, and while we are at it see if there are other UnorderedTraverse instances that may also have an issue.

from cats.

g-jozsef avatar g-jozsef commented on June 11, 2024

I think the key takeaway here is that it was stack safe in 2.6.1 and I think this was an unexpected side effect of 2.7.0

from cats.

johnynek avatar johnynek commented on June 11, 2024

I think we should do a git bisect to find the issue. There were a lot of changes. I don't see how the code you linked is even in the call graph of this example (it may be, I just don't see how).

Also, the current code is not stack safe which you can clearly see (it builds up a linear depth computation).

It is interesting that the difference seems to be with Tuple2 applicative though, and it works here with Option.

Lastly, I'd note that 500 is pretty low to be causing stack overflows. I wonder if the Option example works with say 10000?

from cats.

g-jozsef avatar g-jozsef commented on June 11, 2024

Tested it with 10000:
val m: Map[Int, Int] = (1 to 10000).map(x => x -> x).toMap
it constructed the map and Scastie hangs after testing Option monad

from cats.

TonioGela avatar TonioGela commented on June 11, 2024

I don't see how that PR can do it, but maybe. The code you are running is here I think:

def unorderedTraverse[G[_], A, B](

and that code is just not stack safe.

To make it stack safe, we could need to have a similar tree style approach as the PR you linked.

Or, and I think this is simpler, internal to the unorderedTraverse for Map just call .toList on the Map, do the traverse there, then call .toMap. If you are converting toList however, I imagine converting to Vector and using traverseViaChain then converting to Map will be more efficient?

def traverseViaChain[G[_], A, B](

I might take a look at it. Writing tests to check for SO should be easy.

from cats.

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.