积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(13)Julia(10)综合其他(9)人工智能(9)系统运维(5)网络与安全(4)Python(2)Tornado(2)Rust(1)存储(1)

语言

全部中文(繁体)(10)英语(8)zh(4)中文(简体)(2)日语(1)kor(1)ro(1)

格式

全部PDF文档 PDF(23)DOC文档 DOC(3)其他文档 其他(1)
 
本次搜索耗时 0.397 秒,为您找到相关结果约 27 个.
  • 全部
  • 后端开发
  • Julia
  • 综合其他
  • 人工智能
  • 系统运维
  • 网络与安全
  • Python
  • Tornado
  • Rust
  • 存储
  • 全部
  • 中文(繁体)
  • 英语
  • zh
  • 中文(简体)
  • 日语
  • kor
  • ro
  • 全部
  • PDF文档 PDF
  • DOC文档 DOC
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Rust 程序设计语言 简体中文版 1.85.0

    1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) in 2.85 secs 这个命令会创建一个可执行文件 target/debug/hello_cargo (在 Windows 上是 targetdebughello_cargo.exe),而不是放在目前目录下。由于默认的构建方法是调试构建 建方法是调试构建 (debug build),Cargo 会将可执行文件放在名为 debug 的目录中。可以通过这个命令运行可 执行文件: $ ./target/debug/hello_cargo # 或者在 Windows 下为 .\target\debug\hello_cargo.exe Hello, world! 19/562Rust 程序设计语言 简体中文版 如果一切顺利,终端上应该会打印出 build 构建了项目,并使用 ./target/debug/hello_cargo 运行了程序,也 可以使用 cargo run 在一个命令中同时编译并运行生成的可执行文件: $ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs Running `target/debug/hello_cargo`
    0 码力 | 562 页 | 3.23 MB | 23 天前
    3
  • pdf文档 TGT服务器的优化

    • Linux open-iscsi • Windows iSCSI 发起者 • 服务器端 • 必须是CurveBS原生支持的平台,因为需要curve原生接口,目前是LinuxiSCSI target服务器 • LINUX LILO • 一般用于输出内核本地块设备 • TCMU • 作为LILO支持用户态的接口 • 如何评价LILO • 输出内核块设备I/O效率高 • 不利于把复杂 不利于把复杂的存储协议代码搬进内核,例如(curve, brpc, c++, protobuf 等) • TCMU多了一层转接,配置过程复杂,业界踩的坑不够多。 • TCMU的用户态代码会受到框架约束,不够灵活。iSCSI target 服务器 • TGT(STGT) • 比较久的历史,原来叫STGT,后来改成TGT • 纯用户态,不与内核绑定 • 支持复杂的存储系统,例如ceph rbd, sheepdog, glfs • connection,在单线程里做event loop多路复用。 • 多个target时,如果挂的设备多,一旦客户端请求量大,就会忙不过来。 • 开源界有尝试修改 • 例如sheepdog的开发者提交过一个patch,但是测试效果不理想,分析 原因,event loop依然是瓶颈对TGT的性能优化 • IO是使用多个epoll 线程,充分发挥多CPU能力 • 当前策略是每个target一个epoll线程,负责Initiator发过来的I/O
    0 码力 | 15 页 | 637.11 KB | 6 月前
    3
  • pdf文档 TVM Meetup: Quantization

    reserved. TVM Overview Framework Graph Mxnet TF …. parsers Relay Graph Target-independent Relay passes Target-optimized graph Target-dependent Relay passes Intel x86 ARM CPU Nvidia GPU ARM GPU Dialect QNN passes Target-independent Relay passes Target-optimized Int8 Relay Graph Intel x86 schedule ARM CPU schedule Nvidia GPU schedule ARM GPU schedule Relay Int8 Graph Target-dependent Relay Dialect QNN passes Target-independent Relay passes Target-optimized Int8 Relay Graph Intel x86 schedule ARM CPU schedule Nvidia GPU schedule ARM GPU schedule Relay Int8 Graph Target-dependent Relay
    0 码力 | 19 页 | 489.50 KB | 5 月前
    3
  • pdf文档 Tornado 6.5 Documentation

    (because the browser will display certificate mismatch warnings that block automated access to the target site). 6.1. User’s guide 35Tornado Documentation, Release 6.5.1 Applications that cannot use TLS arguments of Rule constructor: (matcher, target, [target_kwargs], [name]), the values in square brackets being optional. The default matcher is PathMatches, so (regexp, target) tuples can also be used instead instead of (PathMatches(regexp), target). A common routing target is a RequestHandler subclass, but you can also use lists of rules as a target, which create a nested routing configuration: application = web
    0 码力 | 272 页 | 1.12 MB | 3 月前
    3
  • pdf文档 Bring Your Own Codegen to TVM

    Serialized Subgraph Library Relay Runtime (VM, Graph Runtime, Interpreter) Your Dispatcher Target Device General Devices (CPU/GPU/FPGA) Mark supported operators or subgraphs 1. Implement an operator-level WholeGraphAnnotator(ExprMutator): def __init__(self, target): super(WholeGraphAnnotator, self).__init__() self.target = target self.last_call = True def visit_call(self, if isinstance(param, relay.expr.Var): . param = subgraph_begin(param, self.target) params.append(param) new_call = relay.Call(call.op, params, call.attrs)
    0 码力 | 19 页 | 504.69 KB | 5 月前
    3
  • epub文档 Tornado 6.5 Documentation

    (because the browser will display certificate mismatch warnings that block automated access to the target site). Applications that cannot use TLS and rely on network-level access controls (for example, ReversibleRouter.reverse_url() RuleRouter RuleRouter.add_rules() RuleRouter.process_rule() RuleRouter.get_target_delegate() ReversibleRuleRouter Rule Matcher Matcher.match() Matcher.reverse() AnyMatches HostMatches arguments of Rule constructor: (matcher, target, [target_kwargs], [name]), the values in square brackets being optional. The default matcher is PathMatches, so (regexp, target) tuples can also be used instead
    0 码力 | 437 页 | 405.14 KB | 3 月前
    3
  • pdf文档 Julia 1.11.4

    manner: julia> 1 1 julia> 1234 1234 The default type for an integer literal depends on whether the target system has a 32-bit architecture or a 64-bit architecture: # 32-bit system: julia> typeof(1) system: julia> typeof(1) Int64 The Julia internal variable Sys.WORD_SIZE indicates whether the target system is 32-bit or 64-bit: # 32-bit system: julia> Sys.WORD_SIZE 32 # 64-bit system: julia> the ability to run Julia code natively on GPUs. There is a rich ecosys- tem of Julia packages that target GPUs. The JuliaGPU.org website provides a list of capabilities, supported GPUs, related packages
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Julia 1.11.5 Documentation

    manner: julia> 1 1 julia> 1234 1234 The default type for an integer literal depends on whether the target system has a 32-bit architecture or a 64-bit architecture: # 32-bit system: julia> typeof(1) system: julia> typeof(1) Int64 The Julia internal variable Sys.WORD_SIZE indicates whether the target system is 32-bit or 64-bit: # 32-bit system: julia> Sys.WORD_SIZE 32 # 64-bit system: julia> the ability to run Julia code natively on GPUs. There is a rich ecosys- tem of Julia packages that target GPUs. The JuliaGPU.org website provides a list of capabilities, supported GPUs, related packages
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 Julia 1.11.6 Release Notes

    manner: julia> 1 1 julia> 1234 1234 The default type for an integer literal depends on whether the target system has a 32-bit architecture or a 64-bit architecture: # 32-bit system: julia> typeof(1) system: julia> typeof(1) Int64 The Julia internal variable Sys.WORD_SIZE indicates whether the target system is 32-bit or 64-bit: # 32-bit system: julia> Sys.WORD_SIZE 32 # 64-bit system: julia> the ability to run Julia code natively on GPUs. There is a rich ecosys- tem of Julia packages that target GPUs. The JuliaGPU.org website provides a list of capabilities, supported GPUs, related packages
    0 码力 | 2007 页 | 6.73 MB | 3 月前
    3
  • pdf文档 julia 1.13.0 DEV

    manner: julia> 1 1 julia> 1234 1234 The default type for an integer literal depends on whether the target system has a 32-bit architecture or a 64-bit architecture: # 32-bit system: julia> typeof(1) system: julia> typeof(1) Int64 The Julia internal variable Sys.WORD_SIZE indicates whether the target system is 32-bit or 64-bit: # 32-bit system: julia> Sys.WORD_SIZE 32 # 64-bit system: julia> the ability to run Julia code natively on GPUs. There is a rich ecosys- tem of Julia packages that target GPUs. The JuliaGPU.org website provides a list of capabilities, supported GPUs, related packages
    0 码力 | 2058 页 | 7.45 MB | 3 月前
    3
共 27 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
Rust程序设计程序设计语言简体中文文版中文版简体中文版1.85TGT服务务器服务器优化TVMMeetupQuantizationTornado6.5DocumentationBringYourOwnCodegentoJulia1.11ReleaseNotesjulia1.13DEV
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩