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

无数据

分类

全部综合其他(259)Weblate(187)Blender(37)KiCad(10)Krita(9)人工智能(8)GIMP(4)笔试面试(3)产品与服务(1)

语言

全部英语(158)中文(简体)(83)中文(繁体)(10)日语(4)fj(1)韩语(1)kor(1)zh(1)

格式

全部PDF文档 PDF(156)其他文档 其他(103)
 
本次搜索耗时 0.422 秒,为您找到相关结果约 259 个.
  • 全部
  • 综合其他
  • Weblate
  • Blender
  • KiCad
  • Krita
  • 人工智能
  • GIMP
  • 笔试面试
  • 产品与服务
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 日语
  • fj
  • 韩语
  • kor
  • zh
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Google C++ Style Guide

    Implicit Conversions Do not define implicit conversions. Use the explicit keyword for conversion operators and single-argument constructors. Implicit conversions allow an object of one type (called the destination type is implicit, particularly if the list has only a single element. 15 Type conversion operators, and constructors that are callable with a single argu- ment, must be marked explicit in the class allow for additional flexibility in e.g., type composition. Copy/move constructors and assignment operators are usually easier to define correctly than alternatives like Clone(), CopyFrom() or Swap(), because
    0 码力 | 83 页 | 238.71 KB | 1 年前
    3
  • pdf文档 Google Python Style Guide

    Global variables Nested/Local/Inner Classes and Functions List Comprehensions Default Iterators and Operators Generators Lambda Functions Conditional Expressions Default Argument Values Properties True/False xrange(5) if x != y for z in xrange(5) if y != z) Default Iterators and Operators link￿ Use default iterators and operators for types that support them, like lists, dic- tionaries, and files. Definition: dictionaries and lists, define default iterators and membership test operators (“in” and “not in”). Pros: The default iterators and operators are simple and efficient. They express the operation directly, without
    0 码力 | 30 页 | 94.81 KB | 1 年前
    3
  • pdf文档 TVM Meetup: Quantization

    Dialect • Design • Operators • Results on Intel Cascade Lake© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Quantized Operators in Framework • New operators like TF quantized_conv2d quantized_conv2d • Underlying calculations are different than FP32 conv2d • Sometimes operators are aggressively fused • TFLite fuses quantized_conv2d, bias, relu and requantize 𝑟𝑒𝑎𝑙_𝑣𝑎𝑙𝑢𝑒 = 𝒔𝒄𝒂𝒍𝒆 Web Services, Inc. or its Affiliates. All rights reserved. How to Support Framework Quantized Operators? Option 1 – Completely add new ops from scratch • New Relay passes and TVM schedules required
    0 码力 | 19 页 | 489.50 KB | 5 月前
    3
  • pdf文档 Blender v4.1 Manual

    Help System Sections Sections User Interface Window System Keymap Interface Controls Tools & Operators Editors 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender’s Directory Layout Appendices Troubleshooting Startup 3D Viewport Graphics Hardware Crashes View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting View Source View Translation Report issue on this
    0 码力 | 6263 页 | 303.71 MB | 1 年前
    3
  • pdf文档 Blender v4.0 Manual

    Help System Sections Sections User Interface Window System Keymap Interface Controls Tools & Operators Editors 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender’s Directory Layout Appendices Troubleshooting Startup 3D Viewport Graphics Hardware Crashes View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting Window System Introduction After starting Blender
    0 码力 | 5195 页 | 301.54 MB | 1 年前
    3
  • pdf文档 Blender v4.0 参考手册(繁体中文版)

    Blender Help System Sections Sections 使⽤者介⾯ Window System Keymap Interface Controls Tools & Operators 編輯器 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Editor Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender's Directory Layout Appendices 障礙排除 Startup 3D Viewport Graphics Hardware Crashes Python View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting Window System Introduction After starting Blender
    0 码力 | 5220 页 | 303.08 MB | 1 年前
    3
  • pdf文档 Blender v3.5 Manual

    Help System Sections Sections User Interface Window System Keymap Interface Controls Tools & Operators Editors 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender’s Directory Layout Appendices Troubleshooting Startup 3D Viewport Graphics Hardware Crashes View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting Window System Introduction After starting Blender
    0 码力 | 4696 页 | 294.17 MB | 1 年前
    3
  • pdf文档 Blender v3.5 参考手册(繁体中文版)

    Blender Help System Sections Sections 使⽤者介⾯ Window System Keymap Interface Controls Tools & Operators 編輯器 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Editor Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender's Directory Layout Appendices 障礙排除 Startup 3D Viewport Graphics Hardware Crashes Python View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting Window System Introduction After starting Blender
    0 码力 | 4704 页 | 295.98 MB | 1 年前
    3
  • pdf文档 Blender v3.6 Manual

    Help System Sections Sections User Interface Window System Keymap Interface Controls Tools & Operators Editors 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender’s Directory Layout Appendices Troubleshooting Startup 3D Viewport Graphics Hardware Crashes View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting Window System Introduction After starting Blender
    0 码力 | 4736 页 | 296.16 MB | 1 年前
    3
  • pdf文档 Blender v3.6 参考手册(繁体中文版)

    Blender Help System Sections Sections 使⽤者介⾯ Window System Keymap Interface Controls Tools & Operators 編輯器 3D Viewport Image Editor UV Editor Compositor Texture Nodes Geometry Node Editor Shader Editor Command Line Scripting & Extending Blender Application Templates Keymap Customization Working Limits Operators Blender's Directory Layout Appendices 障礙排除 Startup 3D Viewport Graphics Hardware Crashes Python View Color Picker Color Ramp Widget Color Palette Curve Widget Search Nodes Tools & Operators Tool System Operators Undo & Redo Annotations Selecting Window System Introduction After starting Blender
    0 码力 | 4744 页 | 297.98 MB | 1 年前
    3
共 259 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 26
前往
页
相关搜索词
GoogleC++StyleGuidePythonTVMMeetupQuantizationBlenderv4Manual参考手册参考手册繁体中文繁体中文v3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩