Menu
Your Cart

AMD Ryzen 5 Processor 3400G with ATI RX Vega 11 Graphics

AMD Ryzen 5 Processor 3400G  with ATI RX Vega 11 Graphics
-12 %
AMD Ryzen 5 Processor 3400G with ATI RX Vega 11 Graphics
  • Price: TK 12,000/-
  • special price: TK 10,600/-
  • Stock: In Stock
  • Model: Ryzen 5 3400G
TK 10,600/-
TK 12,000/-
Ex Tax: TK 10,600/-

Key Features

    • Model: Ryzen 5 3400G
    • Frequency: 3.7GHz up to 4.2GHz
    • Cores-6 & Threads-12
    • Cache: L2: 2MB, L3: 4MB
    • Memory Speed: Up to 2932MHz
Specification
General Feature
BrandAMD
ModelRyzen 5 5 3400G
Base Frequency3.7GHz
Max Turbo Frequency4.2GHz
Number of Cores4
Threads8
Cache L2 Cache: 2MB & L3 Cache: 4MB
Memory Specifications
Maximum Speed2932MHz
Memory TypeDDR4
Maximum Number of Channels2
Graphics Specifications
Processor GraphicsATI Radeon RX Vega 11 Graphics
Base Frequency1400 MHz
Number of Core11
Warranty Information
Warranty03 Years (No Warranty for Fan or Cooler)
Description

AMD Ryzen 5 3400G Processor with ATI RX Vega 11 Graphics

The AMD Ryzen 5 3400G Processor with Radeon RX Vega 11 Graphics is a versatile and efficient processor designed for a wide range of computing needs. It features 4 processor cores and 8 threads, providing solid performance and multitasking capabilities. The processor operates within an efficient power consumption range of 45-65W TDP, balancing performance and energy efficiency.

With a base clock speed of 3.7GHz and a max boost clock speed of up to 4.2GHz, the Ryzen 5 3400G is equipped to handle a variety of tasks, from everyday computing to more demanding applications. It features 2MB L2 cache and 4MB L3 cache, ensuring quick data access and responsiveness.

The Ryzen 5 3400G is built using TSMC's 12nm FinFET CMOS technology, offering advanced performance and efficiency. It supports PCIe 3.0 x8 connectivity and comes with the Wraith Spire thermal solution for effective cooling and quiet operation.

For memory, the processor supports DDR4 RAM at speeds up to 2933MHz and features 2 memory channels, providing ample bandwidth for smooth performance. Additionally, the integrated Radeon RX Vega 11 Graphics enhances the processor's capabilities, delivering impressive graphical performance for gaming, content creation, and other visually intensive tasks.

The AMD Ryzen 5 3400G Processor includes a three-year warranty (excluding the fan or cooler), offering peace of mind and assurance of quality. Its combination of processing power and integrated graphics makes it a great choice for users seeking a versatile and efficient processor for a variety of applications.

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};