Does F# provide you automatic parallelism?

后端 未结 8 2062
栀梦
栀梦 2020-12-28 17:25

By this I meant: when you design your app side effects free, etc, will F# code be automatically distributed across all cores?

8条回答
  •  借酒劲吻你
    2020-12-28 17:59

    No it will not. You must still explicitly marshal calls to other threads via one of the many mechanisms supported by F#.

提交回复
热议问题