相关文章
【Ubuntu】将多个python文件打包为.so文件
1.为什么要将python打包为.so文件?
保护源码
2.实战例子
a.安装相应的包
pip install cython 验证安装是否成功
cython --version
b.实战的文件目录和内容 hi.py
# This is a sample Python script.# Press ShiftF10 to execute it or replace it with your…
建站知识
2025/1/17 23:44:07
【Tauri】(5):本地运行candle和 qwen 大模型,并测试速度
1,本地运行candle
关于candle项目 https://github.com/huggingface/candle
Hugging Face 使用rust开发的高性能推理框架。 语法简单, 风格与 PyTorch 相似。 CPU 和 Cuda Backend:m1、f16、bf16。 支持 Serverless(CPUÿ…
建站知识
2025/1/17 23:43:59
Go程序是如何编译并运行起来的(图文详解)
Go程序是如何编译的
从hello RdrB1te开始
package main import "fmt" func main() { fmt.Println("hello RdrB1te")
}不实际编译它,只输出它的编译过程:
go build -n简单的编译过程分析:
上面的过程确认了两个…
建站知识
2025/1/17 23:43:54
Linux的进程调度实现
经常被问到进程的调度算法有哪些,什么先进先出、短进程优先、时间片轮转、多级反馈多列等等算法能说一大堆?那具体的,linux内核使用了什么样的算法,且来探究一下。 本文所引用源码基于linux内核2.6.34版本。 目录
调度器类
从 s…
建站知识
2025/1/17 23:43:46
恢复IDEA误删除的git提交,提交被删除,尝试恢复提交
dgqDESKTOP-JRQ5NMD MINGW64 /f/IdeaProjects/workspace/spzx-parent ((8bb112e...))
$ git reflog
8bb112e (HEAD, origin/master, master) HEAD{0}: checkout: moving from master to 8bb112e5ac18dfe4bbd64adfd06363e46b609f21
8bb112e (HEAD, origin/master, …
建站知识
2025/1/17 16:33:54
Centos / RedHat 安装 Redis 、MinIO、Zookeeper、Kafka
Centos 安装Redis7.2
1、下载Redis
Redis 下载页面:https://redis.io/download/
wget https://github.com/redis/redis/archive/7.2.4.tar.gz2、解压并编译
# 1、进入目录
cd /export/servers/tar -xzvf redis-7.2.4# 2、安装依赖
yum install gcc make openssl…
建站知识
2025/1/17 23:38:31