CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2002
    Posts
    2

    Question Floating point calcualtions and the .NET framework

    Does doing any floating point calculations in the .NET environment, using the C# language, access any of the special underlying hardware of the Pentium4 processor, like SSE2 instructions. Or is there a special math coprocessor that it uses instead?


    moonmoth

  2. #2
    Join Date
    May 2002
    Location
    Atlanta,GA
    Posts
    262

    Re: Floating point calcualtions and the .NET framework

    Originally posted by moonmoth
    Does doing any floating point calculations in the .NET environment, using the C# language, access any of the special underlying hardware of the Pentium4 processor, like SSE2 instructions. Or is there a special math coprocessor that it uses instead?


    moonmoth
    It's likely that the JIT compiler will spit out the SSE2 floating point instructions if it is on a P4 procesesor. It's on of the advantages to useing a JIT compilier. However I am unaware if the current JIT compilier does that for a P4
    Jared

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured