Creating Custom Instruments

Size: px
Start display at page:

Download "Creating Custom Instruments"

Transcription

1 Session #WWDC18 Creating Custom Instruments Instruments Chad Woolf, Performance Tools Engineer Kacper Harasim, Performance Tools Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

2 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

3 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

4

5

6

7

8

9

10 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

11 In the Beginning...

12 In the Beginning... Analysis Analysis Analysis Analysis Analysis Recording Recording Analysis Recording Recording Analysis Recording Recording Recording

13 In the Beginning... UI UI UI UI UI UI UI Storage Storage Storage Storage Storage Storage Storage Analysis Analysis Analysis Analysis Analysis Recording Recording Analysis Recording Recording Analysis Recording Recording Recording

14 Today

15 Today Standard UI

16 Today Standard UI Analysis Core

17

18

19

20

21

22

23 Instruments

24 Instruments

25 Instruments

26 Instruments

27 Graphs

28 Graphs

29 Graphs

30 Graphs Analysis Core

31 Detail Views

32 Detail Views

33 Detail Views

34 Detail Views

35 Detail Views

36 Detail Views

37 Detail Views Analysis Core

38 Analysis Core time-profile time-profile os-signpost syscall tick

39 Tables

40 Tables Schema column-1 column-2 Columns Types schema

41 Tables Schema column-1 column-2 Columns Types Attributes Key/value Content schema {attribute=value, }

42 Tick Schema *from the Instrument Inspector's "Schemas" tab

43 Tick Schema *from the Instrument Inspector's "Schemas" tab

44 Tick Schema *from the Instrument Inspector's "Schemas" tab

45 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

46 Tick Instrument

47 Demo Getting started with custom instruments Kacper Harasim, Performance Tools Engineer

48 Tick Instrument

49 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

50 Graph Lanes

51 Plot

52 Automatic Treatment

53 Automatic Treatment

54 Plot Template

55 Histogram

56 Details

57 Details

58 Details List

59 Details List Aggregation

60 Aggregation

61 Aggregation Columns are functions

62 Aggregation Columns are functions sum

63 Aggregation Columns are functions sum average

64 Aggregation Columns are functions sum average count

65 Aggregation Columns are functions sum average count More...

66 Aggregation Columns are functions sum average count More... Hierarchy

67 Details List Aggregation

68 Details List Aggregation Call Tree

69 Details List Aggregation Call Tree Narrative

70 Details List Aggregation Call Tree Narrative Time Slice

71 Analysis Core time-profile time-profile os-signpost syscall tick

72 Step 1: Reduce os-signpost time-profile time-profile tick syscall os-log time-profile tick syscall

73 Step 2: Search data-stream Store

74 Step 2: Search MODELER Store

75 Step 2: Search A MODELER C B

76 Step 3: Optimize

77 Binding Solution

78 Binding Solution Trace-wide

79 Binding Solution Trace-wide Minimizes recording impact

80 Schemas

81 Schemas 100+ schemas already

82 Schemas 100+ schemas already Contained in packages

83 Schemas 100+ schemas already Contained in packages Link build setting

84 Schemas 100+ schemas already Contained in packages Link build setting Building blocks

85 Modelers

86 Modelers <modeler>

87 Modelers <modeler> <point-schema>

88 Modelers <modeler> <point-schema> <interval-schema>

89 Modelers <modeler> <point-schema> <interval-schema> Required inputs

90 Modelers <modeler> <point-schema> <interval-schema> Required inputs Expert systems

91 Modelers <modeler> <point-schema> <interval-schema> Required inputs Expert systems CLIPS

92 Modelers <modeler> <point-schema> <interval-schema> Required inputs Expert systems CLIPS Advanced

93 However...

94 Automatic Modelers

95 Automatic Modelers <os-signpost-interval-schema>

96 Automatic Modelers <os-signpost-interval-schema> Defines a schema

97 Automatic Modelers <os-signpost-interval-schema> Defines a schema Generates a modeler

98 Automatic Modelers <os-signpost-interval-schema> Defines a schema Generates a modeler Capture metadata

99 Automatic Modelers <os-signpost-interval-schema> Defines a schema Generates a modeler Capture metadata Expressions

100 os_signpost(.begin, log: parsinglog, name: "Parsing", "Parsing started SIZE:%ld", data.count) // Decode the JSON we just downloaded let result = try jsondecoder.decode(trail.self, from: data) os_signpost(.end, log: parsinglog, name: "Parsing", "Parsing finished")

101 os_signpost(.begin, log: parsinglog, name: "Parsing", "Parsing started SIZE:%ld", data.count) // Decode the JSON we just downloaded let result = try jsondecoder.decode(trail.self, from: data) os_signpost(.end, log: parsinglog, name: "Parsing", "Parsing finished")

102 os_signpost(.begin, log: parsinglog, name: "Parsing", "Parsing started SIZE:%ld", data.count) // Decode the JSON we just downloaded let result = try jsondecoder.decode(trail.self, from: data) os_signpost(.end, log: parsinglog, name: "Parsing", "Parsing finished")

103 os_signpost(.begin, log: parsinglog, name: "Parsing", "Parsing started SIZE:%ld", data.count) // Decode the JSON we just downloaded let result = try jsondecoder.decode(trail.self, from: data) os_signpost(.end, log: parsinglog, name: "Parsing", "Parsing finished")

104 <os-signpost-interval-schema> <id>json-parse</id> <title>image Download</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"networking"</category> <name> Parsing"</name> <start-pattern> <message>"parsing started SIZE:"?data-size</message> </start-pattern> <column> <mnemonic>data-size</mnemonic> <title>json Data Size</title> <type>size-in-bytes</type> <expression>?data-size</expression> </column> </os-signpost-interval-schema>

105 <os-signpost-interval-schema> <id>json-parse</id> <title>image Download</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"networking"</category> <name> Parsing"</name> <start-pattern> <message>"parsing started SIZE:"?data-size</message> </start-pattern> <column> <mnemonic>data-size</mnemonic> <title>json Data Size</title> <type>size-in-bytes</type> <expression>?data-size</expression> </column> </os-signpost-interval-schema>

106 <os-signpost-interval-schema> <id>json-parse</id> <title>image Download</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"networking"</category> <name> Parsing"</name> <start-pattern> <message>"parsing started SIZE:"?data-size</message> </start-pattern> <column> <mnemonic>data-size</mnemonic> <title>json Data Size</title> <type>size-in-bytes</type> <expression>?data-size</expression> </column> </os-signpost-interval-schema>

107 <os-signpost-interval-schema> <id>json-parse</id> <title>image Download</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"networking"</category> <name> Parsing"</name> <start-pattern> <message>"parsing started SIZE:"?data-size</message> </start-pattern> <column> <mnemonic>data-size</mnemonic> <title>json Data Size</title> <type>size-in-bytes</type> <expression>?data-size</expression> </column> </os-signpost-interval-schema>

108 <os-signpost-interval-schema> <id>json-parse</id> <title>image Download</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"networking"</category> <name> Parsing"</name> <start-pattern> <message>"parsing started SIZE:"?data-size</message> </start-pattern> <column> <mnemonic>data-size</mnemonic> <title>json Data Size</title> <type>size-in-bytes</type> <expression>?data-size</expression> </column> </os-signpost-interval-schema>

109 <os-signpost-interval-schema> <id>json-parse</id> <title>image Download</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"networking"</category> <name> Parsing"</name> <start-pattern> <message>"parsing started SIZE:"?data-size</message> </start-pattern> <column> <mnemonic>data-size</mnemonic> <title>json Data Size</title> <type>size-in-bytes</type> <expression>?data-size</expression> </column> </os-signpost-interval-schema>

110 Trailblazer Networking

111 Demo Intermediate-level instruments Kacper Harasim, Performance Tools Engineer

112 Trailblazer Networking

113 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

114 Modelers * * inputs modeler outputs

115 Modelers Time ordered * * inputs modeler outputs

116 Modelers Time ordered Working memory * * inputs modeler outputs

117 Modelers Time ordered Working memory * * Inference inputs modeler outputs

118 Modelers Time ordered Working memory * * Inference Output inputs modeler outputs

119 Example

120 Example <os-signpost-interval-schema> <id>playing-with-matches</id> playing-with-matches <title>playing with Matches</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"advisory"</category> <name>"playing with Matches"</name>

121 Example <os-signpost-interval-schema> <id>playing-with-matches</id> playing-with-matches <title>playing with Matches</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"advisory"</category> <name>"playing with Matches"</name> app-on-fire <os-signpost-interval-schema> <id>app-on-fire</id> <title>application on Fire!</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"advisory"</category> <name>"on Fire"</name>

122 Example <os-signpost-interval-schema> <id>playing-with-matches</id> playing-with-matches <title>playing with Matches</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"advisory"</category> <name>"playing with Matches"</name> app-on-fire <os-signpost-interval-schema> <id>app-on-fire</id> <title>application on Fire!</title> <subsystem>"com.apple.trailblazer"</subsystem> <category>"advisory"</category> <name>"on Fire"</name> started-a-fire <point-schema> <id>started-a-fire</id> <title>object started a fire!</title>

123 playing-with-matches playing-with-ma app-on-fire Time

124 playing-with-matches playing-with-ma app-on-fire Time

125 playing-with-matches playing-with-ma app-on-fire Time

126 cause-of-fire playing-with-matches playing-with-ma app-on-fire Time

127 cause-of-fire playing-with-matches playing-with-ma app-on-fire Time

128 Clock Current input timestamp Input facts must intersect Coincidence

129 Production System

130 Production System Facts

131 Production System Facts LHS => RHS

132 Production System Facts LHS => RHS Pattern

133 Production System Facts LHS => RHS Pattern Actions

134 Facts

135 Facts Input table

136 Facts Input table Assertions

137 Facts Input table Assertions Template

138 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

139 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

140 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

141 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

142 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

143 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

144 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

145 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

146 Modules

147 Modules MODELER::

148 Modules MODELER:: RECORDER::

149 Modules MODELER:: RECORDER:: Group rules

150 Modules MODELER:: RECORDER:: Group rules Orders execution

151 Logical Support

152 Logical Support Inference

153 Logical Support Inference Automatically retracts assertions

154 Logical Support Inference Automatically retracts assertions Limits working memory bloat

155 (defrule MODELER::found-cause (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) (test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

156 (defrule MODELER::found-cause (logical (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) )(test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

157 (defrule MODELER::found-cause (logical (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) )(test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

158 (defrule MODELER::found-cause (logical (playing-with-matches (start-time?t1) (who?object)) (app-on-fire (start-time?t2)) )(test (<?t1?t2)) => (assert (cause-of-fire (who?object))) )(defrule RECORDER::record-cause (app-on-fire (start-time?start)) (cause-of-fire (who?object)) (table (table-id?t) (side append)) (table-attribute (table-id?t) (has schema started-a-fire)) => (create-row?t) (set-column time?start) (set-column who?object) )

159 Demo Advanced instruments Kacper Harasim, Performance Tools Engineer

160 Why create custom instruments Architecture Getting started Intermediate Advanced Best practices

161 Write more than one instrument

162 Immediate mode is hard

163 Last 5s mode is the most efficient

164 More Information Measuring Performance Using Logging WWDC 2018 Custom Instruments Lab Technology Lab 8 Thursday 3:00PM

165

What s New in Xcode App Signing

What s New in Xcode App Signing Developer Tools #WWDC16 What s New in Xcode App Signing Developing and distributing Session 401 Joshua Pennington Tools Engineering Manager Itai Rom Tools Engineer 2016 Apple Inc. All rights reserved.

More information

Validating HTTP Live Streams

Validating HTTP Live Streams Media #WWDC16 Validating HTTP Live Streams Session 510 Eryk Vershen Media Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

Using and Extending the Xcode Source Editor

Using and Extending the Xcode Source Editor Developer Tools #WWDC16 Using and Extending the Xcode Source Editor Session 414 Mike Swingler Xcode Infrastructure and Editors Chris Hanson Xcode Infrastructure and Editors 2016 Apple Inc. All rights reserved.

More information

Introducing Password AutoFill for Apps

Introducing Password AutoFill for Apps Session App Frameworks #WWDC17 Introducing Password AutoFill for Apps Reducing friction for your users 206 Ricky Mondello, ios Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

Building Watch Apps #WWDC15. Featured. Session 108. Neil Desai watchos Engineer

Building Watch Apps #WWDC15. Featured. Session 108. Neil Desai watchos Engineer Featured #WWDC15 Building Watch Apps Session 108 Neil Desai watchos Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Agenda

More information

Advances in TVMLKit. App Frameworks #WWDC17. Trevor Cortez, Localization Engineer Parry Panesar, tvos Engineer Jeremy Foo, tvos Engineer

Advances in TVMLKit. App Frameworks #WWDC17. Trevor Cortez, Localization Engineer Parry Panesar, tvos Engineer Jeremy Foo, tvos Engineer Session App Frameworks #WWDC17 Advances in TVMLKit 202 Trevor Cortez, Localization Engineer Parry Panesar, tvos Engineer Jeremy Foo, tvos Engineer 2017 Apple Inc. All rights reserved. Redistribution or

More information

What s New in watchos

What s New in watchos Session App Frameworks #WWDC17 What s New in watchos 205 Ian Parks, watchos Engineering 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

What s New in CloudKit

What s New in CloudKit System Frameworks #WWDC15 What s New in CloudKit Session 704 Olivier Bonnet icloud Client Eric Krugler icloud Server 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Accessibility on OS X

Accessibility on OS X Frameworks #WWDC14 Accessibility on OS X New Accessibility API Session 207 Patti Hoa Accessibility Engineer! Chris Dolan Accessibility Engineer 2014 Apple Inc. All rights reserved. Redistribution or public

More information

Building Apps with Dynamic Type

Building Apps with Dynamic Type Session App Frameworks #WWDC17 Building Apps with Dynamic Type 245 Clare Kasemset, Software Engineering Manager Nandini Sundar, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or

More information

Extending Your Apps with SiriKit

Extending Your Apps with SiriKit App Frameworks #WWDC16 Extending Your Apps with SiriKit Session 225 Vineet Khosla SiriKit Engineering Diana Huang SiriKit Engineering Scott Andrus SiriKit Engineering 2016 Apple Inc. All rights reserved.

More information

Introducing the Modern WebKit API

Introducing the Modern WebKit API Frameworks #WWDC14 Introducing the Modern WebKit API Session 206 Anders Carlsson Safari and WebKit Engineer 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Automatic Strong Passwords and Security Code AutoFill

Automatic Strong Passwords and Security Code AutoFill Session #WWDC18 Automatic Strong Passwords and Security Code AutoFill 204 Chelsea Pugh, ios Engineer Reza Abbasian, ios Engineer Harris Papadopoulos, ios Engineer 2018 Apple Inc. All rights reserved. Redistribution

More information

Core ML in Depth. System Frameworks #WWDC17. Krishna Sridhar, Core ML Zach Nation, Core ML

Core ML in Depth. System Frameworks #WWDC17. Krishna Sridhar, Core ML Zach Nation, Core ML System Frameworks #WWDC17 Core ML in Depth Krishna Sridhar, Core ML Zach Nation, Core ML 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

What s New in Testing

What s New in Testing #WWDC18 What s New in Testing Session 403 Honza Dvorsky, Xcode Engineer Ethan Vaughan, Xcode Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

What s New in Energy Debugging

What s New in Energy Debugging #WWDC18 What s New in Energy Debugging Phillip Azar, Apple/Battery Life David Choi, Apple/Battery Life 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Adapting to the New UI of OS X Yosemite

Adapting to the New UI of OS X Yosemite Frameworks #WWDC14 Adapting to the New UI of OS X Yosemite Session 209 Mike Stern User Experience Evangelist! Rachel Goldeen Cocoa Software Engineer! Patrick Heynen Cocoa Engineering Manager 2014 Apple

More information

Vision Framework. Building on Core ML. Media #WWDC17. Brett Keating, Apple Manager Frank Doepke, He who wires things together

Vision Framework. Building on Core ML. Media #WWDC17. Brett Keating, Apple Manager Frank Doepke, He who wires things together Session Media #WWDC17 Vision Framework Building on Core ML 506 Brett Keating, Apple Manager Frank Doepke, He who wires things together 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

Data Delivery with Drag and Drop

Data Delivery with Drag and Drop Session App Frameworks #WWDC17 Data Delivery with Drag and Drop 227 Dave Rahardja, UIKit Tanu Singhal, UIKit 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Getting the Most Out of HealthKit

Getting the Most Out of HealthKit App Frameworks #WWDC16 Getting the Most Out of HealthKit What s new and best practices Session 209 Matthew Salesi ios Software Engineer Joefrey Kibuule ios Software Engineer 2016 Apple Inc. All rights

More information

What s New in TVMLKit

What s New in TVMLKit #WWDC18 What s New in TVMLKit Session 238 Jeremy Foo, tvos Engineering 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Web Inspector

More information

Creating Great App Previews

Creating Great App Previews Services #WWDC14 Creating Great App Previews Session 304 Paul Turner Sr. Operations Manager itunes Digital Supply Chain Engineering 2014 Apple Inc. All rights reserved. Redistribution or public display

More information

Using Grouped Notifications

Using Grouped Notifications #WWDC18 Using Grouped Notifications Session 711 Michele Campeotto, ios User Notifications 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Quick Interaction Techniques for watchos

Quick Interaction Techniques for watchos App Frameworks #WWDC16 Quick Interaction Techniques for watchos Session 211 Tom Witkin watchos Engineer Miguel Sanchez watchos Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display

More information

ios Accessibility Developing for everyone Session 201 Ian Fisch ios Accessibility

ios Accessibility Developing for everyone Session 201 Ian Fisch ios Accessibility App Frameworks #WWDC15 ios Accessibility Developing for everyone Session 201 Ian Fisch ios Accessibility 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Metal for Ray Tracing Acceleration

Metal for Ray Tracing Acceleration Session #WWDC18 Metal for Ray Tracing Acceleration 606 Sean James, GPU Software Engineer Wayne Lister, GPU Software Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Enabling Your App for CarPlay

Enabling Your App for CarPlay Session App Frameworks #WWDC17 Enabling Your App for CarPlay 719 Albert Wan, CarPlay Engineering 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Introducing Swift Playgrounds

Introducing Swift Playgrounds Developer Tools #WWDC16 Introducing Swift Playgrounds Exploring with Swift on ipad Session 408 Matt Patenaude Playgrounds Engineer Maxwell Swadling Playgrounds Engineer Jonathan Penn Playgrounds Engineer

More information

Designing for Apple Watch

Designing for Apple Watch Design #WWDC15 Designing for Apple Watch Session 802 Mike Stern User Experience Evangelist 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Implementing UI Designs in Interface Builder

Implementing UI Designs in Interface Builder Developer Tools #WWDC15 Implementing UI Designs in Interface Builder Session 407 Kevin Cathey Interface Builder Engineer Tony Ricciardi Interface Builder Engineer 2015 Apple Inc. All rights reserved. Redistribution

More information

Improving the Accessibility and Usability of Complex Web Applications

Improving the Accessibility and Usability of Complex Web Applications Media #WWDC14 Improving the Accessibility and Usability of Complex Web Applications Session 516 Jesse Bunch Productivity Engineering 2014 Apple Inc. All rights reserved. Redistribution or public display

More information

Designing Great Apple Watch Experiences

Designing Great Apple Watch Experiences Design #WWDC16 Designing Great Apple Watch Experiences Session 804 Mike Stern User Experience Evangelist 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

What s New in Notifications

What s New in Notifications System Frameworks #WWDC15 What s New in Notifications Session 720 Michele Campeotto ios Notifications Gokul Thirumalai Apple Push Notification Service 2015 Apple Inc. All rights reserved. Redistribution

More information

Introduction to Siri Shortcuts

Introduction to Siri Shortcuts #WWDC8 Introduction to Siri Shortcuts Session 2 Ari Weinstein, Siri Willem Mattelaer, Siri 208 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Seamless Linking to Your App

Seamless Linking to Your App App Frameworks #WWDC15 Seamless Linking to Your App Session 509 Conrad Shultz Safari and WebKit Software Engineer Jonathan Grynspan Core Services Software Engineer 2015 Apple Inc. All rights reserved.

More information

What s New in tvos #WWDC16. App Frameworks. Session 206. Hans Kim tvos Engineer

What s New in tvos #WWDC16. App Frameworks. Session 206. Hans Kim tvos Engineer App Frameworks #WWDC16 What s New in tvos Session 206 Hans Kim tvos Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Welcome

More information

Building for Voice with Siri Shortcuts

Building for Voice with Siri Shortcuts #WWDC18 Building for Voice with Siri Shortcuts Session 214 Amit Jain, Siri Ayaka Nonaka, Siri 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

New Ways to Work with Workouts

New Ways to Work with Workouts Session #WWDC18 New Ways to Work with Workouts 707 Niharika Bedekar, Fitness Software Engineer Karim Benhmida, Health Software Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display

More information

Advanced Debugging and the Address Sanitizer

Advanced Debugging and the Address Sanitizer Developer Tools #WWDC15 Advanced Debugging and the Address Sanitizer Finding your undocumented features Session 413 Mike Swingler Xcode UI Infrastructure Anna Zaks LLVM Program Analysis 2015 Apple Inc.

More information

What s New in tvos 12

What s New in tvos 12 #WWDC18 What s New in tvos 12 Session 208 Hans Kim, tvos Engineering 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. Agenda Agenda

More information

Creating Extensions for Safari

Creating Extensions for Safari Creating Extensions for Safari Part One Timothy Hatcher Safari and WebKit Engineer 2 3 HTML5 CSS3 JavaScript Native Code 4 Cross Platform Secure Crashes 5 What You ll Learn When to make a Safari Extension

More information

What s New in MapKit. App Frameworks #WWDC17. Fredrik Olsson

What s New in MapKit. App Frameworks #WWDC17. Fredrik Olsson Session App Frameworks #WWDC17 What s New in MapKit 237 Fredrik Olsson 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. MKMapView.mapType.standard

More information

Improving your Existing Apps with Swift

Improving your Existing Apps with Swift Developer Tools #WWDC15 Improving your Existing Apps with Swift Getting Swifty with It Session 403 Woody L. in the Sea of Swift 2015 Apple Inc. All rights reserved. Redistribution or public display not

More information

Mastering UIKit on tvos

Mastering UIKit on tvos App Frameworks #WWDC16 Mastering UIKit on tvos Session 210 Justin Voss UIKit Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

imessage Apps and Stickers, Part 2

imessage Apps and Stickers, Part 2 App Frameworks #WWDC16 imessage Apps and Stickers, Part 2 Interactive Messages Session 224 Alex Carter Messages Engineer Stephen Lottermoser Messages Engineer 2016 Apple Inc. All rights reserved. Redistribution

More information

Towards the Semantic Grid: Putting Knowledge to Work in Design Optimisation

Towards the Semantic Grid: Putting Knowledge to Work in Design Optimisation Towards the Semantic Grid: Putting Knowledge to Work in Design Optimisation Feng Tao, Liming Chen, Nigel Shadbolt Department of Electronics and Computer Science, University of Southampton, UK {ft,lc,nrs}@ecs.soton.ac.uk

More information

Media and Gaming Accessibility

Media and Gaming Accessibility Session System Frameworks #WWDC17 Media and Gaming Accessibility 217 Greg Hughes, Software Engineering Manager Charlotte Hill, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public

More information

Introducing On Demand Resources

Introducing On Demand Resources App Frameworks #WWDC15 Introducing On Demand Resources An element of App Thinning Session 214 Steve Lewallen Frameworks Engineering Tony Parker Cocoa Frameworks 2015 Apple Inc. All rights reserved. Redistribution

More information

What s New in imessage Apps

What s New in imessage Apps Session App Frameworks #WWDC17 What s New in imessage Apps 234 Eugene Bistolas, Messages Engineer Jay Chae, Messages Engineer Stephen Lottermoser, Messages Engineer 2017 Apple Inc. All rights reserved.

More information

Monetize and Promote Your App with iad

Monetize and Promote Your App with iad Media #WWDC15 Monetize and Promote Your App with iad From design to launch Session 503 Carol Teng Shashank Phadke 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Localizing with Xcode 9

Localizing with Xcode 9 Session Developer Tools #WWDC17 Localizing with Xcode 9 401 Sara Radi, Software Engineer Aya Siblini, Software Engineer Chris Hanson, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution

More information

Deploying AirPrint in Enterprise

Deploying AirPrint in Enterprise System Frameworks #WWDC16 Deploying AirPrint in Enterprise Session 725 Todd Ritland AirPrint Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

Accessibility on ios. Developing for everyone. Frameworks #WWDC14. Session 210 Clare Kasemset ios Accessibility

Accessibility on ios. Developing for everyone. Frameworks #WWDC14. Session 210 Clare Kasemset ios Accessibility Frameworks #WWDC14 Accessibility on ios Developing for everyone Session 210 Clare Kasemset ios Accessibility 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Intelligent Systems: Reasoning and Recognition. Rule based programming - Introduction to CLIPS 6.0

Intelligent Systems: Reasoning and Recognition. Rule based programming - Introduction to CLIPS 6.0 Intelligent Systems: Reasoning and Recognition James L. Crowley ENSIMAG 2 / MoSIG M1 Second Semester 2010/2011 Lesson 5 16 February 2011 Rule based programming - Introduction to CLIPS 6.0 Production Systems...2

More information

Creating Complications with ClockKit Session 209

Creating Complications with ClockKit Session 209 App Frameworks #WWDC15 Creating Complications with ClockKit Session 209 Eliza Block watchos Engineer Paul Salzman watchos Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display

More information

Writing Great Alerts. Design #WWDC17. Natalie Calvert, Designer

Writing Great Alerts. Design #WWDC17. Natalie Calvert, Designer Session Design #WWDC17 Writing Great Alerts 813 Natalie Calvert, Designer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple. When

More information

Profiling in Depth. Do you know where your code is? Session 412. Kris Markel Performance Tools Engineer Chad Woolf Performance Tools Engineer

Profiling in Depth. Do you know where your code is? Session 412. Kris Markel Performance Tools Engineer Chad Woolf Performance Tools Engineer Developer Tools #WWDC15 Profiling in Depth Do you know where your code is? Session 412 Kris Markel Performance Tools Engineer Chad Woolf Performance Tools Engineer 2015 Apple Inc. All rights reserved.

More information

Managing Documents In Your ios Apps

Managing Documents In Your ios Apps Session #WWDC18 Managing Documents In Your ios Apps 216 Brandon Tennant, Software Engineer Thomas Deniau, Software Engineer Rony Fadel, Software Engineer 2018 Apple Inc. All rights reserved. Redistribution

More information

Advances in AVFoundation Playback

Advances in AVFoundation Playback Media #WWDC16 Advances in AVFoundation Playback Waiting, looping, switching, widening, optimizing Session 503 Sam Bushell Media Systems Architect 2016 Apple Inc. All rights reserved. Redistribution or

More information

Advanced Scrollviews and Touch Handling Techniques

Advanced Scrollviews and Touch Handling Techniques Frameworks #WWDC14 Advanced Scrollviews and Touch Handling Techniques Session 235 Josh Shaffer ios Apps and Frameworks Engineer Eliza Block ios Apps and Frameworks Engineer 2014 Apple Inc. All rights reserved.

More information

Content Protection for HTTP Live Streaming

Content Protection for HTTP Live Streaming Media #WWDC15 Content Protection for HTTP Live Streaming Session 502 Roger Pantos HTTP Live Streaming Engineer 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

Building Faster in Xcode

Building Faster in Xcode #WWDC18 Building Faster in Xcode Session 408 David Owens, Xcode Engineer Jordan Rose, Swift Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

What s New in Core Data?

What s New in Core Data? Session App Frameworks #WWDC17 What s New in Core? Persisting since 2004 210 Melissa Turner, Core Engineer Rishi Verma, Core Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display

More information

What s New in ARKit 2

What s New in ARKit 2 Session #WWDC18 What s New in ARKit 2 602 Arsalan Malik, ARKit Engineer Reinhard Klapfer, ARKit Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written

More information

alteryx training courses

alteryx training courses alteryx training courses alteryx designer 2 day course This course covers Alteryx Designer for new and intermediate Alteryx users. It introduces the User Interface and works through core Alteryx capability,

More information

Cross Platform Nearby Networking

Cross Platform Nearby Networking Core OS #WWDC14 Cross Platform Nearby Networking Session 709 Demijan Klinc Software Engineer 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Localization Best Practices on tvos

Localization Best Practices on tvos Session App Frameworks #WWDC17 Localization Best Practices on tvos 248 Joaquim Lobo Silva, Internationalization Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not

More information

Optimizing Swift Performance Session 409

Optimizing Swift Performance Session 409 Developer Tools #WWDC15 Optimizing Swift Performance Session 409 Nadav Rotem Manager, Swift Performance Team Michael Gottesman Engineer, Swift Performance Team Joe Grzywacz Engineer, Performance Tools

More information

Getting to Know Swift Package Manager

Getting to Know Swift Package Manager #WWDC18 Getting to Know Swift Package Manager Session 411 Rick Ballard, SwiftPM Release Manager Boris Buegling, Developer Tools Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display

More information

Thread Sanitizer and Static Analysis

Thread Sanitizer and Static Analysis Developer Tools #WWDC16 Thread Sanitizer and Static Analysis Help with finding bugs in your code Session 412 Anna Zaks Manager, Program Analysis Team Devin Coughlin Engineer, Program Analysis Team 2016

More information

CLIPS representation of ontology classes in an ontology-driven information system builder part 1

CLIPS representation of ontology classes in an ontology-driven information system builder part 1 CLIPS representation of ontology classes in an ontology-driven information system builder part 1 Samuil Nikolov Abstract: The paper describes the structure of a CLIPS program representing an ontology class

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Using Network Analyzer Tool to Monitor Bluetooth Mesh Traffic

Using Network Analyzer Tool to Monitor Bluetooth Mesh Traffic Using Network Analyzer Tool to Monitor Bluetooth Mesh Traffic KEY FEATURES This training demonstrates the usage of the Network Analyzer tool provided by Silicon Labs, and applies it to monitor Bluetooth

More information

STAT STATISTICAL METHODS. Statistics: The science of using data to make decisions and draw conclusions

STAT STATISTICAL METHODS. Statistics: The science of using data to make decisions and draw conclusions STAT 515 --- STATISTICAL METHODS Statistics: The science of using data to make decisions and draw conclusions Two branches: Descriptive Statistics: The collection and presentation (through graphical and

More information

Mastering Drag and Drop

Mastering Drag and Drop Session App Frameworks #WWDC17 Mastering Drag and Drop 213 Tom Adriaenssen, UIKit Wenson Hsieh, WebKit Robb Böhnke, UIKit 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted

More information

Defining an Abstract Core Production Rule System

Defining an Abstract Core Production Rule System WORKING PAPER!! DRAFT, e.g., lacks most references!! Version of December 19, 2005 Defining an Abstract Core Production Rule System Benjamin Grosof Massachusetts Institute of Technology, Sloan School of

More information

Building Visually Rich User Experiences

Building Visually Rich User Experiences Session App Frameworks #WWDC17 Building Visually Rich User Experiences 235 Noah Witherspoon, Software Engineer Warren Moore, Software Engineer 2017 Apple Inc. All rights reserved. Redistribution or public

More information

What s New in Swift Playgrounds

What s New in Swift Playgrounds Session Developer Tools #WWDC17 What s New in Swift Playgrounds 408 Connor Wakamo, Playgrounds Engineer Grace Kendall, Playgrounds Engineer Najla Bulous, Playgrounds Engineer 2017 Apple Inc. All rights

More information

Modern User Interaction on ios

Modern User Interaction on ios App Frameworks #WWDC17 Modern User Interaction on ios Mastering the UIKit UIGesture System Session 219 Dominik Wagner, UIKit Engineer Michael Turner, UIKit Engineer Glen Low, UIKit Engineer 2017 Apple

More information

Advantage: high portability, low cost, and easy integra.on with external systems. It was wriien using the C programming language.

Advantage: high portability, low cost, and easy integra.on with external systems. It was wriien using the C programming language. Tutorial 2 Introduc.on to CLIPS CLIPS (C Language Integrated Produc.on System): A programming language designed by NASA/Johnson Space Center. Advantage: high portability, low cost, and easy integra.on

More information

Working with Metal Overview

Working with Metal Overview Graphics and Games #WWDC14 Working with Metal Overview Session 603 Jeremy Sandmel GPU Software 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Introducing the Photos Frameworks

Introducing the Photos Frameworks Media #WWDC14 Introducing the Photos Frameworks Session 511 Adam Swift ios Photos Frameworks 2014 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

From Art to Engine with Model I/O

From Art to Engine with Model I/O Session Graphics and Games #WWDC17 From Art to Engine with Model I/O 610 Nick Porcino, Game Technologies Engineer Nicholas Blasingame, Game Technologies Engineer 2017 Apple Inc. All rights reserved. Redistribution

More information

DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO

DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO MICROSOFT LABS JANUARY 10, 2019 DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO A Solution to create a Microsoft VISIO template by consuming the configured entity values from the CRM entity record.

More information

Intelligent Systems: Reasoning and Recognition. CLIPS: RULE Syntax, Actions, The RETE Algorithm. Production System Architecture...

Intelligent Systems: Reasoning and Recognition. CLIPS: RULE Syntax, Actions, The RETE Algorithm. Production System Architecture... Intelligent Systems: Reasoning and Recognition James L. Crowley ENSIMAG 2 / MoSIG M1 Second Semester 2014/2015 Lesson 5 25 February 2015 CLIPS: RULE Syntax, Actions, The RETE Algorithm Production System

More information

See Types of Data Supported for information about the types of files that you can import into Datameer.

See Types of Data Supported for information about the types of files that you can import into Datameer. Importing Data When you import data, you import it into a connection which is a collection of data from different sources such as various types of files and databases. See Configuring a Connection to learn

More information

Creating Photo and Video Effects Using Depth

Creating Photo and Video Effects Using Depth Session #WWDC18 Creating Photo and Video Effects Using Depth 503 Emmanuel Piuze-Phaneuf, Core Image Ron Sokolovsky, Video Engineering 2018 Apple Inc. All rights reserved. Redistribution or public display

More information

Localizing with Xcode 6

Localizing with Xcode 6 Tools #WWDC14 Localizing with Xcode 6 Best practices and new workflows Session 412 Zoltan Foley-Fisher Xcode Software Engineer! Chris Hanson Xcode Software Engineer 2014 Apple Inc. All rights reserved.

More information

Przemek Woznowski, Cardiff University Supervised by Prof. Alun Preece

Przemek Woznowski, Cardiff University Supervised by Prof. Alun Preece Przemek Woznowski, Cardiff University Supervised by Prof. Alun Preece Introduction Problem Research Question Addressed Challenges Explained Proposed System Architecture Benefits Conceptual Representation

More information

HLS Authoring Update. Media #WWDC17. Eryk Vershen, AVFoundation Engineer

HLS Authoring Update. Media #WWDC17. Eryk Vershen, AVFoundation Engineer Session Media #WWDC17 HLS Authoring Update 515 Eryk Vershen, AVFoundation Engineer 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

Processing Data Like Google Using the Dataflow/Beam Model

Processing Data Like Google Using the Dataflow/Beam Model Todd Reedy Google for Work Sales Engineer Google Processing Data Like Google Using the Dataflow/Beam Model Goals: Write interesting computations Run in both batch & streaming Use custom timestamps Handle

More information

Introduction to CLIPS

Introduction to CLIPS Introduction to CLIPS Overview of CLIPS Facts Rules Rule firing Control techniques Example CS 460, Session 21 1 CLIPS basic elements Fact-list: global memory of data Knowledge-base: contain all the rules

More information

Xcode 6 Start to Finish

Xcode 6 Start to Finish Xcode 6 Start to Finish ios and OS X Development Fritz Anderson VAddison-Wesley New York Boston Indianapolis San Francisco Toronto Montreal Capetown Sydney London Munich Paris Madrid Tokyo Singapore Mexico

More information

Creating Audio Apps for watchos

Creating Audio Apps for watchos Session #WWDC18 Creating Audio Apps for watchos 504 Neil Desai, watchos Frameworks Engineer 2018 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission

More information

Power, Performance, and Diagnostics

Power, Performance, and Diagnostics Core OS #WWDC14 Power, Performance, and Diagnostics What's new in GCD and XPC Session 716 Daniel Steffen Darwin Runtime Engineer 2014 Apple Inc. All rights reserved. Redistribution or public display not

More information

Apple Watch Design Tips and Tricks

Apple Watch Design Tips and Tricks Design #WWDC15 Apple Watch Design Tips and Tricks Session 805 Mike Stern User Experience Evangelist Rachel Roth User Experience Evangelist 2015 Apple Inc. All rights reserved. Redistribution or public

More information

CarPlay Audio and Navigation Apps

CarPlay Audio and Navigation Apps #WWDC18 CarPlay Audio and Navigation Apps Tunes and turns Jonathan Hersh, ios Car Experience Albert Wan, ios Car Experience Mike Knippers, ios Car Experience 2018 Apple Inc. All rights reserved. Redistribution

More information

Introducing MusicKit. Media #WWDC17. Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music

Introducing MusicKit. Media #WWDC17. Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music Session Media #WWDC17 Introducing MusicKit 502 Tim Parthemore, MusicKit Services Joel Lopes Da Silva, ios Music 2017 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information