>
> I checked my CPU utilization and found that it uses one CPU to do this
> computation and think, if it is possible to use multi-thread to do this
> computation so that the computation can be accelerated. Have you this
> experience or give me one feedback, if ns-3 could do the
> multiple-thread? Thank you for your help in advance!
>
ns-3 is not multi-threaded, and although it can be partitioned to run on
different CPUs or cores using MPI, it is difficult to do so on shared
wireless channels.
The LTE documentation states:
#. The simulator should scale up to tens of eNBs and hundreds of User
Equipment (UEs).
so running with thousands of UEs will likely require you to make some
modifications to the models to introduce more abstractions that are
compatible with your study.
- Tom