WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: cpu flags  (Read 183 times)

Offline vinceASPECT

  • Hero Member
  • *****
  • Posts: 796
cpu flags
« on: September 10, 2024, 11:42:30 AM »
Hello Forum,

is it true to say you would NOT need to use earlier flags on some terminal command if you have something more up to date

so using say  "sse4.2"  you'd not bother following that with a flag like  "sse4.1"  and  "sse3"  and "sse2"

or do you use them ALL....and in the most recent hierarchy of  order?......as i listed

thanks
C

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 11036
Re: cpu flags
« Reply #1 on: September 11, 2024, 02:18:21 AM »
They are independent, and sometimes newer cpus drop support for older ones. So it's indeed possible to enable sse4.2 while not enabling sse2, for example.
The only barriers that can stop you are the ones you create yourself.

Offline vinceASPECT

  • Hero Member
  • *****
  • Posts: 796
Re: cpu flags
« Reply #2 on: September 11, 2024, 06:32:28 AM »
i mean if i see the list of FLAGS my cpu supports
and the list of flags supported by an app

must i still need to enable them ALL when typing a terminal command in the app
or should i just list the latest flags

 ( e.g.  sse4.2  superseded sse2....?... so although all  lists contain them both.......... don't type  "sse4.2+sse2" ..... just type "sse4.2"........)

Thx
C
« Last Edit: September 11, 2024, 06:34:19 AM by vinceASPECT »