自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (5)
  • 收藏
  • 关注

原创 IIT_CS480_Assignments_Week4_Participation

IIT CS 480 - Introduction to Artificial Intelligence Assignments_Week4_Participation github: https://github.com/IIT-MAI-2020Fall This week, we will discuss Chapter 5 - Games. We’ll cover mini-max, alpha-beta pruning, and briefly about Monte Carlo Tree Sea

2020-09-18 10:32:17 337

原创 IIT_CS480_Assignments_Week3_Participation

IIT CS 480 - Introduction to Artificial Intelligence Assignments_Week3_Participation github: https://github.com/IIT-MAI-2020Fall We will learn about several search algorithms, one of which is the A* algorithm. The A* algorithm and its variants are still u

2020-09-15 11:19:28 270

原创 IIT_CS480_Assignments_Week2_Participation

IIT CS 480 - Introduction to Artificial Intelligence Assignments_Week2_Participation github: https://github.com/IIT-MAI-2020Fall Let’s discuss Alan Turing’s 1950 paper “Computing machinery and intelligence.” The paper is freely available at https://academ

2020-09-15 11:17:07 278

原创 IIT_CS480_Assignments_Week1_Participation

IIT CS 480 - Introduction to Artificial Intelligence Assignments_Week1_Participation github: https://github.com/IIT-MAI-2020Fall Please reply and answer the following questions. Please introduce yourself. What is your major? Please tell us about one of y

2020-09-15 11:12:18 413

DRM 调试 ,模拟显示器 EDID

drm 测试,利用 edid.bin 模拟显示器 EDID ,测试 HDMI Driver 是否正常。

2017-07-21

debug宏合集dbg.h

debug 宏合集 #ifdef NDEBUG #define debug(M, ...) #else #define debug(M, ...) fprintf(stderr, "DEBUG %s:%d: " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) //牛逼 #endif #define clean_errno() (errno == 0 ? "None" : strerror(errno)) #define log_err(M, ...) fprintf(stderr, "[ERROR] (%s:%d: errno: %s) " M "\n", __FILE__, __LINE__, clean_errno(), ##__VA_ARGS__) #define log_warn(M, ...) fprintf(stderr, "[WARN] (%s:%d: errno: %s) " M "\n", __FILE__, __LINE__, clean_errno(), ##__VA_ARGS__) #define log_info(M, ...) fprintf(stderr, "[INFO] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) #define check(A, M, ...) if(!(A)) { log_err(M, ##__VA_ARGS__); errno=0; goto error; } #define sentinel(M, ...) { log_err(M, ##__VA_ARGS__); errno=0; goto error; } #define check_mem(A) check((A), "Out of memory.") #define check_debug(A, M, ...) if(!(A)) { debug(M, ##__VA_ARGS__); errno=0; goto error; }

2016-10-14

RK平台开机播放mp4视频补丁

RK平台开机播放mp4视频补丁 实现 bootAnimation::video() 接口

2016-09-07

朗道英汉字典 for stardict 英汉

朗道英汉字典 for stardict 英汉

2016-05-31

朗道英汉字典 for stardict 汉英

朗道英汉字典 for stardict 汉英

2016-05-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除