TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

SSE: mind the gap

117 pointsby Audiophilipabout 9 years ago

2 comments

johnt15about 9 years ago
It's much better to use any of the numerous SIMD wrappers such as libsimdpp or Vc and get various benefits for free. It's possible to target everything from SSE and NEON to AVX512 with what is essentially a single code path.
评论 #11420196 未加载
评论 #11419698 未加载
评论 #11419693 未加载
评论 #11436804 未加载
cm3about 9 years ago
I&#x27;m trying to understand speculative execution.<p>Given this<p><pre><code> int result = foo != bar ? do_side_effect_and_return() : safe_return(); </code></pre> C code, am I right to assume both functions will be executed speculatively?<p>What other potential bugs&#x2F;gotchas are lurking with speculative execution?
评论 #11420608 未加载
评论 #11422125 未加载