de 32 bits do Windows em hardware de 64 bits para aplicativos de 32 bits

0

Existe um App de 32 bits e um PC de 64 bits (Hardware). O fornecedor de hardware diz: para executar um aplicativo de 32 bits no PC de 64 bits, o Win7 de 32 bits é suficiente para obter o máximo desempenho do aplicativo.

Eu não concordo, porque se o Windows 64 fosse ideal para trabalhar com hardware de 64 bits, mesmo se o App fosse 32.

Nós discutimos ..

Então, minha pergunta é: qual configuração resultará em maior desempenho para o aplicativo de 32 bits - "Win32 no 64 PC" ou "Win64 no 64 PC"?

    
por Jaine 08.02.2018 / 22:43

1 resposta

1

O que resultará no desempenho mais alto para o aplicativo de 32 bits - "Win32 no 64 PC" ou "Win64 no 64 PC"?

A resposta é - depende. A única maneira de descobrir é fazer benchmarks.

Sometimes 32-bit applications run faster, sometimes they run slower. There are a lot of competing factors affecting the performance. Generally the difference in either direction isn't very large.

I don't see how you can legitimately exclude any factor from performance considerations, because performance always happens in the real world where all factors are in play. Speed is not theoretical and cannot be treated in isolation.

Here is an article where the author did some benchmarking:

http://www.osnews.com/story/5768

He found that the 32-bit binaries were faster in his tests. That was on SPARC in early 2004.

Here is a 2010 article from Intel about moving to 64-bit applications:

http://software.intel.com/en-us/articles/moving-from-32-bit-applications-to-64-bit-applications-en/

According to this article, 64-bit binaries can giver you faster math, so math-heavy code should be faster if correctly optimized. Otherwise, your 64-bit code may well be slower, particular since it takes more memory and this may result in more time spent accessing RAM (more frequent cache misses).

Source Os aplicativos de 32 bits funcionam mais rápido ou mais lentamente em um sistema operacional de 64 bits? [fechado] , responder por nate-c-k

    
por 08.02.2018 / 22:49