其他
文章平均质量分 63
abka
abka 阿布卡赫赫
展开
-
目前GPU 超过100 TFLOPS的GPU 之一
浮点运算实际上包括了所有涉及小数的运算,在某类应用软件中常常出现,比整数运算更费时间。现今大部分的处理器中都有浮点运算器。因此每秒浮点运算次数所量测的实际上就是浮点运算器的执行速度。而最常用来测量每秒浮点运算次数的基准程序(benchmark)之一,就是Linpack。一个MFLOPS(megaFLOPS)等于每秒一百万(=10^6)次的浮点运算,一个GFLOPS(gigaFLOPS)等于每秒十亿(=10^9)次的浮点运算,原创 2023-06-05 10:18:18 · 3676 阅读 · 0 评论 -
缓存更新策略概览(Caching Strategies Overview)
缓存是一种用于更快数据检索的数据存储技术。从某种意义上说,它比从其主存储(如数据库)获取数据更快。为了实现这一点,我们通常缓存频繁请求或计算的数据。现在,让我们仔细看看可能需要考虑的不同缓存策略。请记住,每个应用程序的需求都是不同的,您应该据此选择缓存策略。旁路缓存 策略Cache-Aside Strategy(旁路缓存 策略)是使用最广泛的缓存策略之一。该策略背后的主要思想是,仅当应用程序请求对象时,才将对象存储在缓存中。 Cache-Aside(旁路缓存)的基本流程如下:Read-Through C原创 2022-07-06 11:48:01 · 842 阅读 · 0 评论 -
Please run IDA with elevated permissons for local debugging.
Please run IDA with elevated permissons for local debugging.Another solution is to run mac_server and use localhost asthe remote computer name.For more info, please see the 'Mac OS X debugger' help entry (shortcut F1).尝试使用IDA 调试应用报权限不足。使用 如下命令,使用root 启动应用即原创 2022-06-23 14:51:00 · 430 阅读 · 0 评论 -
mqtt demo
1.Installing via EMQX Docker Imagedocker run -d --name emqx -p 1883:1883 -p 8081:8081 -p 8083:8083 -p 8084:8084 -p 8883:8883 -p 18083:18083 emqx/emqx:4.4.12.接下来可以访问:http://localhost:18083/可以在etc/plugins/emqx_dashboard.conf找到用户名密码:adm.原创 2022-03-09 11:56:33 · 1594 阅读 · 0 评论 -
gitbook 安装报错 /usr/local/lib/node_modules/gitbook-cli/node_modules/npm/node_modules/graceful-fs/polyf
macbook上使用npm 安装gitbook$ npm install gitbook-cli -g后,运行gitbook init 报错如下:% gitbook init Installing GitBook 3.2.3(node:53712) [DEP0150] DeprecationWarning: Setting process.config is deprecated. In the future the property will be read-..原创 2022-02-17 14:16:38 · 1651 阅读 · 0 评论