相关文章
taichi 和正常python 速度对比
对比例子 例子1例子二例子3 例子1
import taichi as ti
import time
ti.init(archti.vulkan)ti.func
def is_prime(n: int):result Truefor k in range(2, int(n ** 0.5) 1):if n % k 0:result Falsebreakreturn resultti.kernel
def count_primes(n: int) -> int:coun…
编程日记
2024/12/15 16:57:52
【kubernetes】kubernetes中的Controller
1 什么是Controller?
kubernetes采用了声明式API,与声明式API相对应的是命令式API:
声明式API:用户只需要告诉期望达到的结果,系统自动去完成用户的期望命令式API:用户需要关注过程,通过命令一…
编程日记
2024/12/20 1:44:14
Day 04 python学习笔记
Python数据容器
元组 元组的声明 变量名称(元素1,元素2,元素3,元素4…….) (元素类型可以不同) eg:
tuple_01 ("hello", 1, 2,-20,[11,22,33])
print(type(tuple_01))结果&#x…
编程日记
2024/12/20 0:13:56
angularjs directive(指令用法)将int转化成string
1)将int转化成string
a)angularjs select在ng-model值为int的时候无法实现双向绑定
b)通过directive(指令用法)将int转化成string就能实现双向绑定
<!DOCTYPE html>
<html ng-app"my_app">&l…
编程日记
2024/12/19 3:47:08
2023年4月到7月工作经历
2023年4
有同事说程序崩溃一起分析得结果 unsigned uNum 2; std::string str "abc" uNum; std::cout << str;
结果是c 。如果uNum 很大的话,就可能崩溃。 unsigned uNum 2; //std::string str "abc" uN…
编程日记
2024/12/17 22:22:03
vue-引入使用main.js全局常量
common.js
命名什么都可以,用来定义常量的
定义了之后使用export让此暴露出去
const QRaddress http://localhost:9875export{QRaddress,
}
main.js
//引入刚刚的js
import {QRaddress} from /config/common.js挂载
Vue.prototype.$QRaddress QRaddress使用 …
编程日记
2024/12/20 5:33:56