上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 118 下一页
摘要: 原文地址:http://www.linuxeden.com/a/83861 AI 的一大瓶颈是训练成本,深度神经网络(DNN)的训练通常是一系列矩阵乘法操作,这是 GPU 非常擅长的工作,但 GPU 尤其是专业级显卡要比 CPU 昂贵得多。Rice 大学的计算机科学家和英特尔的研究人员从 2019 阅读全文
posted @ 2021-04-13 08:23 叕叒双又 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1.到https://pytorch.org/ 2.根据自己的情况,选择相应的 PyTorch Build Stable (1.8.1) Your OS Linux Package Pip Language Python Compute Platform CUDA 10.2 Run this Com 阅读全文
posted @ 2021-04-12 00:39 叕叒双又 阅读(613) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-04-05 16:05 叕叒双又 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 删除行首空格 :0,$s//#/gc --> 在行首加一个#号 :6,10s//#/gc --> 在6~10行的行首加一个#号 删除尾首空格 :%s/^ *//g --> 删除行首的空格 :%s/ *$//g -->删除行尾的空格 删除空行 :%s/^\n//g -->删除空行 把偶数行里面的 aa 阅读全文
posted @ 2021-04-05 09:37 叕叒双又 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: 可是当程序员面对 PPT 总是无从下手,这要怎么办? 那咱就以程序员熟悉的方式写 PPT 呗 这里要给大家打个预防针,以这种方式写 PPT 的门槛低到吓人,只需会基本的 Markdown 语法即可 这是一个基于 CSS 的 3D 幻灯片工具,标星 54K。 Reveal.js 做 PPT 的优点是可 阅读全文
posted @ 2021-04-04 08:25 叕叒双又 阅读(525) 评论(0) 推荐(0) 编辑
摘要: Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find 阅读全文
posted @ 2021-04-04 08:13 叕叒双又 阅读(159) 评论(0) 推荐(0) 编辑
摘要: MSP430F169看门狗程序 看门狗用作定时器,DCO #include <msp430f169.h> int main(void) { WDTCTL = WDT_MDLY_32; // Set Watchdog Timer interval to ~30ms IE1 |= WDTIE; // E 阅读全文
posted @ 2021-03-31 22:26 叕叒双又 阅读(242) 评论(0) 推荐(0) 编辑
摘要: MSP430F169用定时器TimerA实现闪烁灯 初始化 IO接口 时钟设置 检测 处理/中断 传输 保存数据 #include <msp430f169.h> int main(void) { WDTCTL = WDTPW + WDTHOLD; // Stop WDT P6DIR |= 0x01; 阅读全文
posted @ 2021-03-31 17:15 叕叒双又 阅读(463) 评论(0) 推荐(0) 编辑
摘要: MSP430F169的时钟设置 设置使用DCOCLK时钟源 DCOCLK时钟源的配置 DCOCTL = DCO0 + DCO1 + DCO2; // Max DCO BCSCTL1 = RSEL0 + RSEL1 + RSEL2; //设置成功DCOCLK时钟源, 复位后MCLK默认是DCO //t 阅读全文
posted @ 2021-03-31 11:03 叕叒双又 阅读(337) 评论(0) 推荐(0) 编辑
摘要: pragma命令 pragma命令作为C语言中的预编译命令 使用方法: #pragma [option] 内容 #pragma message(“info”) 编译器编译到此处打印相应文本info信息 #pragma error “error” 编译器编译到此处产生错误并打印错误error信息 #p 阅读全文
posted @ 2021-03-30 21:44 叕叒双又 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 就是CCS10.2中的一个中断程序 阅读全文
posted @ 2021-03-30 11:20 叕叒双又 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 健康生活 高效学习的物理基础是身体 身体健康的基础是充足的休息 高效学习的思想基础是想法,必须摒弃自动的消极想法(automatic negative thoughts) 我年纪太大 我不够聪明 我的电脑不够快 多考虑下学习的优势条件,网络上资源众多、数据、教程、博客、github等,不能给自己不进 阅读全文
posted @ 2021-03-28 20:51 叕叒双又 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 结构体中的位结构: 1 #include <stdio.h> 2 3 typedef struct _lar{ 4 unsigned char ucA:1; 5 unsigned char ucB:1; 6 unsigned char ucC:2; 7 unsigned char ucD:4; 8 阅读全文
posted @ 2021-03-27 11:16 叕叒双又 阅读(154) 评论(0) 推荐(0) 编辑
摘要: ###目录 1 msp430f169.h /* */ /* Copyright (c) 2020, Texas Instruments Incorporated */ /* All rights reserved. */ /* */ /* Redistribution and use in sour 阅读全文
posted @ 2021-03-26 20:34 叕叒双又 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 1、源码安装falkon是碰到了: cmake ../ -- The C compiler identification is GNU 10.2.0 -- The CXX compiler identification is GNU 10.2.0 -- Detecting C compiler AB 阅读全文
posted @ 2021-03-12 22:41 叕叒双又 阅读(795) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 118 下一页