1. If you don't optimize it, it's only 26-27. If you optimize BIOS, the
computing power should be 29-30, depending on the brand and frequency.
2. ASUS al series of rad RX 580 super frequency graphics card is equipped with 4GB gddr5 to provide better E-sports and 4K game experience
in super frequency mode, the core frequency provides excellent performance and game experience
equipped with silent fan blade design, it provides greater airflow and strong silence performance
the patented ip5x st-proof fan provides better st-proof effect and prolongs the service life of the fan
full board automation process technology and SAP II super alloy power supply design provide better quality and reliability
enjoy immersive virtual reality experience with VR friendly HDMI interface
GPU tweak II provides intuitive performance tuning function
* proct specifications may vary depending on the country or region. We sincerely suggest that you confirm the specifications of the procts currently sold with your local distributor or retailer.
3. The power consumption of rx580 8g is higher, but its performance is better than that of rx570. The power consumption of rx570 is about 150W, and that of rx580 is about 200W
the full load power of sapphire rx580 is more than 200 watts, plus the power consumption of CPU and other hardware, it needs more than 500 watts of power
The full load power consumption of
rx580 8g is about 200W, and the power consumption will vary with the core and video memory frequency of different brands and models
500 power supply should also pay attention to whether it is rated power. The rated power value is the rated voltage of the electrical equipment multiplied by the rated current. If the actual power of the graphics card is greater than the rated power, the electrical equipment may be damaged; If the actual power is less than the rated power, the graphics card will not work properly
{rrrrrrr}
extended information:
graphics core
chip manufacturer: AMD
graphics chip: radon RX 580
display chip series: AMD RX 500 Series
manufacturing process: 14nm
core code: Polaris 20 XTR
core frequency: 1411 / 1450mhz
CUDA core: 2304
rated power: ambient temperature The output power of the power supply is stable for a long time
maximum power: at room temperature, the input voltage is between 200V and 240V, and the output power is stable. The maximum power is generally about 15% higher than the rated power. For example, the new Valley nuclear power plant has a power of 325pq, a rated power of 250W, a maximum power of 280W, close to 300W
4. It should not be. Some small factories of third-party businesses in the East have 5808g new cards.
5. Sapphire rx5808g full load power consumption is 224w
6. Here's an idea. First of all, the characteristic of FPGA is that it is easy to master, and it is impossible to master. Many FPGA engineers who have been working for more than ten years are not stuck in projects. I've met a person who has worked in Huawei for seven years and worked on FPGA, but he can't get out of the project and resigns (now he's my immediate supervisor), so I have to be calm and suffer a lot if I want to work on FPGA. Then self-study just began to learn grammar, learning two weeks is enough, grammar is too simple. At this stage, at least master the whole FPGA development process and familiar with the software, especially online debugging. Vivado is recommended, because it is still a bit complicated. If you are asked to tune the interface in your work, you won't even know how to grasp the signal by the software, it will be embarrassing. As for SOC, don't learn it. It's useless to learn it. You can't use it in your work. At this stage, the most important thing is to pay attention to the formation of your own code style, see more code, write more code, and simulate more. If you have the code of an actual project, it would be better to learn the code style of other experts (it is recommended not to use the code of the development board to learn, writing too much), and then search for some asynchronous design specifications and other information, When you know how many clocks to give you, which clock to write which code to use, you start to play with some practical projects. At this time, you start to have choices. Generally, FPGA has two directions - interface and algorithm. Go out and look for a job at this stage, and the rest will be understood in the work. The threshold of algorithm is high. I have written the code of if acquisition board, and I don't know anything else. I began to learn the interface according to the requirements of recruitment companies. Generally, I require you to understand the high-speed interfaces such as PCI and DDR. The high-speed interface is nothing more than IP core instantiation and control. It seems difficult, but it's also difficult (it's difficult at work, but it's not so difficult to learn what this thing is). The most taboo thing about FPGA is low hand and high eye. It's also the easiest mistake to make when learning FPGA. I think it's the same thing. It's up to you to go the rest of the way. FPGA is a relatively biased instry. It's not easy to collect online resources. Information collection is also something you need to learn, but it's usually downloaded from someone else's official website, so you have to have a solid foundation in English. As for data and electricity, you don't need to look at it any more. The undergraate foundation is enough. The circuit in your heart doesn't refer to the circuit of trigger stack, but refers to the overall view of data flow transmission and clock layout as well as the overall view of the whole project. Therefore, it's useless to look at data and electricity. But for some basic knowledge of signal processing, we should at least know what is Nyquist sampling, what is if sampling, what is fir, FFT, DDC, UDC.
7. I have used FPGA of cyclone and Spartan series. Now I compare these two FPGAs in terms of development tools and development process[ The development tools of Altera are Quartus II, SOPC builder, Nios II, signal tap II and DSP Builder; Xilinx's development tools include ise, EDK, SDK, chipscope and system generator; Compared with ise, Quartus II is a logic design software with the same function; SOPC builder, relative to EDK, is used to build soft core. SOPC builder generates BSF file and quartus interface, PTF file and NIOS interface, while EDK can directly generate target file (bit), and it can also use EDK for software design. In other words, EDK can complete a design independently without relying on ISE and SDK. In contrast, EDK is better than SOPC builder. Compared with SDK, Nios II has the same functions, and the interface similarity reaches 99%. It is better to develop software with SDK than in EDK, and the interface is more friendly than in EDK. Compared with chipscope, signal tap II is an embedded logic analyzer, which is convenient for debugging; Compared with system generator, DSP Builder is used to build DSP algorithm mole. Since chipscope and system generator have not been used, no analysis is made. 2、 First of all, build a project through Quartus II and create a new block diagram / schematic file; Then open SOPC builder to build CPU system, add IP, and click genenater to generate. BSF and. PTF object files; Go back to Quartus II, import BSF file into schematic, assign pins, compile and generate sofand POF files. The hardware design is complete. Software design opens Nios II, creates a new project, selects target hardware as the PFT file generated previously, builds a software program, compiles and generates ELF file. To download and debug, first download the soft file (hardware) through JTAG interface, and then download the ELF file to check the operation or debug. We can download POF file through as interface and ELF file through JTAG. Then look at Xilinx SOPC development process, hardware design, open EDK, build CPU system, add IP, click Update bitstream, generate hardware bit stream file. Software design method 1, add C code in EDK, combine software and hardware into a bit file, so that the program runs in the chip, suitable for smaller programs. Second, add C code in EDK, hardware generates bit file, software generates ELF file, bit is downloaded to on-chip, elf is downloaded to off-chip. The third way is to design the software in SDK, and also generate ELF file. The interface is more friendly than that of EDK. Download, debug and solidify if the software and hardware are combined into a bit file, it is only necessary to download and solidify the MCS (bit converted) file. If the software is relatively large, it needs to be downloaded twice, bit is downloaded to the chip, elf is downloaded to the off chip, if it is solidified to flash, it also needs to add bootloader code in the EDK to synthesize a bit file with the hardware. Then, the bit is converted into MCS and then solidified into FPGA configuration chip, and the ELF file is downloaded into off chip flash. From the perspective of development process, EDK can complete SOPC design without relying on ISE. Of course, it can also import CPU soft core into ISE like Altera. From this point of view, Xilinx's development process is more flexible and stronger than Altera.
8. The power consumption of rx580 8g is higher, but its performance is better than that of rx570. The power consumption of rx570 is about 150W, and that of rx580 is about 200W.
9. 2048 castration version, is actually 570 overclocking