https://developer.nvidia.com/cuda-gpus
GPU的性能对比,可以直接看这个表[......]
convert image.png -fill "#333333" -colorize 100 image_output.png
[......]
可以用分支图替代,加了个配色
@startuml
skinparam ActivityDiamondBackgroundColor greenyellow
switch (查询场景)
case (OLTP)
: MySQL;
case (OLAP)
if (实时要求高) then (是)
: 同步至\nDoris\n在线SQL查询;
else (否)
: 同步至Hive\nHive或Presto查询;
endi[......]
常用公式
词汇 - 提高图像质量
AUDIO_FILE="./music.ogg"
AUDIO_DURATION=$(ffprobe -i $AUDIO_FILE -show_format -v quiet | sed -n 's/duration=//p')
AUDIO_DURATION=$(echo ${AUDIO_DURATION%.*})
最后一个行是去掉小数点,如果不用可以不去。[......]