Questions tagged [bmi]

Bit Manipulation Instructions Sets (BMI sets) are extensions to the x86 instruction set architecture for microprocessors from Intel and AMD. The purpose of these instruction sets is to improve the speed of bit manipulation. (Courtesy of Wikipedia.)

Bit Manipulation Instructions Sets (BMI sets) are extensions to the x86 instruction set architecture for microprocessors from Intel and AMD. The purpose of these instruction sets is to improve the speed of bit manipulation. All the instructions in these sets are non-SIMD and operate only on general-purpose registers.

See: Wikipedia entry for BMI.

34 questions
0
votes
0 answers

What is the difference between MMX PANDN and BMI ANDN?

What is the difference between the MMX instruction PANDN and the BMI 1.0 instruction ANDN ?
gnzlbg
  • 7,135
  • 5
  • 53
  • 106
-1
votes
2 answers

BMI calculation and Menu logic

I am totally new to programming and have been racking my head around something that I know is so basic. I am not one to learn online so this is proving to be more difficult. So I am needing to create a C# console app that has a menu where you have…
sandra
  • 3
  • 2
-3
votes
1 answer

Loop keeps returning to wrong part

I'm taking a fundamentals of programming class and we're supposed to be building a menu that calculates BMI and also shows different gym membership options, what I can't figure out is why my menu keeps looping back to the BMI calculator after…
-3
votes
1 answer

i am new to python i am trying to make a bmi calculator

w=int(input("Enter your weight")) h=int(input("Enter your height")) bmi=w/h**2 if (bmi<=18.5): print("UnderWeight") elif (bmi>18.5 and bmi<=24.9): print("Healthy") elif (bmi>=25 and bmi<=29.9): print("OverWeight") elif (bmi>30): …
1 2
3