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

无数据

分类

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

语言

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

格式

全部PDF文档 PDF(113)PPT文档 PPT(2)
 
本次搜索耗时 0.014 秒,为您找到相关结果约 115 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Back to Basics: Pointers

    In this talk, we will discuss the low level foundations of what a raw pointer is--a variable that stores an address. We will then see some examples of raw pointers for creating data structures, passing pointer is a variable that stores the memory address of a specific object type ○ (Let’s look at an example) 13What is a Pointer? (2/8) ● A pointer is a variable that stores the memory address of a 14 ● px is a pointer ● px’s type is int* ○ px can stores addresses of integers.What is a Pointer? (3/8) ● A pointer is a variable that stores the memory address of a specific object type ● 15
    0 码力 | 152 页 | 5.61 MB | 6 月前
    3
  • pdf文档 Techniques to Optimise Multi-threaded Data Building During Game Development

    threads SpinLock is sync primitive - spins rather than sleeping Flat map is associative container Stores items in arrays - keys in sorted array - giving O(logn) access Speaker notesJOB SYSTEM • Schedules tasks • Some regions will take longer to process 16Pre-process data to create read-only world cache Stores static world contents - for quick access - no duplicated effort Beware of memory cost Need to divide area queries - multiple traversals might be required Speaker notesINTRODUCING THE GRID CACHE • Stores static world elements for quick queries • Consider it a sparse 3D array • Process to create: ▪ Partition
    0 码力 | 99 页 | 2.40 MB | 6 月前
    3
  • pdf文档 Can't we just synthesize std::tuple_element from get?

    decltype(get(std::declval())); static constexpr auto stores_reference = std::same_as; using type = std::conditional_t< stores_reference, type_lvalue, std::remove_reference_t declval())); static constexpr auto stores_reference = std::same_as; using type = std::conditional_t< stores_reference, type_mut, std::remove_reference_t tc::temporary>()) ); static constexpr auto stores_reference = !tc::is_temporary; using type = std::conditional_t< stores_reference, type_temporary, tc::remove_temporary_t
    0 码力 | 31 页 | 282.80 KB | 6 月前
    3
  • pdf文档 simd: How to Express Inherent Parallelism Efficiently Via Data-Parallel Types

    Overview Example: Image Processing Programming Models Outlook Summary Data-Parallel Types One variable stores WT values. One operator signifies WT operations (element-wise). W for “width”; depends on type T ResearchMotivation std::simd Overview Example: Image Processing Programming Models Outlook Summary Loads & stores 1 class simd { 2 simd(contiguous_iterator auto it); 3 4 void 5 copy_from(contiguous_iterator simd::size() elements from a contiguous range into the simd elements. • Stores do the reverse. • Consider loads & stores equivalent to dereferencing an iterator in the scalar case. Matthias Kretz
    0 码力 | 160 页 | 8.82 MB | 6 月前
    3
  • pdf文档 Back to Basics - Function Call Resolution

    Saks Scope Regions and Name Lookup  When the compiler encounters the declaration of a name, it stores that name and its attributes in a symbol table.  When the compiler encounters a reference to // stores widget public: string name() const; // looks up string; stores name ~~~ }; string s; // looks up string; stores s widget w; // looks up widget; stores w s
    0 码力 | 44 页 | 1.30 MB | 6 月前
    3
  • pdf文档 generic graph libraries

    atarget Vertex Requires: target) Inner range stores neighbor vertex id as tuple element Inner range stores neighbor vertex id as tuple element Inner range stores neighbor vertex id neighbor vertex id concept. Inner range has a target Vertex Requires: target() Inner range stores neighbor verlexid as Inner range stores tuple element neighbor vertex id vectorcvectorcaize_tyy vecrercvecrorcruplecatze
    0 码力 | 76 页 | 6.59 MB | 6 月前
    3
  • pdf文档 Distributed Ranges: A Model for Building Distributed Data Structures, Algorithms, and Views

    structure stores a number of segments - Access data through corresponding segment - We can build iteration on top of this (although it may be slow)Distributed Data Structures - Data structure stores a number segment_size_; vector> segments_; };Distributed Data Structures - Data structure stores a number of segments - Access data through corresponding segment - We can build iteration on segment_size_; vector> segments_; };Distributed Data Structures - Data structure stores a number of segments - Access data through corresponding segment - We can build iteration on
    0 码力 | 127 页 | 2.06 MB | 6 月前
    3
  • pdf文档 A Relaxed Guide to memory_order_relaxed

    that are only read after all other threads have terminated. ○ At which time there are no racing stores, so the canonical OOTA pattern cannot form. ● Ordering is provided by atomic_thread_fence(). ○ speculatively read bad values for r1 and r2. Thread 1’s bad behavior stores the value read by Thread 2 into y. Thread 2’s bad behavior stores the value read by Thread 1 into x. Formally. each thread’s relaxed
    0 码力 | 32 页 | 278.53 KB | 6 月前
    3
  • pdf文档 C++ Memory Model: from C++11 to C++23

    operations that write to shared memory, whether they are read-modify-write operations or plain stores. The operation is then considered a write-release. Release semantics prevent memory reordering dathskovsky@speedata.io | www.linkedin.com/in/alexdathskovsky std::atomic Performance: Stores ● On X86 atomic stores use xchg, and it is a full barrierAlex Dathskovsky | alex.dathskovsky@speedata.io |
    0 码力 | 112 页 | 5.17 MB | 6 月前
    3
  • pdf文档 Building bridges: Leveraging C++ and ROS for simulators, sensor data and algorithms

    the result Node B Increments message value by 100 and publishes the result Node C Callback A: stores the latest value of message A Callback B: reads message A, computes A + B and publishes the result the result Node B Increments message value by 100 and publishes the result Node C Callback A: stores the latest value of message A Callback B: reads message A, computes A + B and publishes the result the result Node B Increments message value by 100 and publishes the result Node C Callback A: stores the latest value of message A Callback B: reads message A, computes A + B and publishes the result
    0 码力 | 38 页 | 2.17 MB | 6 月前
    3
共 115 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 12
前往
页
相关搜索词
BacktoBasicsPointersTechniquesOptimiseMultithreadedDataBuildingDuringGameDevelopmentCanwejustsynthesizestdtupleelementfromgetsimdHowExpressInherentParallelismEfficientlyViaParallelTypesFunctionCallResolutiongenericgraphlibrariesDistributedRangesModelforStructuresAlgorithmsandViewsRelaxedGuidememoryorderrelaxedC++Memory1123bridgesLeveragingROSsimulatorssensordataalgorithms
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩