Home Technology peripherals It Industry Longsys will equip mobile phone storage products with Western Digital flash memory for use in the Greater China market

Longsys will equip mobile phone storage products with Western Digital flash memory for use in the Greater China market

Mar 21, 2024 am 10:30 AM
data access Western Digital Jiang Bolong Mobile phone storage

Longsys announced at today’s CFMS2024 (China Flash Memory Market Summit) that it will strengthen its cooperative relationship with Western Digital and work together to explore and support market opportunities for the next generation of artificial intelligence-based mobile terminal storage and applications.

Based on the long-term cooperation between the two parties, Longsys and Western Digital will further deepen business cooperation, Provide "market-leading" mobile phone market for the Greater China region (including mainland China, Hong Kong, Macao and Taiwan) Customized embedded storage solutions.

Longsys will equip mobile phone storage products with Western Digital flash memory for use in the Greater China market

Longsys will use Western Digital’s flash memory in its storage products for the mobile phone market, and Western Digital will also Provide comprehensive technical and engineering support to help Longsys provide mobile terminal storage solutions in Greater China.

Cai Huabo, Chairman and General Manager of Longsys, said: "The application of AI in the mobile phone field is showing broad prospects and huge potential. In order to achieve further breakthroughs in the mobile phone market, the company and Western Digital have jointly strengthened By cooperating with embedded storage resources and combining Longsys’ independently developed main control technology, firmware algorithms and its own advanced packaging and testing capabilities, we will be able to significantly improve the performance of mobile phone storage, thereby promoting the rapid popularization of generative AI functions in smartphones. ."

Rob Soderbery, executive vice president and general manager of Western Digital's flash memory business, said: "We attach great importance to our business partnership with Longsys and are pleased to announce the continuation of our long-term partnership. This cooperation is fully integrated We have leveraged our cutting-edge NAND technology to help Longsys design and launch products tailored for the Greater China mobile terminal market. This strategic move not only strengthens our existing partnership, but also further enhances our presence in the NAND flash memory industry. leadership position, demonstrating its flexibility and market strategy. By combining the strengths of both parties, we take a strategic step forward to better meet the growing demand for advanced mobile terminal storage solutions driven by artificial intelligence."

Inquiries on this site revealed that Longsys owns Lexar and FORESEE storage brands. In January 2024, Longsys’ first self-developed 32Gb (4GB) 2D MLC NAND Flash was launched. This product is packaged in BGA132, supports Toggle DDR mode, and has a data access bandwidth of up to 400MB/s. It is expected to be applied to eMMC, SSD and other products.

Longsys will equip mobile phone storage products with Western Digital flash memory for use in the Greater China market

The above is the detailed content of Longsys will equip mobile phone storage products with Western Digital flash memory for use in the Greater China market. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to remove the write protection of a USB flash drive? Several simple and effective methods can help you do it How to remove the write protection of a USB flash drive? Several simple and effective methods can help you do it May 02, 2024 am 09:04 AM

U disk is one of the commonly used storage devices in our daily work and life, but sometimes we encounter situations where the U disk is write-protected and cannot write data. This article will introduce several simple and effective methods to help you quickly remove the write protection of the USB flash drive and restore the normal use of the USB flash drive. Tool materials: System version: Windows1020H2, macOS BigSur11.2.3 Brand model: SanDisk UltraFlair USB3.0 flash drive, Kingston DataTraveler100G3USB3.0 flash drive Software version: DiskGenius5.4.2.1239, ChipGenius4.19.1225 1. Check the physical write protection switch of the USB flash drive on some USB flash drives Designed with

Single card running Llama 70B is faster than dual card, Microsoft forced FP6 into A100 | Open source Single card running Llama 70B is faster than dual card, Microsoft forced FP6 into A100 | Open source Apr 29, 2024 pm 04:55 PM

FP8 and lower floating point quantification precision are no longer the "patent" of H100! Lao Huang wanted everyone to use INT8/INT4, and the Microsoft DeepSpeed ​​team started running FP6 on A100 without official support from NVIDIA. Test results show that the new method TC-FPx's FP6 quantization on A100 is close to or occasionally faster than INT4, and has higher accuracy than the latter. On top of this, there is also end-to-end large model support, which has been open sourced and integrated into deep learning inference frameworks such as DeepSpeed. This result also has an immediate effect on accelerating large models - under this framework, using a single card to run Llama, the throughput is 2.65 times higher than that of dual cards. one

Usage of service layer in java Usage of service layer in java May 07, 2024 am 04:24 AM

The Service layer in Java is responsible for business logic and business rules for executing applications, including processing business rules, data encapsulation, centralizing business logic and improving testability. In Java, the Service layer is usually designed as an independent module, interacts with the Controller and Repository layers, and is implemented through dependency injection, following steps such as creating an interface, injecting dependencies, and calling Service methods. Best practices include keeping it simple, using interfaces, avoiding direct manipulation of data, handling exceptions, and using dependency injection.

What is the API interface for? What is the API interface for? Apr 23, 2024 pm 01:51 PM

An API interface is a specification for interaction between software components and is used to implement communication and data exchange between different applications or systems. The API interface acts as a "translator", converting the developer's instructions into computer language so that the applications can work together. Its advantages include convenient data sharing, simplified development, improved performance, enhanced security, improved productivity and interoperability.

What does mysql database do? What does mysql database do? Apr 22, 2024 pm 06:12 PM

MySQL is a relational database management system that provides the following main functions: Data storage and management: Create and organize data, supporting various data types, primary keys, foreign keys, and indexes. Data query and retrieval: Use SQL language to query, filter and retrieve data, and optimize execution plans to improve efficiency. Data updates and modifications: Add, modify or delete data through INSERT, UPDATE, DELETE commands, supporting transactions to ensure consistency and rollback mechanisms to undo changes. Database management: Create and modify databases and tables, back up and restore data, and provide user management and permission control.

What does schema mean in mysql What does schema mean in mysql May 01, 2024 pm 08:33 PM

Schema in MySQL is a logical structure used to organize and manage database objects (such as tables, views) to ensure data consistency, data access control and simplify database design. The functions of Schema include: 1. Data organization; 2. Data consistency; 3. Data access control; 4. Database design.

Longsys displays FORESEE LPCAMM2 notebook memory: up to 64GB, 7500MT/s Longsys displays FORESEE LPCAMM2 notebook memory: up to 64GB, 7500MT/s Jun 05, 2024 pm 02:22 PM

According to news from this website on May 16, Longsys, the parent company of the Lexar brand, announced that it will demonstrate a new form of memory - FORESEELPCAMM2 at CFMS2024. FORESEELPCAMM2 is equipped with LPDDR5/5x particles, is compatible with 315ball and 496ball designs, supports frequencies of 7500MT/s and above, and has product capacity options of 16GB, 32GB, and 64GB. In terms of product technology, FORESEELPCAMM2 adopts a new design architecture to directly package 4 x32LPDDR5/5x memory particles on the compression connector, realizing a 128-bit memory bus on a single memory module, providing a more efficient packaging than standard memory modules.

How to upload running data to keep How to upload running data to keep May 04, 2024 pm 10:51 PM

Steps to upload running data to Keep: 1. Connect the device and authorize data access; 2. Turn on automatic synchronization; 3. Manually upload data (if the device does not support automatic synchronization).

See all articles