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

无数据

分类

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

语言

全部英语(156)中文(简体)(2)英语(1)

格式

全部PDF文档 PDF(157)PPT文档 PPT(2)
 
本次搜索耗时 0.018 秒,为您找到相关结果约 159 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Distributed Ranges: A Model for Building Distributed Data Structures, Algorithms, and Views

    0 码力 | 127 页 | 2.06 MB | 5 月前
    3
  • pdf文档 C++ Memory Model: from C++11 to C++23

    Memory Model C++11 – C++23About Me: alex.dathskovsky@speedata.io www.linkedin.com/in/alexdathskovsky https://www.cppnext.comAlex Dathskovsky | alex.dathskovsky@speedata.io | www.linkedin.com/in/a
    0 码力 | 112 页 | 5.17 MB | 5 月前
    3
  • pdf文档 Taro: Task graph-based Asynchronous Programming Using C++ Coroutine

    Agenda • Understand the motivation behind Taro • Learn to use the Taro C++ programming model • Dive into the Taro’s coroutine-aware scheduling algorithm • Evaluate Taro on microbenchmarks and a real-world Conclusion 2Agenda • Understand the motivation behind Taro • Learn to use the Taro C++ programming model • Dive into the Taro’s coroutine-aware scheduling algorithm • Evaluate Taro on microbenchmarks and details Taro!Agenda • Understand the motivation behind Taro • Learn to use the Taro C++ programming model • Dive into the Taro’s coroutine-aware scheduling algorithm • Evaluate Taro on microbenchmarks and
    0 码力 | 84 页 | 8.82 MB | 5 月前
    3
  • pdf文档 Reusable Code & Reusable Data Structures

    3RUNTIME POLYMORPHISM struct object_t { template object_t(T t) : self_(make_unique<model>(move(t)) {} // + move, copy & assignment 1 2 3 4 5 friend void draw(object_t const& o) virtual void draw_() = 0; 11 }; 12 13 template 14 struct model final : concept_t { 15 model(T t) : data_(move(t)) {} 16 void draw_() final { 17 draw(data_); 18 } 19 55RUNTIME POLYMORPHISM struct object_t { template object_t(T t) : self_(make_unique<model>(move(t)) {} // + move, copy & assignment 1 2 3 4 5 friend void draw(object_t const& o)
    0 码力 | 132 页 | 14.20 MB | 5 月前
    3
  • pdf文档 Back to Basics Casting

    has_leaves = true;}; struct car {int model_year = 1982; }; void prune(tree* t) { t->has_leaves = false; } void drive(const car* c ) { printf("Driving %d\r\n", c->model_year); } int main() { const tree to float f = mustang.model_year; //implicit conversion from int to float drive((car*)&f); // driving a float return 0; }struct tree { bool has_leaves = true;}; struct car {int model_year = 1982; }; void prune(tree* t) { t->has_leaves = false; } void drive(const car* c ) { printf("Driving %d\r\n", c->model_year); } int main() { const tree oak; car mustang; drive(&mustang); //normal function call prune((tree*)&oak);
    0 码力 | 117 页 | 1.57 MB | 5 月前
    3
  • pdf文档 Design Patterns: Facts and Misconceptions

    )> { public: template< typename F > function( F&& f ) : pimpl_( std::make_unique<Model>( std::forward(f) ) ) {} 74 8. …namespace std { R operator()( )> { public: template< typename F > function( F&& f ) : pimpl_( std::make_unique<Model>( std::forward(f) ) ) {} 75 8. …namespace std { R operator()( )> { public: template< typename F > function( F&& f ) : pimpl_( std::make_unique<Model>( std::forward(f) ) ) {} 76 8. …function& operator=( const function&
    0 码力 | 88 页 | 17.31 MB | 5 月前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    Memory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 Atomic Operation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77 Consistency Model . . . Target: x86_64-apple-darwin18.6.0 9 1.1 Deprecated Features CHAPTER 01: TOWARDS MODERN C++ Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin 1.1 Deprecated Features Before a thread; notify_all() is to notify all threads. Below is an example of a producer and consumer model: #include #include #include #include #include #include
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 Leveraging the Power of C++ for Efficient Machine Learning on Embedded Devices

    pre-trained model ◮ CNN architecture created by Google ◮ Trained on 1000 classes ◮ Accepts 224x224-pixel images, with 3 color channels per pixel (RGB) ◮ Labels are stored separate from the model: ◮ labels (11KB) ◮ mobilenet v1 1.0 224 quant.tflite (4.1MB) 17 / 50Image classification algorithm 1. Load model and labels 2. Build interpreter 3. Allocate input and output tensors 4. Read image 5. Resize image / 501. Load model and labels 1 // defined and properly initialized elsewhere: 2 // const char *model_path; 3 // const char *labels_path; 4 5 std::unique_ptr model{ 6 tflite::
    0 码力 | 51 页 | 1.78 MB | 5 月前
    3
  • pdf文档 Heterogeneous Modern C++ with SYCL 2020

    management models; buffers and USM - here we will focus on buffers The buffers memory management model separates the storage and access of data and automatically handles data dependencies USM provides /* handle SYCL exception */ } } 29 SYCL 2020 Hello WorldIn the buffers memory management model there are buffers and accessors A buffer manage data across the host and one or more devices be run by that vendor’s SYCL implementation 49Memory Spaces 50SYCL Memory Model ● Initially based on OpenCL Memory Model ● Higher level of abstraction ● Buffers & Accessors ○ Buffers ■ Storage
    0 码力 | 114 页 | 7.94 MB | 5 月前
    3
  • pdf文档 Template-Less Meta-Programming

    TMP ( - Value-based TMP ( *, *, *)*) - - (Circle-lang meta model*) (Circle-lang meta model*) - - (comptime) (comptime) - ... - ... * - this_talk * - this_talk C++ C++ 58Circle-lang - Circle-lang - Member packs - Member packs - Circle-lang meta model (Metaprogramming) Circle-lang meta model (Metaprogramming) Reflection Reflection ...... https://www.circle-lang.org Benchmarks Circle-lang meta model is the fastest to compile all around Circle-lang meta model is the fastest to compile all around 56 / 58Benchmarks Benchmarks Circle-lang meta model is the fastest to compile
    0 码力 | 130 页 | 5.79 MB | 5 月前
    3
共 159 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 16
前往
页
相关搜索词
DistributedRangesModelforBuildingDataStructuresAlgorithmsandViewsC++Memoryfrom11to23TaroTaskgraphbasedAsynchronousProgrammingUsingCoroutineReusableCodeBackBasicsCastingDesignPatternsFactsMisconceptionsModernTutorial141720OntheFlyLeveragingPowerofEfficientMachineLearningonEmbeddedDevicesHeterogeneouswithSYCL2020TemplateLessMeta
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩