读苹果文档时的笔记,给自己看。primary goal of Metal is to minimize the CPU overhead incurred by executing GPU workloads. 用在两个方面: graphicsdata-parallel computationMetal App 不能在后台运行,否则会被终止。 Command Organization and...
原创 2021-05-30 19:26:15
1433阅读
本文主要用于学习,资料为官网内容,文中最后附有链接。部分没有进行译出。此为初稿。 通过对官网该片文章的走读,学习了RDD的概念及
翻译 2023-01-31 09:29:52
126阅读
环境搭建很简单,安装一个vs2012,然后将C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin添加到环境变量中然后再去windows官方网站上下载一个sdkhttps://developer.microsoft.com/zh-cn/windows/downloads/sdk-archive可以根据自己电脑的os版本选择,我是w...
转载 2021-06-29 11:02:02
346阅读
环境搭建很简单,安装一个vs2012,然后将C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin添加到环境变量中然后再去windows官方网站上下载一个sdkhttps://developer.microsoft.com/zh-cn/windows/downloads/sdk-archive可以根据自己电脑的os版本选择,我是w...
原创 2022-02-28 10:43:29
129阅读
VoiceOver是苹果“读屏”技术的名称,属于辅助功能的一部分。VoiceOver可以读出屏幕上的信息,以
转载 2016-05-12 09:27:00
76阅读
2评论
https://msdn.microsoft.com/en-us/library/ms173152.aspx Polymorphism is often referred to as the third pillar of object-oriented programming, after enc
转载 2016-03-14 14:06:00
57阅读
2评论
LES_ProgrammingGuide/WorkingwithEAGLContexts/WorkingwithEAGLContexts.htmlDrawing to Other Rendering Destinations
原创 2023-05-23 07:30:50
161阅读
学习的资料是官网的Programming Guide 首先是GraphX的简介 GraphX是Spark中专门负责图和图并行计算的组件。 GraphX通过引入了图形概念来继承了Spark RDD:一个连接节点和边的有向图 为了支持图计算,GraphX引入了一些算子: subgraph, joinVe
转载 2018-01-26 18:22:00
44阅读
Structured Streaming编程 Programming GuideOverviewQuick ExampleProgramming ModelBasic ConceptsHandling Event-time and Late DataFault Tolerance SemanticsAPI using Datasets and DataFramesReading Metrics I
转载 2021-04-02 10:58:52
330阅读
2评论
https://msdn.microsoft.com/en-us/library/ms173156.aspx An interface contains definitions for a group of related functionalities that a class or a stru
转载 2016-03-10 09:42:00
60阅读
2评论
Quartz 2D Programming Guide Quartz 2D Programming Guide 官方文档: Quartz 2D Programming Guide 译文: Quartz 2D编程指南(1) - 概览 Quartz 2D编程指南(2) - 图形上下文(Graphics
转载 2016-09-05 23:32:00
217阅读
2评论
1.c++程序编译过程。包括两个阶段,compiler和linker。第一个阶段compiler是把c++文件编译成obj文件。第二个阶段是linker把多个obj文件和lib文件生成可执行文件。明白这个过程,对调试程序很有帮助,能够帮你确认问题发生在哪个阶段。比如提示syntax error,那就 ...
转载 2021-09-30 13:34:00
194阅读
2评论
使用GPU的好处在类似的价格和功率范围内,图形处理单元(GPU)提供的指令吞吐量和内存带宽比CPU高得多。许多应用程序利用这
原创 2022-07-26 10:24:58
161阅读
https://msdn.microsoft.com/en-us//library/bb383977.aspx private static void Dump(this ArraySegment<byte> segment) { string output = string.Join(",", s
转载 2016-05-04 09:19:00
95阅读
1.背景介绍Rust 是一种现代系统编程语言,由 Mozilla Research 的 Graydon Hoare 在 2010 年设计。Rust 的目标是提供安全的、高
By Joel Yliluoma, September 2007; last update in June 2016 for OpenMP 4.5 Abstract This document attempts to give a quick introduction to OpenMP (as of version 4.5), a simple C/C++/Fortran compiler ex
转载 2020-04-21 14:43:00
285阅读
2评论
【补充说明:部分细节有待验证】iPhone自带的库:quartzcore animationUIKit1. UIKit所有对图形的调用都封装在UIView的实例中;1.1 画图:UIView drawRect第一次画图时,将全图绘制,以后根据实际情况绘制。有以下行为会触发view更新:(1)其他的v...
转载 2013-01-08 12:24:00
79阅读
2评论
Create,
转载 2012-02-06 13:17:00
181阅读
2评论
(3)Adopting the CAAction ProtocolTheCAActionprotocol defines how action objects are invoked. Classes that implement theCAActionprotocol have a method with the signaturerunActionForKey:object:arguments:.When the action object receives therunActionForKey:object:arguments:message it is passed the actio
转载 2012-02-06 00:14:00
111阅读
2评论
Core Animation provide an abstract animation interface that allows animations to run on a separate thread, independent of your application's run loop. Once an animation is configured and starts, Core Animation assumes full responsibility for running it at frame rate.Core Animation classes can be
转载 2012-02-06 00:13:00
92阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5