积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(267)综合其他(138)云计算&大数据(137)Weblate(90)系统运维(80)Python(73)OpenShift(49)区块链(48)PyWebIO(48)数据库(45)

语言

全部中文(简体)(690)

格式

全部PDF文档 PDF(538)其他文档 其他(126)PPT文档 PPT(25)DOC文档 DOC(1)
 
本次搜索耗时 0.223 秒,为您找到相关结果约 690 个.
  • 全部
  • 后端开发
  • 综合其他
  • 云计算&大数据
  • Weblate
  • 系统运维
  • Python
  • OpenShift
  • 区块链
  • PyWebIO
  • 数据库
  • 全部
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 C++高性能并行编程与优化 - 课件 - 13 C++ STL 容器全解之 vector

    C++ STL 容器全解之 vector by 彭于斌( @archibate ) 往期录播: https://www.bilibili.com/video/BV1fa411r7zp 课程 PPT 和代码: https://github.com/parallel101/course C++ 标准库五大件:容器( container ) C++ 标准库五大件:迭代器( iterator STL 侯捷 STL vector 容器 vector 容器:构造函数 • vector 的功能是长度可变的数组,他里面的数据 存储在堆上。 • vector 是一个模板类,第一个模板参数是数组里 元素的类型。 • 例如,声明一个元素是 int 类型的动态数组 a : • vector a; vector 容器:构造函数和 size • vector 可以在构造时指定初始长度。 explicit vector(size_t n); • 例如,要创建一个长度为 4 的 int 型数组 : • vector a(4); • 之后可以通过 a.size() 获得数组的长度。 • 比如右边这段代码会得到 4 。 • size_t size() const noexcept; vector 容器: operator[] • 要访问 vector 里的元素,只需用
    0 码力 | 90 页 | 4.93 MB | 1 年前
    3
  • pdf文档 Julia 中文文档

    type parameters? . . . . . . . . . . . . . . . . . . . . . . . . 363 Why does Julia use native machine integer arithmetic? . . . . . . . . . . . . . . . . . . . . . . 364 在远程执行中 UndefVarError 的可能原因有哪些? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1219 93.4 Sanitizer support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1220 General considerations -O -- foo.jl arg1 arg2.. 有关编写 Julia 脚本的更多信息,请参阅 脚本。 使用选项 -p 或者 --machine-file 可以在并行模式下启动 Julia。-p n 会启动额外的 n 个 worker,使用 --machine-file file 会为 file 文件中的每一行启动一个 worker。定义在 file 中的机器必须能够通 过一个不需要密码的 ssh
    0 码力 | 1238 页 | 4.59 MB | 1 年前
    3
  • pdf文档 机器学习课程-温州大学-09机器学习-支持向量机

    01 支持向量机概述 02 线性可分支持向量机 03 线性支持向量机 04 线性不可分支持向量机 4 1.支持向量机概述 支 持 向 量 机 ( Support Vector Machine, SVM ) 是 一 类 按 监 督 学 习 ( supervised learning)方式对数据进行二元分类的广义线性 分类器(generalized linear classifier),其决 况。软间隔,就是允许一定量的样本分类错误。 软间隔 硬间隔 线性可分 线性不可分 6 支持向量 1.支持向量机概述 算法思想 找到集合边缘上的若干数据(称为 支持向量(Support Vector)) ,用这些点找出一个平面(称为决 策面),使得支持向量到该平面的 距离最大。 距离 7 1.支持向量机概述 背景知识 任意超平面可以用下面这个线性方程来描述: ?T 辑回归 或不带核函数的支持向量机。 28 参考文献 [1] CORTES C, VAPNIK V. Support-vector networks[J]. Machine learning, 1995, 20(3): 273–297. [2] Andrew Ng. Machine Learning[EB/OL]. StanfordUniversity,2014.https://www
    0 码力 | 29 页 | 1.51 MB | 1 年前
    3
  • pdf文档 Blender v4.1 Manual

    Version/Revision Milestones About Free Software and the GPL The Blender Community Independent Sites Getting Support Development Blender Chat Other Useful Links View Source View Translation Report issue on this page high-quality 3D architecture, enabling fast and efficient creation workflow. It boasts active community support. See blender.org/community for an extensive list of sites. It has a small executable, which is optionally architecture, unfinished features and a non- standard way of providing the GUI, the enthusiastic support from the user community and customers who had purchased Blender Publisher in the past, meant that
    0 码力 | 6263 页 | 303.71 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.1.0 中文文档

    LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import java.util.HashSet; import java.util.Set; public class Channel2Server LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.fisco.bcos.channel.client.Service; import org.fisco.bcos "jinny" 80000 bool isParallelPrecompiled() override { return true; } // 根据并行接口,从参数中取出互斥对象,返回互斥对象 std::vector getParallelTag(bytesConstRef param) override { (3)编译,重启节点 手动编译节点的方法,参考:这里 编译之后,关
    0 码力 | 1058 页 | 740.85 KB | 1 年前
    3
  • pdf文档 MATLAB与Spark/Hadoop相集成:实现大数据的处理和价值挖

    7 tall array Single Machine Memory tall arrays ▪ 自动将数据分解成适合内存的小 “块”(chunk) ▪ 计算过程中,一次处理一个“块”(chunk) 的数据 ▪ 对tall数组(tall array)的编程方式与MATLAB 标准数组 编程方式一致 Single Machine Memory Process 8 ▪ MATLAB本地多核并行计算计 Analysis Classification (fitcdiscr) – Partition for Cross Validation (cvpartition) – Linear Support Vector Machine (SVM) Classification (fitclinear) – Naïve Bayes Classification (fitcnb) – Random Forest Ensemble Ensemble Classification (TreeBagger) – Lasso Linear Regression (lasso) – Linear Support Vector Machine (SVM) Regression (fitrlinear) – Single Classification Decision Tree (fitctree) – Linear Classification
    0 码力 | 17 页 | 1.64 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.3.0 中文文档

    LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import java.util.HashSet; import java.util.Set; public class Channel2Server LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.fisco.bcos.channel.client.Service; import org.fisco.bcos "jinny" 80000 bool isParallelPrecompiled() override { return true; } // 根据并行接口,从参数中取出互斥对象,返回互斥对象 std::vector getParallelTag(bytesConstRef param) override { // 获取被调用的函数名(func)和参数(data) uint32_t
    0 码力 | 1227 页 | 10.79 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.2.0 中文文档

    LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import java.util.HashSet; import java.util.Set; public class Channel2Server LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.fisco.bcos.channel.client.Service; import org.fisco.bcos "jinny" 80000 bool isParallelPrecompiled() override { return true; } // 根据并行接口,从参数中取出互斥对象,返回互斥对象 std::vector getParallelTag(bytesConstRef param) override { // 获取被调用的函数名(func)和参数(data) uint32_t
    0 码力 | 1156 页 | 10.03 MB | 1 年前
    3
  • pdf文档 openEuler 21.03 技术白皮书

    was initiated for diversified computing architectures. On March 30, 2020, the first Long Term Support (LTS) version openEuler 20.03 was released, which was a new Linux distribution with independent Paper Kernel Innovations Physical Machines To install openEuler on a physical machine, check that the physical machine meets the compatibility and minimum hardware requirements. For details about inspection: strengthens protection against Return Oriented Programming (ROP) attacks. 15. ILP32 support: The Kunpeng 920 ARM64 environment supports 32-bit applications. 16. Memory System Resource Partitioning
    0 码力 | 21 页 | 948.66 KB | 1 年前
    3
  • epub文档 FISCO BCOS 2.4.0 中文文档

    LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import java.util.HashSet; import java.util.Set; public class Channel2Server LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.fisco.bcos.channel.client.Service; import org.fisco.bcos "jinny" 80000 bool isParallelPrecompiled() override { return true; } // 根据并行接口,从参数中取出互斥对象,返回互斥对象 std::vector getParallelTag(bytesConstRef param) override { // 获取被调用的函数名(func)和参数(data) uint32_t
    0 码力 | 1314 页 | 11.21 MB | 1 年前
    3
共 690 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 69
前往
页
相关搜索词
C++高性性能高性能并行编程优化课件13Julia中文文档机器学习课程温州大学09支持向量Blenderv4ManualFISCOBCOS2.1MATLABSparkHadoop集成实现数据处理价值2.32.2openEuler21.03技术白皮皮书白皮书2.4
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩