This page discusses both Assimps scalability in threaded environments, the precautions to be taken in order to use it from multiple threads concurrently and finally its own ability to parallelize certain tasks internally.
The library can be accessed by multiple threads simultaneously, as long as the following prerequisites are fulfilled:
Multiple concurrent imports may or may not be beneficial, however. For certain file formats in conjunction with little postprocessing IO times tend to be the performance bottleneck, using multiple threads does therefore not help. Intense postprocessing (especially the O(nlogn) steps aiProcess_JoinIdenticalVertices, aiProcess_GenSmoothNormals and aiProcess_CalcTangentSpace) together with file formats like X or Collada, which are slow to parse, might scale well with multiple concurrent imports.
Automatic multi-threading is not currently implemented.
1.7.1