09-02-2008 02:17 AM
Hi,
I am using ML403 board with virtex-2pro fpga.
If I run an application in the stndalone mode and then with linux os, which would perform better?
The standalone one or the linux one? why?
Thanks..
09-02-2008 08:10 PM
All things being equal, the bare metal (stand-alone/no OS) implementation will be more efficient as the CPU is at your sole disposal.
As operating system gives you additional capabilities (multiple processes, interprocess communication, filesystems, etc.) but it comes with additional overhead of the kernel, device drivers, task switching, etc.
However, you may reach a limit with what you can do with a single thread elegantly.
It also depends on how you define "better" (e.g. CPU utilization, time to market, development effort, maintainability, scalability, feature set, etc.)
09-02-2008 08:10 PM
All things being equal, the bare metal (stand-alone/no OS) implementation will be more efficient as the CPU is at your sole disposal.
As operating system gives you additional capabilities (multiple processes, interprocess communication, filesystems, etc.) but it comes with additional overhead of the kernel, device drivers, task switching, etc.
However, you may reach a limit with what you can do with a single thread elegantly.
It also depends on how you define "better" (e.g. CPU utilization, time to market, development effort, maintainability, scalability, feature set, etc.)