首页 > 其他分享 >My technical summary in 2022

My technical summary in 2022

时间:2023-01-26 21:56:02浏览次数:44  
标签:me computing technical programming 2022 GPU using My

Intro

It's quite tough for me in 2022. I went through changing job, injury and covid epidemic. About Technology, I learned cuda and GPU programming at the beginning of this year. The language itself is very interesting as you could store data in GPU and calculate in parallel. However, the task is super challenging and cutting-edge, and there is not much reference. Then, I accepted a new position as Devops Engineer in Bank, and started to work with private Alicloud. I mainly supported project teams while they had various issues using the private Alicloud. Sometimes, I coded using python and terraform to add new feature in our team existed project.

Cuda

CUDA (or Compute Unified Device Architecture) is a parallel computing platform and application programming interface (API) that allows software to use certain types of graphics processing units (GPUs) for general purpose processing, an approach called general-purpose computing on GPUs (GPGPU).

I tried to learn it hard. I remember I held a sharing lecture with my teammates, talking about the basic principle of using cuda and presenting some simple examples. Also, I studied an online official course, named "Cuda Programming". I think some content is amazing good, while I was leaving the company at that time and not learned in depth.

深入浅出云计算

I learn this course from geektime(极客时间). It gives me the basic ideas of cloud computing, like oss, sls , ecs and etc, also tells me how to choose different products.

标签:me,computing,technical,programming,2022,GPU,using,My
From: https://www.cnblogs.com/Andres/p/17068295.html

相关文章

  • 2022NOIP A层联测35
    好久之前的题了。A.弹珠游戏\(R,G,B\)任意时刻只能出现两种,出现第三种时优先匹配剩下两种的组合,再考虑形成新的组合,匹配啥是一样的,于是每次乘上方案数code#includ......
  • MySql数据类型
    一、数值1、TINYINT1byte小整数值2、SMALLINT2bytes大整数值3、MEDIUMINT3bytes大整数值4、INT或INTEGER4bytes大整数值......
  • 《MySQL高级篇》十、数据库其他调优策略
    文章目录​​1.数据库调优的措施​​​​1.1调优的目标​​​​1.2如何定位调优问题​​​​1.3调优的维度和步骤​​​​第1步:选择适合的DBMS​​​​第2步:优化表设计​......
  • mysql存储过程和游标
    创建存储过程存储过程和定义函数相似,使用CREATEPROCEDURE 存储名(),BEGIN 和END之间为“函数体”。CREATETABLEBlog(authorVARCHAR(25),blogTEXT,......
  • MySQL高级【存储过程】
    1:存储过程1.1:介绍存储过程是事先经过编译并存储在数据库中的一段SQL语句的集合,调用存储过程可以简化应用开发人员的很多工作,减少数据在数据库和应用服务器之间的传输,对于......
  • 认真学习MySQL中的二进制日志(binlog)与中继日志(Relay log)
    binlog即binarylog,二进制日志文件,也叫作变更日志(updatelog)。它记录了数据库所有执行的DDL和DML等数据库更新事件的语句,但是不包含没有修改任何数据的语句(如数据查询语句se......
  • 年度征文 | 回顾2022,展望2023
    目录​​一、前言​​​​二、回顾2022​​​​三、展望2023​​个人主页: ​​ζ小菜鸡​​大家好我是ζ小菜鸡,感谢大家一直的支持。岁末年初,让我们一起回顾2022展望2023......
  • zsh/oh-my-zsh国内安装和主题maran
    国内按照oh-my-zsh总是失败,可以借鉴下其他博主的下面的方式安装。我比较推荐的主题是maranvi~/.zshrcZSH_THEME="maran"可以调成主题为random,多尝试几次,看看哪个更适合自己......
  • MySQL
    MySQL概述数据库相关概念数据库:存储数据的仓库,数据时有组织的进行存储,简称DataBase(DB)数据库管理系统:操纵和管理数据库的大型软件,简称DataBaseManagementSystem(DBM......
  • mysqldump最佳实践(2)
    ​导入存储过程、函数和触发器默认情况下,mysqldump导入视图和触发器。但是,它不导入过程、函数和事件。要导入过程和函数,应该指定--routines选项,要导入事件,应该指定--event......