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

无数据

分类

全部后端开发(57)Python(20)C++(18)Julia(18)数据库(12)TiDB(12)云计算&大数据(8)Kubernetes(3)云原生CNCF(3)系统运维(2)

语言

全部英语(53)中文(简体)(14)中文(繁体)(10)西班牙语(1)ro(1)zh(1)

格式

全部PDF文档 PDF(79)PPT文档 PPT(1)
 
本次搜索耗时 0.652 秒,为您找到相关结果约 80 个.
  • 全部
  • 后端开发
  • Python
  • C++
  • Julia
  • 数据库
  • TiDB
  • 云计算&大数据
  • Kubernetes
  • 云原生CNCF
  • 系统运维
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 西班牙语
  • ro
  • zh
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Building a Coroutine-Based Job System Without Standard Library

    all those things are structs, dctors are available for customization. 4344 44 JOB SYSTEM • Scheduler + User defined workload • Optimize for CPU throughput Okay, finally, we are ready to talk about which is spared time frames on the CPU timeline. 4445 COROUTINE JOB SYSTEM isa::await_suspend Scheduler Worker Worker Worker Worker Job Queue Job Queue Job Queue Job coroutine_handle Job::Job coroutine_handle Job::Job final_suspend And voila! This is our system. 4546 isa::await_suspend Scheduler Worker Worker Worker Worker Job Queue Job Queue Job Queue Job coroutine_handle Job::Job
    0 码力 | 120 页 | 2.20 MB | 5 月前
    3
  • pdf文档 Deciphering C++ Coroutines

    () { IOAwaitable awaitable = async_io(scheduler, ...); auto data = co_await awaitable; co_return IoResult :: from_io_data(data ); }42/55 Where does the scheduler come from? Async inner_function async_io(scheduler , ...); /* ... */ } int main () { Scheduler scheduler; spawn_task(scheduler); }42/55 Where does the scheduler come from? Async inner_function (Scheduler& scheduler) { auto auto data = co_await async_io(scheduler , ...); /* ... */ } int main () { Scheduler scheduler; spawn_task(scheduler ); }43/55 Passing data from the outside in template struct Async { /*
    0 码力 | 156 页 | 1.79 MB | 5 月前
    3
  • pdf文档 Taro: Task graph-based Asynchronous Programming Using C++ Coroutine

    What is Task Graph-based Programming System (TGPS) Code A B C D B A C D Scheduler 7Why TGPS 1 Scheduler sched; 2 task_a = sched.emplace([](&){ 3 // Code block A; 4 }); 5 task_b = sched decomposition strategies 8Existing TGPSs on Heterogenous Computing - Challenge A C D B! B" 1 Scheduler sched; 2 task_a = sched.emplace([](&){ 3 // Code block A; 4 }); 5 task_b = sched.emplace([](&){ suspension point behavior co_await std::suspend_always() Symmetric coroutine transfer Implement a scheduler 22A new heterogeneous TGPS using C++ Coroutine? Abstract away C++ Coroutine detailsA new heterogeneous
    0 码力 | 84 页 | 8.82 MB | 5 月前
    3
  • ppt文档 Working with Asynchrony Generically: A Tour of C++ Executors

    STD::EXECUTION Proposes: • A set of concepts that represent: • A handle to a compute resource (aka, scheduler) • A unit of lazy async work (aka, sender) • A completion handler (aka, receiver) • A small, compute_intensive(int); int main() { unifex::static_thread_pool pool{8}; ex::scheduler auto sched = pool.get_scheduler(); ex::sender auto work = ex::when_all( ex::then(ex::schedule(sched), compute_intensive(int); int main() { unifex::static_thread_pool pool{8}; ex::scheduler auto sched = pool.get_scheduler(); ex::sender auto work = ex::when_all( ex::then(ex::schedule(sched),
    0 码力 | 121 页 | 7.73 MB | 5 月前
    3
  • pdf文档 How Meta Made Debugging Async Code Easier with Coroutines and Senders

    return process_file(std::move(file)); }); auto stats = co_await unifex::on( pool.get_scheduler(), unifex::when_all_range(jobs.begin(), jobs.end())); for (std::size_t i = 0; i < stats.size(); return process_file(std::move(file)); }); auto stats = co_await unifex::on( pool.get_scheduler(), unifex::when_all_range(jobs.begin(), jobs.end())); for (std::size_t i = 0; i < stats.size(); return process_file(std::move(file)); }); auto stats = co_await unifex::on( pool.get_scheduler(), unifex::when_all_range(jobs.begin(), jobs.end())); for (std::size_t i = 0; i < stats.size();
    0 码力 | 131 页 | 907.41 KB | 5 月前
    3
  • pdf文档 Interesting Upcoming Features from Low Latency, Parallelism and Concurrency

    offer parallelism, but lack control over execution hardware ("where"). ● P2300 introduces the "scheduler" concept, representing execution contexts, addressing the "where." ● The integration of these proposes extending C++ algorithms to accept a "policy-aware scheduler." ● This scheduler combines an execution policy ("how") and a scheduler ("where"). ● The execute_on function facilitates the creation algorithms for optimal performance. ● Key Features: ● Combining scheduler and policy. ● Minimal, incremental API changes.Combining Scheduler with Policy Why Use Schedulers? ● Schedulers represent execution
    0 码力 | 56 页 | 514.85 KB | 5 月前
    3
  • pdf文档 TiDB v8.5 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3367 14.3.13 TiFlash MinTSO Scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3370 14.3.14 TiFlash · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 6729 17.15.1 Scheduler· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · @okJiang 86 • Rename scatter-range to scatter-range-scheduler in pd-ctl commands #8379 @okJiang • Add conflict detection for grant-hot-leader-scheduler #4903 @lhy1024 • TiFlash • Optimize the execution
    0 码力 | 6730 页 | 111.36 MB | 9 月前
    3
  • pdf文档 TiDB v8.4 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3351 14.3.13 TiFlash MinTSO Scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3354 14.3.14 TiFlash · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 6705 17.12.1 scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · @okJiang 81 • Rename scatter-range to scatter-range-scheduler in pd-ctl commands #8379 @okJiang • Add conflict detection for grant-hot-leader-scheduler #4903 @lhy1024 • TiFlash • Optimize the execution
    0 码力 | 6705 页 | 110.86 MB | 9 月前
    3
  • pdf文档 TiDB v8.3 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3321 14.3.13 TiFlash MinTSO Scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3324 14.3.14 TiFlash · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 6606 17.12.1 scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · indexes #53004 @lance6716 • PD • Support modifying the batch configuration of the evict-leader-scheduler via pd-ctl to accelerate the leader eviction process #8265 @rleungx • Add the store_id monitoring
    0 码力 | 6606 页 | 109.48 MB | 9 月前
    3
  • pdf文档 TiDB v8.2 Documentation

    · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3313 14.3.13 TiFlash MinTSO Scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 3316 14.3.14 TiFlash · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 6549 17.12.1 scheduler · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · the I/O Scheduler of the storage media. • For the high-speed SSD storage, the kernel’s default I/O scheduling operations might cause performance loss. It is recommended to set the I/O Scheduler to first-
    0 码力 | 6549 页 | 108.77 MB | 9 月前
    3
共 80 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 8
前往
页
相关搜索词
BuildingCoroutineBasedJobSystemWithoutStandardLibraryDecipheringC++CoroutinesTaroTaskgraphbasedAsynchronousProgrammingUsingWorkingwithAsynchronyGenericallyTourofExecutorsHowMetaMadeDebuggingAsyncCodeEasierandSendersInterestingUpcomingFeaturesfromLowLatencyParallelismConcurrencyTiDBv8Documentation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩