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

无数据

分类

全部后端开发(180)C++(180)Conan(74)

语言

全部英语(178)中文(简体)(1)英语(1)

格式

全部PDF文档 PDF(176)PPT文档 PPT(4)
 
本次搜索耗时 0.018 秒,为您找到相关结果约 180 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Remote Execution Caching Compiler (RECC)

    Remote Execution Caching Compiler (RECC) CppCon 2024 September 19, 2024 Shivam Bairoliya Software Engineer© 2024 Bloomberg Finance L.P. All rights reserved. What is RECC? ● Remote Execution Caching source build tool that wraps compiler commands and optionally forwards them to a remote build execution service ○ Encompasses the capabilities of both ccache and distcc ○ Supports remote linking and CC) ○ Supports multiple operating systems (Linux, macOS, Solaris) ● Compatible with any remote execution API server supported by Bazel ○ Single Host Server/Proxy: BuildBox-CASD ○ Distributed Server:
    0 码力 | 6 页 | 2.03 MB | 6 月前
    3
  • pdf文档 simd: How to Express Inherent Parallelism Efficiently Via Data-Parallel Types

    r = pixel.g = pixel.b = gray; 5 } 6 } or 1 void to_gray(Image& img) { 2 std::for_each (std::execution::unseq, img.begin(), img.end(), [](Pixel& pixel) { 3 const auto gray = (pixel.r * 11 + pixel.g r = pixel.g = pixel.b = gray; 5 } 6 } or 1 void to_gray(Image& img) { 2 std::for_each (std::execution::unseq, img.begin(), img.end(), [](Pixel& pixel) { 3 const auto gray = (pixel.r * 11 + pixel.g over an image, producing vectorized access to pixels 2 Operations on vectorized pixels • Ideally, the first part is generalized to: Iteration over a range, providing vectorized access to its elements.
    0 码力 | 160 页 | 8.82 MB | 6 月前
    3
  • pdf文档 Performance Engineering: Being Friendly to Your Hardware

    ROM Cache L1I • ABI registers implement a SW contract • They do not correspond to the actual execution • Conversion of control flow to a variant of data flow • Really complex • Some operations end of operations are equalExecution 54 Branching Fetch Decode Queue Allocation Scheduling Execution ROM Cache L1I LSQ • Multiple specialized functional units • Performs the actual (eventually) • Latency vs throughputRetirement 55 Branching Fetch Decode Queue Allocation Scheduling Execution ROM Cache L1I L1D LSQ Retirement • All operations until now are speculative • Except some
    0 码力 | 111 页 | 2.23 MB | 6 月前
    3
  • ppt文档 C++20: An (Almost) Complete Overview

    the caller, and suspends the coroutine, subsequently calling the coroutine again continues its execution  co_return: returns from a coroutine (just return is not allowed)16 Coroutines  What are coroutines Can be used with condition_variable_any  std::stop_source  Used to request a thread to stop execution  Stop requests are visible to all associated stop_sources and stop_tokens  std::stop_callback numbers  lerp() to do linear interpolation  New unsequenced_policy (execution::unseq): algorithm is allowed to be vectorized84 Agenda  Modules  Ranges  Coroutines  Concepts  Lambda Expression
    0 码力 | 85 页 | 512.18 KB | 6 月前
    3
  • pdf文档 Code Generation from Unified Robot Description Format for Accelerated Robotics

    neighborlookup and forward kinematics, and collision detection Motivation Motions in Microseconds via Vectorized Sampling-Based Planning Wil Thomasont, Zachary Kingstonit, and Lydia E. Kavraki Performance improvements Description Format (URDF) files and generates optimized code Setup data structure to optimize SIMD execution Skip unneeded computations like combiningfixed joints, unrolling loops Motivation Software written
    0 码力 | 93 页 | 9.29 MB | 6 月前
    3
  • pdf文档 Vectorizing a CFD Code With std::simd Supplemented by Transparent Loading and Storing

    deduction to load and store std::simd and scalar variables ▪ syntactically equalize scalar and vectorized code The talk: ▪ share experience with vectorization using std::simd ▪ introduce the SIMD_ACCESS v : (0, size * size) for c : (i|j|k + 1, size) compute(point(...), point(...)); Loop to be vectorized • invariant nested loop length • sufficiently large loop length (size maybe rather small) Main version → Loaded types deduced by SIMD index type, deduction propagates forward to operators Vectorized loop body with overloaded operator[](simd_index): ▪ Same code for scalar and vector version ▪
    0 码力 | 58 页 | 2.68 MB | 6 月前
    3
  • pdf文档 Data Is All You Need for Fusion

    k_inc); macro_kernel_k18(a_buffer,b_buffer,m_inc,n_inc,k_inc,&C(m_count,n_count),LDC); } 2 Tiled Vectorized 4int x = 4; callee(x); // do work } #include #include #include "benchmark k_inc); macro_kernel_k18(a_buffer,b_buffer,m_inc,n_inc,k_inc,&C(m_count,n_count),LDC); } 2 Tiled Vectorized Parallelized 4int x = 4; callee(x); // do work } #include #include #include k_inc); macro_kernel_k18(a_buffer,b_buffer,m_inc,n_inc,k_inc,&C(m_count,n_count),LDC); } 2 Tiled Vectorized Parallelized Cache Blocked 4int x = 4; callee(x); // do work } #include #include
    0 码力 | 151 页 | 9.90 MB | 6 月前
    3
  • pdf文档 The Shapes of Multidimensional Arrays

    shape[distributed(4)]()[3][5]> std::ndarrayvectorized(5)]> std::ndarrayvectorized(5)]> Operations on shapes std::ndarray
    0 码力 | 62 页 | 1.38 MB | 6 月前
    3
  • pdf文档 Building bridges: Leveraging C++ and ROS for simulators, sensor data and algorithms

    this talk, our primary discussion will be towards achieving data determinism via: • Deterministic execution2 will always run computations in the same order. • Deterministic communication2 is when, for a message runtime • All operations are finite and bounded • All potentially blocking calls have timeouts • Execution is deterministic and monitored • Memory usage • Allocations during runtime • STL constructs with std::exception • Blocking calls, such as fprintf, fwrite • Non-deterministic execution • Controlling memory usage • Controlling task execution Deterministic resource usage and runtime is necessary for a safety-critical
    0 码力 | 38 页 | 2.17 MB | 6 月前
    3
  • pdf文档 Just-in-Time Compilation - J F Bastien - CppCon 2020

    JiT compilation includes any translation performed dynamically, after a program has started execution. We examine the motivation behind JiT compilation and constraints imposed on JiT compilation systems JiT compilation includes any translation performed dynamically, after a program has started execution. We examine the motivation behind JiT compilation and constraints imposed on JiT compilation systems JiT compilation includes any translation performed dynamically, after a program has started execution. We examine the motivation behind JiT compilation and constraints imposed on JiT compilation systems
    0 码力 | 111 页 | 3.98 MB | 6 月前
    3
共 180 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 18
前往
页
相关搜索词
RemoteExecutionCachingCompilerRECCsimdHowtoExpressInherentParallelismEfficientlyViaDataParallelTypesPerformanceEngineeringBeingFriendlyYourHardwareC++20AnAlmostCompleteOverviewCodeGenerationfromUnifiedRobotDescriptionFormatforAcceleratedRoboticsVectorizingCFDWithstdSupplementedbyTransparentLoadingandStoringIsAllYouNeedFusionTheShapesofMultidimensionalArraysBuildingbridgesLeveragingROSsimulatorssensordataalgorithmsJustinTimeCompilationBastienCppCon2020
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩