rht

Results 789 comments of rht

It's because I intentionally set `init_people` to `[]`. I think the correct handling should be to raise error instead of silently passing along the values. In the error message, you...

I'm doing a benchmark to compare FLAME GPU 2 with mesa-frames (cc: @adamamer20), and have prepared a Dockerfile for it. I will turn it into a PR when I have...

This is what I get on a V100 NVIDIA. The result doesn't make sense to me. Why is it almost the same for 1 million and 16 million agents? ```...

Sorry for not stating which benchmark I did. It was the [Sugarscape IG](https://github.com/FLAMEGPU/FLAMEGPU2-submodel-benchmark) to reproduce the paper result.

I see, thank you for the informative architecture configuration. Update: I ran `cmake` with `-DCMAKE_CUDA_ARCHITECTURES=70` and `-DFLAMEGPU_SEATBELTS=OFF`, and I still got ~0.5s per step. ``` repetition,grid_width,pop_size,p_occupation,s_step_mean,pop_count_mean 0,256,65536,0.17,0.557127,6158.32 0,512,262144,0.17,0.550818,25022.8 0,768,589824,0.17,0.554487,57078.9 0,1024,1048576,0.17,0.555948,101629...

> Update: I ran cmake with -DCMAKE_CUDA_ARCHITECTURES=70 and -DFLAMEGPU_SEATBELTS=OFF, and I still got ~0.5s per step. I did both rebuilding the Docker image so that the FLAME GPU 2 is...

Thank you for finding the cause! > Run with the environment variable FLAMEGPU_SHARE_USAGE_STATISTICS set to OFF > i.e. FLAMEGPU_SHARE_USAGE_STATISTICS=OFF ./bin/Release/submodel-benchmark This one works! I see, I assume any of the...

> what is the motivation for adding this to the agentset? @EwoutH I'm also wondering about this. Not saying that this shouldn't be in the library, but a concrete example...

> I also want to know if we need to maintain the dict with Agent classes as key and lists of agents as values. With https://github.com/projectmesa/mesa/pull/2220#issue-2471564909, this is redundant unless...

> For the activation by type scenario, everything hinges on how fast a group_by operation is and whether you must redo this every step. For models where agents are not...