Amazon Virtual Private Cloud (Amazon VPC) is a service that lets you launch AWS resources in a logically isolated virtual network that you define. You ...
分类:
其他好文 时间:
2021-06-02 15:44:17
阅读次数:
0
AI算子列表 概述 目前只有部分算子可在一个库中同时运行在MLU220和MLU270平台。也就是用户使用 ./build_cnplugin.sh --mlu270 命令编译生成的 libcnplugin.so 文件可同时在MLU220和MLU270上运行,其余算子只能在MLU270上运行。支持MLU ...
分类:
其他好文 时间:
2021-06-02 13:02:34
阅读次数:
0
二维列表初始化 L=[[0]*n]*m方式初始化 初始化一个 \(m\times n\) 的二维列表,初值全为0 L=[[0]*3]*2 print("初始的:",L) #赋值 for i in range(2): for j in range(3): L[i][j]=i+j print("赋值后: ...
分类:
编程语言 时间:
2021-06-02 12:38:38
阅读次数:
0
一、numpy库 1.numpy简介 多维数组库,创建多维数组很方便,可以替代多维列表 速度比多维列表快 支持向量和矩阵的各种数学运算 所有元素类型必须相同 pip install numpy 安装numpy库 2.numpy创建数组的函数 函数 功能 array(x) 根据列表或元组x创建数组 a ...
分类:
其他好文 时间:
2021-06-02 10:46:26
阅读次数:
0
plt.hist(x, bins=None, range=None, density=None, weights=None, cumulative=False, bottom=None, histtype='bar', align='mid', orientation='vertical', rwi ...
分类:
其他好文 时间:
2021-06-02 10:32:00
阅读次数:
0
for i in range(100, 1000): if str(i) == str(i)[::-1]: print(i) # 输出结果 101 111 121 131 141 151 161 171 181 191 202 212 222 232 242 252 262 272 282 292 ...
分类:
编程语言 时间:
2021-05-25 18:16:06
阅读次数:
0
一、卖票案例 //测试 public class CilentTest { public static void main(String arg[]){ Customer p1=new Children(); System.out.println(p1.calculate(100.00)); Cus ...
分类:
其他好文 时间:
2021-05-24 14:17:47
阅读次数:
0
for i in range(1,10): for j in range(1,i+1): print(i,"*",j,"=",i*j, "\t",end="") else: print("") 1 * 1 = 1 2 * 1 = 2 2 * 2 = 4 3 * 1 = 3 3 * 2 = 6 3 * ...
分类:
编程语言 时间:
2021-05-24 13:38:54
阅读次数:
0
1、公共方法 2、公共方法之总结 3、range()方法 4、enumerate()方法 ...
分类:
编程语言 时间:
2021-05-24 13:36:03
阅读次数:
0
import QtQuick 2.9 // 导入模块 import QtQuick.Window 2.2 import QtQuick.Controls 2.2 // 导入的模块 Window { visible: true width: 640 height: 480 title: qsTr("H ...
分类:
其他好文 时间:
2021-05-24 10:03:58
阅读次数:
0