AMD Ryzen™ AI Max+ 395 --EVO-X2 AI Mini PC

Due to high order volumes, orders placed May 8-23 are shipping now, while new orders from May 24 will ship starting May 29.
Variant- 64GB RAM + 1TB SSD
Power Plug Type- US
$1,499.00
$2,199.00
-$700.00
Quantity
EU countries place orders on the EU site
Description

We have upgraded the AIPC application version (from version 3.0.5 to version 3.1.1) to ensure a better user experience for you.

Please help to follow the instructions to update. Thank you for your understanding

👉AIPC Local Upgrade Tutorial

👉BIOS&EC Boot operation guide (Windows system)

👉BIOS VRAM Size Adjustment Guide

📢 OFFICIAL NOTICE: ORDER & SHIPPING UPDATES

1️⃣ IMMEDIATE STOCK | FAST SHIPPING 
All orders will dispatch after payment confirmation.

2️⃣ DEPOSIT DISCOUNT ACTIVATION

  • Your exclusive final payment discount code has been sent via email (check spam/promotions folder).

  • Simply apply the code at checkout to complete payment.

  • Haven’t received it? Contact support: service@gmktec.com

3️⃣ FEDEX INTERNATIONAL SHIPPING

  • Orders to certain countries will ship via DHL/FedEx International Priority. View Details

  • Buyers must ensure self-clearance capability before ordering.

  • Customs duties reimbursement: After payment, submit your receipt to service@gmktec.com for instant refund.

Need help?
📩 Email: service@gmktec.com

GMKtec EVO-X2

GMKtec EVO-X2

AMD Ryzen™ AI Max+ 395

Specifications

Specifications

Parameter Details
CPU AMD Ryzen™ AI Max+ 395
• 16 cores / 32 threads
• TSMC 4nm FinFET process
• Up to 5.1 GHz (MAX)
• 16 MB L2 Cache / 64 MB L3 Cache
• TDP: runs steadily at 120W (peak up to 140W)
GPU Radeon 8060S Graphics
• 40-core RDNA 3.5 architecture
AI NPU Based on XDNA 2 architecture
• 50 TOPS
• Overall processor performance up to 126 TOPS

• LM Studio: AI performance 2.2× higher than NVIDIA RTX 4090 with lower power consumption
Memory (RAM) Onboard LPDDR5X (non-upgradeable)
• Options: 64GB or 128GB
• Speed: 8000MHz
Primary Storage (ROM) PCIe 4.0 M.2 2280 SSD
• Capacities: 2TB or 4TB
• Supports PCIe 3.0/4.0 (SATA drives are not supported)
Internal Storage Expansion Dual M.2 2280 slots
• Maximum total storage: 16TB (each slot supports up to 8TB via PCIe GEN4 x4)
Video Output Available via HDMI, DisplayPort, and USB4
• Maximum supported resolution: 7680×4320 @ 60Hz
Network (WiFi & LAN) WiFi:
• Wifi7: RZ717(MT7925)
Ethernet:
• 1 × RJ45 Gigabit LAN (2.5G, 8125BG)
Bluetooth Bluetooth 5.4
Power – Charger DC 19.5V, 11.8A (~230.1W)
• AC Input: 100–240V, 50/60Hz, 4.0A
Front Panel I/O • 2 × USB-A 3.2 Gen2
• 1 × Audio Combo (3.5mm jack)
• 1 × USB Type-C (USB4.0)
• 1 × SD Card Reader (SD4.0, supports SDXC)
• Buttons: Power, System Fan Lighting Control, Performance Mode Switch
Rear Panel I/O • 1 × DisplayPort 1.4 HBR3 (8.1 Gbps)
• 1 × HDMI 2.1 (FRL at 8 Gbps)
• 1 × USB-A 3.2 Gen2
• 2 × USB-A 2.0
• 1 × USB Type-C (USB4.0)
• 1 × Audio (3.5mm CTIA)
• 1 × DC IN (5525 interface)
• 1 × RJ45 Gigabit LAN (2.5G, 8125BG)
OS • Window 11 Pro
Chassis / Form Factor • Dimensions: 193 mm x 185.8 mm x 77 mm
• Chassis finish: B/C-grade metal with CNC sandblasted oxidized finish; A-shell plastic spray coating
LLM support • 64GB+1TB:DeepSeek-Rl: 32B
• 128GB+2TB:DeepSeek-Rl: 32B, DeepSeek-R1: 70B, Lama 4: 109B
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

You may also like