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

无数据

分类

全部后端开发(19)Julia(10)C++(6)Python(3)Django(3)数据库(1)综合其他(1)人工智能(1)

语言

全部英语(10)中文(繁体)(10)英语(1)

格式

全部PDF文档 PDF(18)其他文档 其他(2)PPT文档 PPT(1)
 
本次搜索耗时 0.041 秒,为您找到相关结果约 21 个.
  • 全部
  • 后端开发
  • Julia
  • C++
  • Python
  • Django
  • 数据库
  • 综合其他
  • 人工智能
  • 全部
  • 英语
  • 中文(繁体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Spanny 2: Rise of std::mdspan

    clear grey pixels are unknown 42github.com/griswaldbrooks/spanny2 occupancy grid 43 struct occupancy_grid_t { occupancy_grid_t(std::dextents shape, unsigned char value grid_{data_.data(), shape} {} private: std::vector data_; std::mdspan> grid_; };github.com/griswaldbrooks/spanny2 occupancy grid 44 struct occupancy_grid_t { occupancy_grid_t(std::dextents shape, unsigned char value = 127) : data_(shape.extent(0) * shape.extent(1), value), grid_{data_.data(),
    0 码力 | 117 页 | 2.02 MB | 5 月前
    3
  • pdf文档 Techniques to Optimise Multi-threaded Data Building During Game Development

    notesINTRODUCING THE GRID CACHE • Stores static world elements for quick queries • Consider it a sparse 3D array • Process to create: ▪ Partition 3D space into cube grid ▪ Distribute items into grid cells ▪ Store things - but nothing like this Can think of it as sparse 3D array Partition 3d space into fixed sized grid Put from those locations items into cells Store non-empty cells in a map - using array index as key each axis float grid_extent; // Grid extent from origin float cell_size; // Size of cell uint32_t CalculateAxisOffset(float value) { value = floor(clamp(value, -grid_extent, grid_extent)); return
    0 码力 | 99 页 | 2.40 MB | 5 月前
    3
  • ppt文档 Bringing Existing Code to CUDA Using constexpr and std::pmr

    float* x; float* y; // … int block_size = 256; int grid_size = (N + block_size - 1) / block_size; add_gpu<<<grid_size, block_size>>>(N, x, y); // … } Ok, about the kernel parameters += stride) y[i] = x[i] + y[i]; } TEST_CASE("cppcon-1", "[CUDA]") { // … add_gpu<<<grid_size, block_size>>>(N, x, y); // … } Ok, about the kernel parameters 10 |Memory“In a typical PC
    0 码力 | 51 页 | 3.68 MB | 5 月前
    3
  • pdf文档 Trends Artificial Intelligence

    increasing – and its progress is increasingly bottlenecked not by data or algorithms, but by the grid and strains related to demand. While AI presently places considerable demands on the energy sector hardware efficiency are critical to offset the strain of increasing AI and internet usage on our grid. So far, though, they have not been enough. This trend aligns with Jevons Paradox, first proposed This is driving new focus on expanding energy production capacity – and new questions about the grid’s ability to manage. Yet again, we see this as one of the perpetual ‘a-ha’s’ of technology: costs
    0 码力 | 340 页 | 12.14 MB | 4 月前
    3
  • pdf文档 Back to Basics: Pointers

    again visualize memory ● This time I’m going to show a grid ○ Still a linear array of addresses as indicated by the arrows. ○ I am using a grid so I can fit more memory on the screen. *Assume 1 byte
    0 码力 | 152 页 | 5.61 MB | 5 月前
    3
  • pdf文档 Real-Time Unified Data Layers: A New Era for Scalable Analytics, Search, and AI

    improve Overall Equipment Effectiveness (OEE). Energy companies must balance EV charger loads and manage grid performance in real time. Banks need to analyze audit logs from their website and application in real
    0 码力 | 10 页 | 2.82 MB | 5 月前
    3
  • pdf文档 Back to Basics: Concurrency

    shared resource (again, they cannot cross the intersection) 134Concurrency Caveat #3 | Deadlock ● Grid lock in a traffic jam ○ Each car prevents others from going through a shared resource (the intersection)
    0 码力 | 141 页 | 6.02 MB | 5 月前
    3
  • pdf文档 Heterogeneous Modern C++ with SYCL 2020

    Kernel invocations: work-items ● Work-items collected into work-groups, forming a 1-3 NDimensional grid of work-items ● Work-items can only synchronize within work-group ● Work-items collected into 1D
    0 码力 | 114 页 | 7.94 MB | 5 月前
    3
  • pdf文档 Django CMS 3.0.x Documentation

    Other Plugins • djangocms-link • djangocms-snippet • djangocms-style • djangocms-column • djangocms-grid • djangocms-oembed • djangocms-table File and image handling • Django Filer for file and image management
    0 码力 | 180 页 | 1.56 MB | 6 月前
    3
  • epub文档 Django CMS 3.11.10 Documentation

    "djangocms_frontend.contrib.collapse", "djangocms_frontend.contrib.content", "djangocms_frontend.contrib.grid", "djangocms_frontend.contrib.image", "djangocms_frontend.contrib.jumbotron", "djangocms_frontend
    0 码力 | 493 页 | 1.44 MB | 6 月前
    0.03
共 21 条
  • 1
  • 2
  • 3
前往
页
相关搜索词
SpannyRiseofstdmdspanTechniquestoOptimiseMultithreadedDataBuildingDuringGameDevelopmentBringingExistingCodeCUDAUsingconstexprandpmrTrendsArtificialIntelligenceBackBasicsPointersRealTimeUnifiedLayersNewEraforScalableAnalyticsSearchAIConcurrencyHeterogeneousModernC++withSYCL2020DjangoCMS3.0Documentationhttpsdocsdjangocmsorgdownloadsenlatest
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩