当前位置:首页 > 技术知识 > 正文内容

Leadership transitions at Huawei's auto business unit

maynowei10个月前 (08-26)技术知识93

It's all changed at the top of Huawei's Intelligent Automotive Solution Business Unit (IAS BU), with former CEO Richard Yu moving to the role of chairman. JIN Yuzhi, previously Huawei VP and head of optical business, will take the post of CEO.

Established in 2019, IAS BU has grown rapidly, expanding its team to 2,500 members within a year. In April 2021, Yu took the helm as CEO.

In October 2020, the HI (Huawei Inside) intelligent driving system saw the light of day, since cultivating partnerships with BAIC's Arcfox and Changan's Avatr. However, its sales performance has fallen short of expectations.

Another system, Huawei Smart Selection, has since given rise to the AITO, a cooperative effort between Huawei and Seres, with two models on sale.

Smart Selection is emerging as the principal focus of Huawei's automotive endeavors.

相关文章

Android监听滚动视图(监听页面滚动)

Android UI Libs之Android-ObservableScrollView1. 说明Android-ObservableScrollView,顾名思义,Android上观察滚动的视图,可...

ExpandListView 的一种巧妙写法(三十的另一种写法)

ExpandListView大家估计也用的不少了,一般有需要展开的需求的时候,大家不约而同的都想到了它然后以前自己留过记录的一般都会找找以前自己的代码,没有记录习惯的就会百度、谷歌,这里吐槽一下,好几...

Go语言进阶:时间轮(golang时间轮)

时间轮概念时间轮(Timing Wheel)是一种高效的定时任务调度数据结构,特别适合处理大量定时任务。它通过一个循环数组(轮盘)和多个槽位(buckets)来组织定时任务,每个槽位代表一个时间间隔。...

如何正确理解Java领域中的并发锁,我们应该具体掌握到什么程度?

苍穹之边,浩瀚之挚,眰恦之美; 悟心悟性,善始善终,惟善惟道! —— 朝槿《朝槿兮年说》写在开头对于Java领域中的锁,其实从接触Java至今,我相信每一位Java Developer都会有这样的一个...

Qt QWaitCondition 的正确使用方法

简单用法QWaitCondition 用于多线程的同步,一个线程调用QWaitCondition::wait() 阻塞等待,直到另一个线程调用QWaitCondition::wake() 唤醒才继续往...

go语言并发原语RWMutex实现原理及闭坑指南

1.RWMutex常用方法Lock/UnlockRLock/RUnlockRLocker 为读操作返回一个Locker接 口的对象2. RWMutex使用方法 func main() { var c...