Same win app runs differently on different processor
-
I am using visual studio 2013 and win7 intel processor, the app working correctly with no problems on a PC with intel processor, but on a PC with AMD it works with a bug! The only difference between the two computers is the processor. what might be the problem ?? I am newbie.
-
I am using visual studio 2013 and win7 intel processor, the app working correctly with no problems on a PC with intel processor, but on a PC with AMD it works with a bug! The only difference between the two computers is the processor. what might be the problem ?? I am newbie.
Given the information you've provided, it's impossible to tell you anything about what the problem might be. Hell, you didn't even tell us what the bug is. For anyone to give you any kind of useful information, you're going to have to provide a LOT more detail about the bug, what the code is supposed to be doing, what the code is actually doing, and show the code that's got the problem.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak -
Given the information you've provided, it's impossible to tell you anything about what the problem might be. Hell, you didn't even tell us what the bug is. For anyone to give you any kind of useful information, you're going to have to provide a LOT more detail about the bug, what the code is supposed to be doing, what the code is actually doing, and show the code that's got the problem.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave KreskowiakYou are absolutely right, I wasn't clear, My question is: the different processors can make a problem ? The code is hideous and unreadable at all.
-
You are absolutely right, I wasn't clear, My question is: the different processors can make a problem ? The code is hideous and unreadable at all.
Not a known problem We're also taking your word for it that it is a problem between processors and not something else that gives the appearance of such. That's why we need far more information. We're not asking for the entire freakin' application. Just the code that's affected. If, as you say, the code is hideous and unreadable, I would question the quality of the code before I question processor compatibility issues.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak -
I am using visual studio 2013 and win7 intel processor, the app working correctly with no problems on a PC with intel processor, but on a PC with AMD it works with a bug! The only difference between the two computers is the processor. what might be the problem ?? I am newbie.
Member 12134388 wrote:
visual studio 2013
Just to be be clear - the one that it works "on" is not the one that has Visual Studio on it it right? Because if not that would be the most likely cause of a problem.
Member 12134388 wrote:
but on a PC with AMD it works with a bug!
Processor? Unless you have a PC and you physically replaced the Intel chip with a AMD chip it is going to be very difficult to get to the point where a bug is caused by a processor. Much, much more likely to be caused by something else that id different between the two boxes. Likely what software is installed
-
Member 12134388 wrote:
visual studio 2013
Just to be be clear - the one that it works "on" is not the one that has Visual Studio on it it right? Because if not that would be the most likely cause of a problem.
Member 12134388 wrote:
but on a PC with AMD it works with a bug!
Processor? Unless you have a PC and you physically replaced the Intel chip with a AMD chip it is going to be very difficult to get to the point where a bug is caused by a processor. Much, much more likely to be caused by something else that id different between the two boxes. Likely what software is installed
jschell wrote:
Just to be be clear - the one that it works "on" is not the one that has Visual Studio on it it right?
Visual studio is on the intel PC , and it is working correctly on intel. I am not sure i got ur point.
-
jschell wrote:
Just to be be clear - the one that it works "on" is not the one that has Visual Studio on it it right?
Visual studio is on the intel PC , and it is working correctly on intel. I am not sure i got ur point.
The thing is, the native code you run on the Intel PC may not be the same native code you run on the AMD. When you compile your code in Visual Studio it gets compiled down to MSIL language, NOT NATIVE CODE TO THE PROCESSOR. When you launch the .EXE, the MSIL code get's JIT'd down to native code that the processor actually runs. This JIT is compiled for the chip you're running the MSIL code on. I keep asking you for the code you're having the problem with and you keep ignoring that request. Without, there is very little anyone can tell you that's going to be of any use and surely no actual solutions to the problem.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak -
jschell wrote:
Just to be be clear - the one that it works "on" is not the one that has Visual Studio on it it right?
Visual studio is on the intel PC , and it is working correctly on intel. I am not sure i got ur point.
Member 12134388 wrote:
Visual studio is on the intel PC , and it is working correctly on intel.
Then the likely cause is that you are missing a library. It runs on your machine because VS (Visual Studio) installs many things. And if you have any additional libraries then they too can have libraries. The target machine is probably missing one of those. Next most likely is that there is some environment difference. For example you are an admin on your machine where the user on the target machine (you or someone else) is not. That is only one example there can be others.