摘要: 本专栏用于记录计算机体系结构学习笔记 阅读全文
posted @ 2024-05-17 13:46 信海 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 本文为伯克利EE290课程-数据流的学习笔记。 https://www.bilibili.com/video/BV1hi4y1A7BC?p=6&vd_source=fa275f0a0475a70a51f29dd7d026e80b 阅读全文
posted @ 2024-05-16 17:28 信海 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 本文主要用于记载DCIM的相关工作动机、设计原理与方法。 阅读全文
posted @ 2024-05-15 20:28 信海 阅读(123) 评论(1) 推荐(1) 编辑
摘要: 本文用于记录体系结构领域的CCF会议与期刊目录 阅读全文
posted @ 2024-02-24 11:09 信海 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 摘要 Knowledge distillation becomes a de facto standard to improve the performance of small neural networks. 知识蒸馏成为提高小型神经网络性能的事实上的标准。 Most of the previo 阅读全文
posted @ 2023-10-18 19:38 信海 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 本日志用于记录在电路学习过程中遇到的一些术语。 阅读全文
posted @ 2023-10-15 11:07 信海 阅读(296) 评论(0) 推荐(0) 编辑
摘要: ## CMAKELists ``` cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(example) set(CMAKE_PREFIX_PATH /home/xuliangyu/libtorch) set(Torch_DIR /home 阅读全文
posted @ 2023-08-26 10:15 信海 阅读(26) 评论(0) 推荐(0) 编辑
摘要: ``` #include #include #include #include #include #include typedef float FLOAT; double get_time(); void warm_up(); void vec_add_host(FLOAT* x, FLOAT* y 阅读全文
posted @ 2023-08-24 16:56 信海 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ``` #include "device_launch_parameters.h" #include int main(int argc, char*argv[]) { int deviceCount; // 设备数目 cudaGetDeviceCount(&deviceCount); for(in 阅读全文
posted @ 2023-08-24 15:29 信海 阅读(33) 评论(0) 推荐(0) 编辑
摘要: ``` #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #i 阅读全文
posted @ 2023-08-24 10:49 信海 阅读(553) 评论(0) 推荐(0) 编辑