WO2013152452A1 - Parallel processing image data having top-left dependent pixels - Google Patents
Parallel processing image data having top-left dependent pixels Download PDFInfo
- Publication number
- WO2013152452A1 WO2013152452A1 PCT/CN2012/000457 CN2012000457W WO2013152452A1 WO 2013152452 A1 WO2013152452 A1 WO 2013152452A1 CN 2012000457 W CN2012000457 W CN 2012000457W WO 2013152452 A1 WO2013152452 A1 WO 2013152452A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- processing
- pixels
- image data
- logic
- media
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T1/00—General purpose image data processing
- G06T1/20—Processor architectures; Processor configuration, e.g. pipelining
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F15/00—Digital computers in general; Data processing equipment in general
- G06F15/76—Architectures of general purpose stored program computers
- G06F15/80—Architectures of general purpose stored program computers comprising an array of processing units with common control, e.g. single instruction multiple data processors
- G06F15/8007—Architectures of general purpose stored program computers comprising an array of processing units with common control, e.g. single instruction multiple data processors single instruction multiple data [SIMD] multiprocessors
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2200/00—Indexing scheme for image data processing or generation, in general
- G06T2200/28—Indexing scheme for image data processing or generation, in general involving image processing hardware
Definitions
- GPU graphics processing unit
- Certain graphics applications may have pixel dependency issues that prevent parallel processing under conventional approaches. For example, image data with top-left dependent pixels might be processed sequentially (e.g., by column, then row) in a conventional system, wherein sequential processing may fail to adequately leverage GPU parallel processing capabilities. As a result, performance may be negatively impacted.
- FIG. 1 is a block diagram of an example of a GPU computing architecture according to an embodiment
- FIG. 2 is a flowchart of an example of a method of processing image data according to an embodiment
- FIG. 3 is a block diagram of an example of a wavefront order processing approach according to an embodiment
- FIG. 4 is a block diagram of an example of a data block that is partitioned into an upper left section and a lower right section according to an embodiment
- FIG. 5 is a block diagram of an example of a pixel selection approach according to an embodiment
- FIG. 6 is a block diagram of a system according to an embodiment
- FIG. 7 is a block diagram of an example of a system having a navigation controller according to an embodiment.
- FIG. 8 is a block diagram of an example of a system having a small form factor according to an embodiment. DETAILED DESCRIPTION
- FIG. 1 an architecture 10 is shown in which a graphics processing unit (GPU) 14 is used to boost the performance of a graphics application 12 executing in a computing system having a central processing unit 16.
- the GPU 14 has an execution unit (EU) array 18 that enables the GPU 14 to achieve a high level of data parallelism.
- EU execution unit
- the GPU 14 may be implemented as a multi-core and multi-threaded architecture, wherein each thread can be executed on an EU in parallel.
- the GPU 14 can be configured to partition the image data into multiple blocks and dispatch single instruction multiple data (SIMD) instructions to the EU array 18 in order to conduct these computationally intensive operations in a highly parallel manner.
- SIMD single instruction multiple data
- OutputPixel[y][x] OutputPixel[top_y][x] + OutputPixel[y][left_x].
- the illustrated architecture 10 Rather than processing the image data in a sequential order, the illustrated architecture 10 provides for processing the image data in a "wavefront" order, wherein the processing results 20 of the illustrated architecture 10 can exhibit boosted performance even in scenarios in which pixel dependencies are involved.
- FIG. 2 shows a method 1 1 of processing image data.
- the method 1 1 may be implemented as a set of logic instructions stored in a machine- or computer-readable storage medium such as random access memory (RAM), read only memory (ROM), programmable ROM (PROM), flash memory, etc., in configurable logic such as programmable logic arrays (PLAs), field programmable gate arrays (FPGAs), complex programmable logic devices (CPLDs), in fixed-functionality logic hardware using circuit technology such as application specific integrated circuit (ASIC), complementary metal oxide semiconductor (CMOS) or transistor-transistor logic (TTL) technology, or any combination thereof.
- PLAs programmable logic arrays
- FPGAs field programmable gate arrays
- CPLDs complex programmable logic devices
- ASIC application specific integrated circuit
- CMOS complementary metal oxide semiconductor
- TTL transistor-transistor logic
- computer program code to carry out operations shown in the method 1 1 may be written in any combination of one or more programming languages, including an object oriented programming language such
- the method 1 1 is implemented via a high-level media kernel programming language such as CM (C for media), which is based on standard C++ language with some restrictions, plus additional features that are designed for easy expression of data parallelism in media applications and a simplified interface with architecture specific hardware features (e.g., vector and matrix data type hardware).
- CM media kernel programming language
- Illustrated processing block 13 provides for identifying a plurality of blocks in image data having one or more top-left dependent pixels. The plurality of blocks may be selected in a wavefront order for processing at block 15, wherein illustrated block 17 processes a plurality of pixels in each block in the wavefront order.
- FIG. 3 shows a data block 22 having top-left dependent pixels, wherein the top- leftmost pixel (e.g., labeled "1") is processed first in the block 22, and the bottom- rightmost pixel (e.g., labeled "15") is processed last in the block 22.
- a wavefront order is used to select and process the pixels in between, wherein data parallelism can be employed in order to enhance performance.
- the second "wave" of pixels (e.g., labeled "2”) is processed after the first pixel and in parallel using, for example, a SIMD instruction that may be dispatched to an EU array such as the EU array 18 (FIG. 1).
- the third wave of pixels (e.g., labeled "3") is processed in parallel, then the fourth wave of pixels (e.g., labeled "4") is processed in parallel, and so forth. Accordingly, the top-left dependency is maintained and maximum data parallelism is achieved in the example shown.
- the data block has a block size of "b” (e.g., dimension of bxb pixels), the image width is "W”, and the image height is "H", a pixel 24 may be represented by the relationship H/b, a pixel 26 may be represented by the relationship W/b, and a pixel 28 may be represented by the relationship (W+H)/b-l .
- the block size is 8x8, although other block sizes may be used.
- FIG. 4 shows a data block 30 (30a, 30b) that is partitioned into an upper left section 30a and a lower right section 30b.
- a vector parameter e.g., "vector ref ', discussed below
- such a partitioning can enable the selection and processing of pixels to be conducted in a highly efficient manner.
- FIG. 5 demonstrates that the pixel elements for calculations can be easily selected by altering an offset parameter and a mask parameter in a for-loop.
- N elements may be selected in each loop, starting from the offset value.
- the stride for the select operation may therefore be N, enabling the elements to be selected in a wavefront order.
- a mask can be used to remove the elements that are not needed in a particular iteration.
- the offset may be initially set to point to the top-leftmost element (e.g., labeled "1") in the illustrated example. Since the mask would be Obi for the first iteration, only the top-leftmost element would be used.
- the offset may be initially set to point to the first wave of elements in that section (e.g., labeled "7").
- vector_ref ⁇ uintl , N> left ... ; (select left pixel by stride and offset)
- vector_ref ⁇ uintl, N> left ... ; (select left pixel by stride and offset)
- the computing system 34 may be part of a mobile platform such as a laptop, PDA (personal digital assistant), wireless smart phone, media player, imaging device, MID (mobile Internet device), any smart device such as a smart phone, smart tablet and so forth, or any combination thereof.
- the illustrated computing system 34 includes a CPU 36, a display device 38, a hard disk drive 40 and system memory 42, which could include, for example, double data rate (DDR) synchronous dynamic random access memory (SDRAM, e.g., DDR3 SDRAM JEDEC Standard JESD79-3C, April 2008) modules.
- DDR double data rate
- SDRAM synchronous dynamic random access memory
- the modules of the system memory 42 may be incorporated into a single inline memory module (SIMM), dual inline memory module (DIMM), small outline DIMM (SODIMM), and so forth.
- the computing system 34 may include a graphics bus (e.g., slot) 44, wherein a graphics card (not shown) containing a graphics processing unit (GPU) 46 and dedicated graphics memory 48 could be coupled (e.g., plugged into) the graphics bus 44.
- the graphics bus 44 could include a PCI Express Graphics (PEG, e.g., Peripheral Components Interconnect/PCI Express xl6 Graphics 150W-ATX Specification 1.0, PCI Special Interest Group) bus, an Accelerated Graphics Port (e.g., AGP V3.0 Interface Specification, September 2002) bus, and so forth.
- PEG Peripheral Components Interconnect/PCI Express xl6 Graphics 150W-ATX Specification 1.0, PCI Special Interest Group
- an Accelerated Graphics Port e.g., AGP V3.0 Interface Specification, September 2002
- the CPU 36 may have an integrated memory controller (iMC) 50, and one or more processor cores (not shown) to execute one or more drivers associated with a host OS (operating system) and/or application software, wherein each core may be fully functional with instruction fetch units, instruction decoders, level one (LI) cache, execution units, and so forth.
- the CPU 36 could alternatively communicate with an off-chip variation of the iMC 50, also known as a Northbridge, via a front side bus.
- the illustrated CPU 36 communicates with a platform controller hub (PCH) 52, also known as a Southbridge, via a hub bus.
- PCH platform controller hub
- the iMC 50/CPU 36 and the PCH 52 are sometimes referred to as a chipset.
- the illustrated computing system 34 also includes an image capture module 54, which may be used to obtain video content for visual output via the display device 38.
- the image capture module 54 could include, for example, a camera, camcorder, etc.
- the video content may also be obtained from the hard drive 40, the system memory 42, software (e.g., media player, game player) running on the CPU 36 and/or GPU 46, or from an off-platform device (e.g., web server, remote image capture device, etc.) via a network controller (not shown).
- the illustrated GPU 46 is configured to execute media kernel logic 56 that identifies a plurality of blocks in image data having one or more top-left dependent pixels, selects the plurality of blocks in a wavefront order for processing, and processes a plurality of pixels in each block in the wavefront order.
- processing the plurality of pixels includes dispatching one or more parallel processing instructions such as SIMD instructions, to an array of execution units in the GPU 46, as already discussed.
- Embodiments may therefore include a method of processing image data in which a plurality of blocks is identified in image data having one or more top-left dependent pixels.
- the method may also provide for selecting the plurality of blocks in a wavefront order for processing, and processing a plurality of pixels in each block in the wavefront order.
- Embodiments can also include a system having logic to identify a plurality of blocks in image data with one or more top-left dependent pixels, and select the plurality of blocks in a wavefront order for processing.
- the logic may process a plurality of pixels in each block in the wavefront order.
- the system may also include a display device to output a result associated with processing the plurality of pixels.
- Other embodiments may also include at least one computer readable storage medium having a set of instructions which, if executed by a processor, cause a computer to identify a plurality of blocks in image data having one or more top-left dependent pixels.
- the instructions can also cause a computer to select the plurality of blocks in a wavefront order for processing, and process a plurality of pixels in each block in the wavefront order.
- embodiments may involve a method of processing image data in which image data is received in a graphics processing unit, wherein the image data is associated with a graphics application and includes one or more top-left dependent pixels.
- the method can also provide for identifying a plurality of blocks in the image data, selecting the plurality of blocks in a wavefront order for processing, and processing a plurality of pixels in each block in the wavefront order, wherein processing the plurality of pixels includes dispatching one or more parallel processing instructions.
- FIG. 7 illustrates an embodiment of a system 700.
- system 700 may be a media system although system 700 is not limited to this context.
- system 700 may be incorporated into a personal computer (PC), laptop computer, ultra- laptop computer, tablet, touch pad, portable computer, handheld computer, palmtop computer, personal digital assistant (PDA), cellular telephone, combination cellular telephone/PDA, television, smart device (e.g., smart phone, smart tablet or smart television), mobile internet device (MID), messaging device, data communication device, and so forth.
- PC personal computer
- laptop computer ultra- laptop computer
- tablet touch pad
- portable computer handheld computer
- palmtop computer personal digital assistant
- PDA personal digital assistant
- cellular telephone combination cellular telephone/PDA
- television smart device (e.g., smart phone, smart tablet or smart television), mobile internet device (MID), messaging device, data communication device, and so forth.
- smart device e.g., smart phone, smart tablet or smart television
- MID mobile internet device
- system 700 comprises a platform 702 coupled to a display 720.
- Platform 702 may receive content from a content device such as content services device(s) 730 or content delivery device(s) 740 or other similar content sources.
- a navigation controller 750 comprising one or more navigation features may be used to interact with, for example, platform 702 and/or display 720. Each of these components is described in more detail below.
- platform 702 may comprise any combination of a chipset 705, processor 710, memory 712, storage 714, graphics subsystem 715, applications 716 and/or radio 718.
- Chipset 705 may provide intercommunication among processor 710, memory 712, storage 714, graphics subsystem 715, applications 716 and/or radio 718.
- chipset 705 may include a storage adapter (not depicted) capable of providing intercommunication with storage 714.
- Processor 710 may be implemented as Complex Instruction Set Computer (CISC) or Reduced Instruction Set Computer (RISC) processors, x86 instruction set compatible processors, multi-core, or any other microprocessor or central processing unit (CPU).
- processor 710 may comprise dual-core processor(s), dual-core mobile processor(s), and so forth.
- Memory 712 may be implemented as a volatile memory device such as, but not limited to, a Random Access Memory (RAM), Dynamic Random Access Memory (DRAM), or Static RAM (SRAM).
- RAM Random Access Memory
- DRAM Dynamic Random Access Memory
- SRAM Static RAM
- Storage 714 may be implemented as a non- volatile storage device such as, but not limited to, a magnetic disk drive, optical disk drive, tape drive, an internal storage device, an attached storage device, flash memory, battery backed-up SDRAM (synchronous DRAM), and/or a network accessible storage device.
- storage 714 may comprise technology to increase the storage performance enhanced protection for valuable digital media when multiple hard drives are included, for example.
- Graphics subsystem 715 may perform processing of images such as still or video for display.
- Graphics subsystem 715 may be a graphics processing unit (GPU) or a visual processing unit (VPU), for example.
- An analog or digital interface may be used to communicatively couple graphics subsystem 715 and display 720.
- the interface may be any of a High-Definition Multimedia Interface, DisplayPort, wireless HDMI, and/or wireless HD compliant techniques.
- Graphics subsystem 715 could be integrated into processor 710 or chipset 705.
- Graphics subsystem 715 could be a standalone card communicatively coupled to chipset 705.
- graphics and/or video processing techniques described herein may be implemented in various hardware architectures.
- graphics and/or video functionality may be integrated within a chipset.
- a discrete graphics and/or video processor may be used.
- the graphics and/or video functions may be implemented by a general purpose processor, including a multi-core processor.
- the functions may be implemented in a consumer electronics device.
- Radio 718 may include one or more radios capable of transmitting and receiving signals using various suitable wireless communications techniques. Such techniques may involve communications across one or more wireless networks. Exemplary wireless networks include (but are not limited to) wireless local area networks (WLANs), wireless personal area networks (WPANs), wireless metropolitan area network (WMANs), cellular networks, and satellite networks. In communicating across such networks, radio 718 may operate in accordance with one or more applicable standards in any version.
- WLANs wireless local area networks
- WPANs wireless personal area networks
- WMANs wireless metropolitan area network
- cellular networks and satellite networks.
- display 720 may comprise any television type monitor or display.
- Display 720 may comprise, for example, a computer display screen, touch screen display, video monitor, television-like device, and/or a television.
- Display 720 may be digital and/or analog.
- display 720 may be a holographic display.
- display 720 may be a transparent surface that may receive a visual projection.
- projections may convey various forms of information, images, and/or objects.
- such projections may be a visual overlay for a mobile augmented reality (MAR) application.
- MAR mobile augmented reality
- platform 702 may display user interface 722 on display 720.
- MAR mobile augmented reality
- content services device(s) 730 may be hosted by any national, international and/or independent service and thus accessible to platform 702 via the Internet, for example.
- Content services device(s) 730 may be coupled to platform 702 and/or to display 720.
- Platform 702 and/or content services device(s) 730 may be coupled to a network 760 to communicate (e.g., send and/or receive) media information to and from network 760.
- Content delivery device(s) 740 also may be coupled to platform 702 and/or to display 720.
- content services device(s) 730 may comprise a cable television box, personal computer, network, telephone, Internet enabled devices or appliance capable of delivering digital information and/or content, and any other similar device capable of unidirectionally or bidirectionally communicating content between content providers and platform 702 and/display 720, via network 760 or directly. It will be appreciated that the content may be communicated unidirectionally and/or bidirectionally to and from any one of the components in system 700 and a content provider via network 760. Examples of content may include any media information including, for example, video, music, medical and gaming information, and so forth.
- Content services device(s) 730 receives content such as cable television programming including media information, digital information, and/or other content.
- content providers may include any cable or satellite television or radio or Internet content providers. The provided examples are not meant to limit embodiments of the invention.
- platform 702 may receive control signals from navigation controller 750 having one or more navigation features.
- the navigation features of controller 750 may be used to interact with user interface 722, for example.
- navigation controller 750 may be a pointing device that may be a computer hardware component (specifically human interface device) that allows a user to input spatial (e.g., continuous and multi-dimensional) data into a computer.
- GUI graphical user interfaces
- televisions and monitors allow the user to control and provide data to the computer or television using physical gestures.
- Movements of the navigation features of controller 750 may be echoed on a display (e.g., display 720) by movements of a pointer, cursor, focus ring, or other visual indicators displayed on the display.
- a display e.g., display 720
- the navigation features located on navigation controller 750 may be mapped to virtual navigation features displayed on user interface 722, for example.
- controller 750 may not be a separate component but integrated into platform 702 and/or display 720. Embodiments, however, are not limited to the elements or in the context shown or described herein.
- drivers may comprise technology to enable users to instantly turn on and off platform 702 like a television with the touch of a button after initial boot-up, when enabled, for example.
- Program logic may allow platform 702 to stream content to media adaptors or other content services device(s) 730 or content delivery device(s) 740 when the platform is turned "off.”
- chip set 705 may comprise hardware and/or software support for 5.1 surround sound audio and/or high definition 7.1 surround sound audio, for example.
- Drivers may include a graphics driver for integrated graphics platforms.
- the graphics driver may comprise a peripheral component interconnect (PCI) Express graphics card.
- PCI peripheral component interconnect
- any one or more of the components shown in system 700 may be integrated.
- platform 702 and content services device(s) 730 may be integrated, or platform 702 and content delivery device(s) 740 may be integrated, or platform 702, content services device(s) 730, and content delivery device(s) 740 may be integrated, for example.
- platform 702 and display 720 may be an integrated unit. Display 720 and content service device(s) 730 may be integrated, or display 720 and content delivery device(s) 740 may be integrated, for example. These examples are not meant to limit the invention.
- system 700 may be implemented as a wireless system, a wired system, or a combination of both.
- system 700 may include components and interfaces suitable for communicating over a wireless shared media, such as one or more antennas, transmitters, receivers, transceivers, amplifiers, filters, control logic, and so forth.
- a wireless shared media may include portions of a wireless spectrum, such as the RF spectrum and so forth.
- system 700 may include components and interfaces suitable for communicating over wired communications media, such as input/output (I/O) adapters, physical connectors to connect the I/O adapter with a corresponding wired communications medium, a network interface card (NIC), disc controller, video controller, audio controller, and so forth.
- wired communications media may include a wire, cable, metal leads, printed circuit board (PCB), backplane, switch fabric, semiconductor material, twisted-pair wire, co-axial cable, fiber optics, and so forth.
- Platform 702 may establish one or more logical or physical channels to communicate information.
- the information may include media information and control information.
- Media information may refer to any data representing content meant for a user. Examples of content may include, for example, data from a voice conversation, videoconference, streaming video, electronic mail ("email") message, voice mail message, alphanumeric symbols, graphics, image, video, text and so forth. Data from a voice conversation may be, for example, speech information, silence periods, background noise, comfort noise, tones and so forth.
- Control information may refer to any data representing commands, instructions or control words meant for an automated system. For example, control information may be used to route media information through a system, or instruct a node to process the media information in a predetermined manner. The embodiments, however, are not limited to the elements or in the context shown or described in FIG. 7.
- FIG. 8 illustrates embodiments of a small form factor device 800 in which system 700 may be embodied.
- device 800 may be implemented as a mobile computing device having wireless capabilities.
- a mobile computing device may refer to any device having a processing system and a mobile power source or supply, such as one or more batteries, for example.
- examples of a mobile computing device may include a personal computer (PC), laptop computer, ultra-laptop computer, tablet, touch pad, portable computer, handheld computer, palmtop computer, personal digital assistant (PDA), cellular telephone, combination cellular telephone/PDA, television, smart device (e.g., smart phone, smart tablet or smart television), mobile internet device (MID), messaging device, data communication device, and so forth.
- PC personal computer
- laptop computer ultra-laptop computer
- tablet touch pad
- portable computer handheld computer
- palmtop computer personal digital assistant
- PDA personal digital assistant
- cellular telephone e.g., cellular telephone/PDA
- television smart device (e.g., smart phone, smart tablet or smart television), mobile internet device (MID), messaging device, data communication device, and so forth.
- smart device e.g., smart phone, smart tablet or smart television
- MID mobile internet device
- Examples of a mobile computing device also may include computers that are arranged to be worn by a person, such as a wrist computer, finger computer, ring computer, eyeglass computer, belt-clip computer, arm-band computer, shoe computers, clothing computers, and other wearable computers.
- a mobile computing device may be implemented as a smart phone capable of executing computer applications, as well as voice communications and/or data communications.
- voice communications and/or data communications may be described with a mobile computing device implemented as a smart phone by way of example, it may be appreciated that other embodiments may be implemented using other wireless mobile computing devices as well. The embodiments are not limited in this context.
- device 800 may comprise a housing 802, a display 804, an input/output (I/O) device 806, and an antenna 808.
- Device 800 also may comprise navigation features 812.
- Display 804 may comprise any suitable display unit for displaying information appropriate for a mobile computing device.
- I/O device 806 may comprise any suitable I/O device for entering information into a mobile computing device. Examples for I/O device 806 may include an alphanumeric keyboard, a numeric keypad, a touch pad, input keys, buttons, switches, rocker switches, microphones, speakers, voice recognition device and software, and so forth. Information also may be entered into device 800 by way of microphone. Such information may be digitized by a voice recognition device. The embodiments are not limited in this context.
- Various embodiments may be implemented using hardware elements, software elements, or a combination of both.
- hardware elements may include processors, microprocessors, circuits, circuit elements (e.g., transistors, resistors, capacitors, inductors, and so forth), integrated circuits, application specific integrated circuits (ASIC), programmable logic devices (PLD), digital signal processors (DSP), field programmable gate array (FPGA), logic gates, registers, semiconductor device, chips, microchips, chip sets, and so forth.
- Examples of software may include software components, programs, applications, computer programs, application programs, system programs, machine programs, operating system software, middleware, firmware, software modules, routines, subroutines, functions, methods, procedures, software interfaces, application program interfaces (API), instruction sets, computing code, computer code, code segments, computer code segments, words, values, symbols, or any combination thereof. Determining whether an embodiment is implemented using hardware elements and/or software elements may vary in accordance with any number of factors, such as desired computational rate, power levels, heat tolerances, processing cycle budget, input data rates, output data rates, memory resources, data bus speeds and other design or performance constraints.
- IP cores may be stored on a tangible, machine readable medium and supplied to various customers or manufacturing facilities to load into the fabrication machines that actually make the logic or processor.
- a discrete control system for the video pipeline can dynamically adapt operating points in order to optimize a global configuration of interactive component modules that are related to video perceptual quality.
- the perceptual quality analysis module may be placed before the video processing pipeline and parameters determined for the post-processing pipeline may be used for the same frame.
- the parameters determined using a given frame may be applied on the next frame to ensure real-time operation.
- Distributed computation is sometimes beneficial in reducing complexity as certain elements for perceptual quality computation may already be computed in the post-processing pipeline and can be re-used. Illustrated approaches may also be compatible with closed-loop control where the perceptual quality analysis is re- used at the output of the video processing pipeline to estimate output quality, which is also used by the control mechanism.
- Embodiments of the present invention are applicable for use with all types of semiconductor integrated circuit (“IC") chips.
- IC semiconductor integrated circuit
- Examples of these IC chips include but are not limited to processors, controllers, chipset components, programmable logic arrays (PLAs), memory chips, network chips, and the like.
- PPAs programmable logic arrays
- signal conductor lines are represented with lines. Some may be different, to indicate more constituent signal paths, have a number label, to indicate a number of constituent signal paths, and/or have arrows at one or more ends, to indicate primary information flow direction. This, however, should not be construed in a limiting manner. Rather, such added detail may be used in connection with one or more exemplary embodiments to facilitate easier understanding of a circuit.
- Any represented signal lines may actually comprise one or more signals that may travel in multiple directions and may be implemented with any suitable type of signal scheme, e.g., digital or analog lines implemented with differential pairs, optical fiber lines, and/or single-ended lines.
- Example sizes/models/values/ranges may have been given, although embodiments of the present invention are not limited to the same. As manufacturing techniques (e.g., photolithography) mature over time, it is expected that devices of smaller size could be manufactured.
- well known power/ground connections to IC chips and other components may or may not be shown within the figures, for simplicity of illustration and discussion, and so as not to obscure certain aspects of the embodiments of the invention.
- arrangements may be shown in block diagram form in order to avoid obscuring embodiments of the invention, and also in view of the fact that specifics with respect to implementation of such block diagram arrangements are highly dependent upon the platform within which the embodiment is to be implemented, i.e., such specifics should be well within purview of one skilled in the art.
- Some embodiments may be implemented, for example, using a machine or tangible computer-readable medium or article which may store an instruction or a set of instructions that, if executed by a machine, may cause the machine to perform a method and/or operations in accordance with the embodiments.
- a machine may include, for example, any suitable processing platform, computing platform, computing device, processing device, computing system, processing system, computer, processor, or the like, and may be implemented using any suitable combination of hardware and/or software.
- the machine-readable medium or article may include, for example, any suitable type of memory unit, memory device, memory article, memory medium, storage device, storage article, storage medium and/or storage unit, for example, memory, removable or nonremovable media, erasable or non-erasable media, writeable or re-writeable media, digital or analog media, hard disk, floppy disk, Compact Disk Read Only Memory (CD-ROM), Compact Disk Recordable (CD-R), Compact Disk Rewriteable (CD-RW), optical disk, magnetic media, magneto-optical media, removable memory cards or disks, various types of Digital Versatile Disk (DVD), a tape, a cassette, or the like.
- any suitable type of memory unit for example, any suitable type of memory unit, memory device, memory article, memory medium, storage device, storage article, storage medium and/or storage unit, for example, memory, removable or nonremovable media, erasable or non-erasable media, writeable or re-writeable media, digital or analog media, hard disk,
- the instructions may include any suitable type of code, such as source code, compiled code, interpreted code, executable code, static code, dynamic code, encrypted code, and the like, implemented using any suitable high-level, low-level, object-oriented, visual, compiled and/or interpreted programming language.
- processing refers to the action and/or processes of a computer or computing system, or similar electronic computing device, that manipulates and/or transforms data represented as physical quantities (e.g., electronic) within the computing system's registers and/or memories into other data similarly represented as physical quantities within the computing system's memories, registers or other such information storage, transmission or display devices.
- physical quantities e.g., electronic
- Coupled may be used herein to refer to any type of relationship, direct or indirect, between the components in question, and may apply to electrical, mechanical, fluid, optical, electromagnetic, electromechanical or other connections.
- first”, second, etc. may be used herein only to facilitate discussion, and carry no particular temporal or chronological significance unless otherwise indicated.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Hardware Design (AREA)
- Computing Systems (AREA)
- General Engineering & Computer Science (AREA)
- Controls And Circuits For Display Device (AREA)
- Image Processing (AREA)
Description
PARALLEL PROCESSING IMAGE DATA HAVING TOP-LEFT DEPENDENT
PIXELS
BACKGROUND
Computationally intensive aspects of graphics applications may be executed on a graphics processing unit (GPU) of a computing system, wherein the GPU may have significant parallel processing capability in order to enhance performance. Certain graphics applications, however, may have pixel dependency issues that prevent parallel processing under conventional approaches. For example, image data with top-left dependent pixels might be processed sequentially (e.g., by column, then row) in a conventional system, wherein sequential processing may fail to adequately leverage GPU parallel processing capabilities. As a result, performance may be negatively impacted.
BRIEF DESCRIPTION OF THE DRAWINGS
The various advantages of the embodiments of the present invention will become apparent to one skilled in the art by reading the following specification and appended claims, and by referencing the following drawings, in which:
FIG. 1 is a block diagram of an example of a GPU computing architecture according to an embodiment;
FIG. 2 is a flowchart of an example of a method of processing image data according to an embodiment;
FIG. 3 is a block diagram of an example of a wavefront order processing approach according to an embodiment;
FIG. 4 is a block diagram of an example of a data block that is partitioned into an upper left section and a lower right section according to an embodiment;
FIG. 5 is a block diagram of an example of a pixel selection approach according to an embodiment;
FIG. 6 is a block diagram of a system according to an embodiment;
FIG. 7 is a block diagram of an example of a system having a navigation controller according to an embodiment; and
FIG. 8 is a block diagram of an example of a system having a small form factor according to an embodiment.
DETAILED DESCRIPTION
Turning now to FIG. 1, an architecture 10 is shown in which a graphics processing unit (GPU) 14 is used to boost the performance of a graphics application 12 executing in a computing system having a central processing unit 16. In the illustrated example, the GPU 14 has an execution unit (EU) array 18 that enables the GPU 14 to achieve a high level of data parallelism. For example, while a portion of the graphics application 12 may be executed on the CPU 16, a portion of the graphics application 12 may also be executed on the GPU 14, wherein the portion executed on the GPU 14 may typically represent computationally intensive operations and/or calculations such as multiplication operations, division operations, and so forth. More particularly, the GPU 14 may be implemented as a multi-core and multi-threaded architecture, wherein each thread can be executed on an EU in parallel. As will be discussed in greater detail, the GPU 14 can be configured to partition the image data into multiple blocks and dispatch single instruction multiple data (SIMD) instructions to the EU array 18 in order to conduct these computationally intensive operations in a highly parallel manner.
Moreover, such parallelism may be achieved even for image data having pixel dependencies such as top-left dependent pixels. [0001] For example, consider the following pseudo code for column "x", and row "y" (using C language notation),
For (y=0; y<ImageHeight; y++)
top_y = (y-1 >= 0 ? y-1 : y);
For (x=0; x<ImageWidth; x++)
Left_x = (x-1 >= 0 ? x-l : x);
OutputPixel[y][x] = OutputPixel[top_y][x] + OutputPixel[y][left_x].
In order to calculate the current OutputPixel, the left and top OutputPixel is needed.
Rather than processing the image data in a sequential order, the illustrated architecture 10 provides for processing the image data in a "wavefront" order, wherein the processing results 20 of the illustrated architecture 10 can exhibit boosted performance even in scenarios in which pixel dependencies are involved.
FIG. 2 shows a method 1 1 of processing image data. The method 1 1 may be implemented as a set of logic instructions stored in a machine- or computer-readable storage medium such as random access memory (RAM), read only memory (ROM), programmable ROM (PROM), flash memory, etc., in configurable logic such as
programmable logic arrays (PLAs), field programmable gate arrays (FPGAs), complex programmable logic devices (CPLDs), in fixed-functionality logic hardware using circuit technology such as application specific integrated circuit (ASIC), complementary metal oxide semiconductor (CMOS) or transistor-transistor logic (TTL) technology, or any combination thereof. For example, computer program code to carry out operations shown in the method 1 1 may be written in any combination of one or more programming languages, including an object oriented programming language such as C++ or the like and conventional procedural programming languages, such as the "C" programming language or similar programming languages.
In one example, the method 1 1 is implemented via a high-level media kernel programming language such as CM (C for media), which is based on standard C++ language with some restrictions, plus additional features that are designed for easy expression of data parallelism in media applications and a simplified interface with architecture specific hardware features (e.g., vector and matrix data type hardware). Alternatively, the method 11 could be implemented using any of the aforementioned circuit technologies. Illustrated processing block 13 provides for identifying a plurality of blocks in image data having one or more top-left dependent pixels. The plurality of blocks may be selected in a wavefront order for processing at block 15, wherein illustrated block 17 processes a plurality of pixels in each block in the wavefront order.
FIG. 3 shows a data block 22 having top-left dependent pixels, wherein the top- leftmost pixel (e.g., labeled "1") is processed first in the block 22, and the bottom- rightmost pixel (e.g., labeled "15") is processed last in the block 22. In the illustrated example, a wavefront order is used to select and process the pixels in between, wherein data parallelism can be employed in order to enhance performance. In particular, the second "wave" of pixels (e.g., labeled "2") is processed after the first pixel and in parallel using, for example, a SIMD instruction that may be dispatched to an EU array such as the EU array 18 (FIG. 1). Next, the third wave of pixels (e.g., labeled "3") is processed in parallel, then the fourth wave of pixels (e.g., labeled "4") is processed in parallel, and so forth. Accordingly, the top-left dependency is maintained and maximum data parallelism is achieved in the example shown.
More particularly, if the data block has a block size of "b" (e.g., dimension of bxb pixels), the image width is "W", and the image height is "H", a pixel 24 may be represented by the relationship H/b, a pixel 26 may be represented by the relationship W/b,
and a pixel 28 may be represented by the relationship (W+H)/b-l . In the illustrated example, the block size is 8x8, although other block sizes may be used. Thus, the illustrated solution provides for processing the data block 22 in fifteen iterations, whereas a conventional sequential (e.g., by column, then row) processing approach may involve sixty-four iterations to process the data block 22.
FIG. 4 shows a data block 30 (30a, 30b) that is partitioned into an upper left section 30a and a lower right section 30b. In each section, a vector parameter (e.g., "vector ref ', discussed below) may be used to process image data in matrix format. As will be discussed in greater detail, such a partitioning can enable the selection and processing of pixels to be conducted in a highly efficient manner.
For example, FIG. 5 demonstrates that the pixel elements for calculations can be easily selected by altering an offset parameter and a mask parameter in a for-loop. In the illustrated example, for an (N+1)*(N+1) block 32, N elements may be selected in each loop, starting from the offset value. Thus, N equals six in the example shown. The stride for the select operation may therefore be N, enabling the elements to be selected in a wavefront order.
Moreover, a mask can be used to remove the elements that are not needed in a particular iteration. For example, the mask may be set to Obi, Obi 1, Obi 1 1, Obi 1 1 1 ... Obi 1 1 1 1 1 1 1 (N=8) for each loop. For n calculations in the upper left section, the offset may be initially set to point to the top-leftmost element (e.g., labeled "1") in the illustrated example. Since the mask would be Obi for the first iteration, only the top-leftmost element would be used. Similarly, in the bottom right section, the offset may be initially set to point to the first wave of elements in that section (e.g., labeled "7").
Example pseudo code to achieve this functionality may be implemented as follows. // mask = 1, 1 1, 1 1 1, 1 1 1 1,..., 1 1 1 1 1 1 1 1 (N=8)
For (int i = 0; i < N; i++)
{
offset++;
// NOTE: Matrix is N+ 1 x N+l, but stride = N
vector_ref<uintl , N> left = ... ; (select left pixel by stride and offset)
vector_ref<uintl, N> top = ... ; (select top pixel by stride and offset)
vector_ref<uintl, N> current = ... ; (select current pixel by stride and offset)
mask(i) = 1 ;
// operates on selected elements
}
// Wind down in opposite direction
// mask = 1 1 1 1 1 1 10, 11 1 1 1 100,... 10000000 (N=8)
For (int i = 0; i < N-l ; i++)
{
offset++;
// NOTE: Matrix is N+l N+1 , but stride = N
vector_ref<uintl, N> left=... ; (select left pixel by stride and offset)
vector_ref<uintl , N> top=... ; (select top pixel by stride and offset)
vector_ref<uintl, N>current=... ; (select current pixel by stride and offset) mask(i) = 0;
//operates on selected elements
}
Turning now to FIG. 6, a computing system 34 is shown in which wavefront order processing is implemented. The computing system 34 may be part of a mobile platform such as a laptop, PDA (personal digital assistant), wireless smart phone, media player, imaging device, MID (mobile Internet device), any smart device such as a smart phone, smart tablet and so forth, or any combination thereof. The illustrated computing system 34 includes a CPU 36, a display device 38, a hard disk drive 40 and system memory 42, which could include, for example, double data rate (DDR) synchronous dynamic random access memory (SDRAM, e.g., DDR3 SDRAM JEDEC Standard JESD79-3C, April 2008) modules. The modules of the system memory 42 may be incorporated into a single inline memory module (SIMM), dual inline memory module (DIMM), small outline DIMM (SODIMM), and so forth.
The computing system 34 may include a graphics bus (e.g., slot) 44, wherein a graphics card (not shown) containing a graphics processing unit (GPU) 46 and dedicated graphics memory 48 could be coupled (e.g., plugged into) the graphics bus 44. For
example, the graphics bus 44 could include a PCI Express Graphics (PEG, e.g., Peripheral Components Interconnect/PCI Express xl6 Graphics 150W-ATX Specification 1.0, PCI Special Interest Group) bus, an Accelerated Graphics Port (e.g., AGP V3.0 Interface Specification, September 2002) bus, and so forth. The CPU 36 may have an integrated memory controller (iMC) 50, and one or more processor cores (not shown) to execute one or more drivers associated with a host OS (operating system) and/or application software, wherein each core may be fully functional with instruction fetch units, instruction decoders, level one (LI) cache, execution units, and so forth. The CPU 36 could alternatively communicate with an off-chip variation of the iMC 50, also known as a Northbridge, via a front side bus. The illustrated CPU 36 communicates with a platform controller hub (PCH) 52, also known as a Southbridge, via a hub bus. The iMC 50/CPU 36 and the PCH 52 are sometimes referred to as a chipset.
The illustrated computing system 34 also includes an image capture module 54, which may be used to obtain video content for visual output via the display device 38. The image capture module 54 could include, for example, a camera, camcorder, etc. The video content may also be obtained from the hard drive 40, the system memory 42, software (e.g., media player, game player) running on the CPU 36 and/or GPU 46, or from an off-platform device (e.g., web server, remote image capture device, etc.) via a network controller (not shown). The illustrated GPU 46 is configured to execute media kernel logic 56 that identifies a plurality of blocks in image data having one or more top-left dependent pixels, selects the plurality of blocks in a wavefront order for processing, and processes a plurality of pixels in each block in the wavefront order. In one example, processing the plurality of pixels includes dispatching one or more parallel processing instructions such as SIMD instructions, to an array of execution units in the GPU 46, as already discussed.
Embodiments may therefore include a method of processing image data in which a plurality of blocks is identified in image data having one or more top-left dependent pixels. The method may also provide for selecting the plurality of blocks in a wavefront order for processing, and processing a plurality of pixels in each block in the wavefront order.
Embodiments can also include a system having logic to identify a plurality of blocks in image data with one or more top-left dependent pixels, and select the plurality of blocks in a wavefront order for processing. In addition, the logic may process a plurality
of pixels in each block in the wavefront order. The system may also include a display device to output a result associated with processing the plurality of pixels.
Other embodiments may also include at least one computer readable storage medium having a set of instructions which, if executed by a processor, cause a computer to identify a plurality of blocks in image data having one or more top-left dependent pixels. The instructions can also cause a computer to select the plurality of blocks in a wavefront order for processing, and process a plurality of pixels in each block in the wavefront order.
Moreover, embodiments may involve a method of processing image data in which image data is received in a graphics processing unit, wherein the image data is associated with a graphics application and includes one or more top-left dependent pixels. The method can also provide for identifying a plurality of blocks in the image data, selecting the plurality of blocks in a wavefront order for processing, and processing a plurality of pixels in each block in the wavefront order, wherein processing the plurality of pixels includes dispatching one or more parallel processing instructions.
FIG. 7 illustrates an embodiment of a system 700. In embodiments, system 700 may be a media system although system 700 is not limited to this context. For example, system 700 may be incorporated into a personal computer (PC), laptop computer, ultra- laptop computer, tablet, touch pad, portable computer, handheld computer, palmtop computer, personal digital assistant (PDA), cellular telephone, combination cellular telephone/PDA, television, smart device (e.g., smart phone, smart tablet or smart television), mobile internet device (MID), messaging device, data communication device, and so forth.
In embodiments, system 700 comprises a platform 702 coupled to a display 720. Platform 702 may receive content from a content device such as content services device(s) 730 or content delivery device(s) 740 or other similar content sources. A navigation controller 750 comprising one or more navigation features may be used to interact with, for example, platform 702 and/or display 720. Each of these components is described in more detail below.
In embodiments, platform 702 may comprise any combination of a chipset 705, processor 710, memory 712, storage 714, graphics subsystem 715, applications 716 and/or radio 718. Chipset 705 may provide intercommunication among processor 710, memory 712, storage 714, graphics subsystem 715, applications 716 and/or radio 718. For example,
chipset 705 may include a storage adapter (not depicted) capable of providing intercommunication with storage 714.
Processor 710 may be implemented as Complex Instruction Set Computer (CISC) or Reduced Instruction Set Computer (RISC) processors, x86 instruction set compatible processors, multi-core, or any other microprocessor or central processing unit (CPU). In embodiments, processor 710 may comprise dual-core processor(s), dual-core mobile processor(s), and so forth.
Memory 712 may be implemented as a volatile memory device such as, but not limited to, a Random Access Memory (RAM), Dynamic Random Access Memory (DRAM), or Static RAM (SRAM).
Storage 714 may be implemented as a non- volatile storage device such as, but not limited to, a magnetic disk drive, optical disk drive, tape drive, an internal storage device, an attached storage device, flash memory, battery backed-up SDRAM (synchronous DRAM), and/or a network accessible storage device. In embodiments, storage 714 may comprise technology to increase the storage performance enhanced protection for valuable digital media when multiple hard drives are included, for example.
Graphics subsystem 715 may perform processing of images such as still or video for display. Graphics subsystem 715 may be a graphics processing unit (GPU) or a visual processing unit (VPU), for example. An analog or digital interface may be used to communicatively couple graphics subsystem 715 and display 720. For example, the interface may be any of a High-Definition Multimedia Interface, DisplayPort, wireless HDMI, and/or wireless HD compliant techniques. Graphics subsystem 715 could be integrated into processor 710 or chipset 705. Graphics subsystem 715 could be a standalone card communicatively coupled to chipset 705.
The graphics and/or video processing techniques described herein may be implemented in various hardware architectures. For example, graphics and/or video functionality may be integrated within a chipset. Alternatively, a discrete graphics and/or video processor may be used. As still another embodiment, the graphics and/or video functions may be implemented by a general purpose processor, including a multi-core processor. In a further embodiment, the functions may be implemented in a consumer electronics device.
Radio 718 may include one or more radios capable of transmitting and receiving signals using various suitable wireless communications techniques. Such techniques may
involve communications across one or more wireless networks. Exemplary wireless networks include (but are not limited to) wireless local area networks (WLANs), wireless personal area networks (WPANs), wireless metropolitan area network (WMANs), cellular networks, and satellite networks. In communicating across such networks, radio 718 may operate in accordance with one or more applicable standards in any version.
In embodiments, display 720 may comprise any television type monitor or display. Display 720 may comprise, for example, a computer display screen, touch screen display, video monitor, television-like device, and/or a television. Display 720 may be digital and/or analog. In embodiments, display 720 may be a holographic display. Also, display 720 may be a transparent surface that may receive a visual projection. Such projections may convey various forms of information, images, and/or objects. For example, such projections may be a visual overlay for a mobile augmented reality (MAR) application. Under the control of one or more software applications 716, platform 702 may display user interface 722 on display 720.
In embodiments, content services device(s) 730 may be hosted by any national, international and/or independent service and thus accessible to platform 702 via the Internet, for example. Content services device(s) 730 may be coupled to platform 702 and/or to display 720. Platform 702 and/or content services device(s) 730 may be coupled to a network 760 to communicate (e.g., send and/or receive) media information to and from network 760. Content delivery device(s) 740 also may be coupled to platform 702 and/or to display 720.
In embodiments, content services device(s) 730 may comprise a cable television box, personal computer, network, telephone, Internet enabled devices or appliance capable of delivering digital information and/or content, and any other similar device capable of unidirectionally or bidirectionally communicating content between content providers and platform 702 and/display 720, via network 760 or directly. It will be appreciated that the content may be communicated unidirectionally and/or bidirectionally to and from any one of the components in system 700 and a content provider via network 760. Examples of content may include any media information including, for example, video, music, medical and gaming information, and so forth.
Content services device(s) 730 receives content such as cable television programming including media information, digital information, and/or other content. Examples of content providers may include any cable or satellite television or radio or
Internet content providers. The provided examples are not meant to limit embodiments of the invention.
In embodiments, platform 702 may receive control signals from navigation controller 750 having one or more navigation features. The navigation features of controller 750 may be used to interact with user interface 722, for example. In embodiments, navigation controller 750 may be a pointing device that may be a computer hardware component (specifically human interface device) that allows a user to input spatial (e.g., continuous and multi-dimensional) data into a computer. Many systems such as graphical user interfaces (GUI), and televisions and monitors allow the user to control and provide data to the computer or television using physical gestures.
Movements of the navigation features of controller 750 may be echoed on a display (e.g., display 720) by movements of a pointer, cursor, focus ring, or other visual indicators displayed on the display. For example, under the control of software applications 716, the navigation features located on navigation controller 750 may be mapped to virtual navigation features displayed on user interface 722, for example. In embodiments, controller 750 may not be a separate component but integrated into platform 702 and/or display 720. Embodiments, however, are not limited to the elements or in the context shown or described herein.
In embodiments, drivers (not shown) may comprise technology to enable users to instantly turn on and off platform 702 like a television with the touch of a button after initial boot-up, when enabled, for example. Program logic may allow platform 702 to stream content to media adaptors or other content services device(s) 730 or content delivery device(s) 740 when the platform is turned "off." In addition, chip set 705 may comprise hardware and/or software support for 5.1 surround sound audio and/or high definition 7.1 surround sound audio, for example. Drivers may include a graphics driver for integrated graphics platforms. In embodiments, the graphics driver may comprise a peripheral component interconnect (PCI) Express graphics card.
In various embodiments, any one or more of the components shown in system 700 may be integrated. For example, platform 702 and content services device(s) 730 may be integrated, or platform 702 and content delivery device(s) 740 may be integrated, or platform 702, content services device(s) 730, and content delivery device(s) 740 may be integrated, for example. In various embodiments, platform 702 and display 720 may be an integrated unit. Display 720 and content service device(s) 730 may be integrated, or
display 720 and content delivery device(s) 740 may be integrated, for example. These examples are not meant to limit the invention.
In various embodiments, system 700 may be implemented as a wireless system, a wired system, or a combination of both. When implemented as a wireless system, system 700 may include components and interfaces suitable for communicating over a wireless shared media, such as one or more antennas, transmitters, receivers, transceivers, amplifiers, filters, control logic, and so forth. An example of wireless shared media may include portions of a wireless spectrum, such as the RF spectrum and so forth. When implemented as a wired system, system 700 may include components and interfaces suitable for communicating over wired communications media, such as input/output (I/O) adapters, physical connectors to connect the I/O adapter with a corresponding wired communications medium, a network interface card (NIC), disc controller, video controller, audio controller, and so forth. Examples of wired communications media may include a wire, cable, metal leads, printed circuit board (PCB), backplane, switch fabric, semiconductor material, twisted-pair wire, co-axial cable, fiber optics, and so forth.
Platform 702 may establish one or more logical or physical channels to communicate information. The information may include media information and control information. Media information may refer to any data representing content meant for a user. Examples of content may include, for example, data from a voice conversation, videoconference, streaming video, electronic mail ("email") message, voice mail message, alphanumeric symbols, graphics, image, video, text and so forth. Data from a voice conversation may be, for example, speech information, silence periods, background noise, comfort noise, tones and so forth. Control information may refer to any data representing commands, instructions or control words meant for an automated system. For example, control information may be used to route media information through a system, or instruct a node to process the media information in a predetermined manner. The embodiments, however, are not limited to the elements or in the context shown or described in FIG. 7.
As described above, system 700 may be embodied in varying physical styles or form factors. FIG. 8 illustrates embodiments of a small form factor device 800 in which system 700 may be embodied. In embodiments, for example, device 800 may be implemented as a mobile computing device having wireless capabilities. A mobile computing device may refer to any device having a processing system and a mobile power source or supply, such as one or more batteries, for example.
As described above, examples of a mobile computing device may include a personal computer (PC), laptop computer, ultra-laptop computer, tablet, touch pad, portable computer, handheld computer, palmtop computer, personal digital assistant (PDA), cellular telephone, combination cellular telephone/PDA, television, smart device (e.g., smart phone, smart tablet or smart television), mobile internet device (MID), messaging device, data communication device, and so forth.
Examples of a mobile computing device also may include computers that are arranged to be worn by a person, such as a wrist computer, finger computer, ring computer, eyeglass computer, belt-clip computer, arm-band computer, shoe computers, clothing computers, and other wearable computers. In embodiments, for example, a mobile computing device may be implemented as a smart phone capable of executing computer applications, as well as voice communications and/or data communications. Although some embodiments may be described with a mobile computing device implemented as a smart phone by way of example, it may be appreciated that other embodiments may be implemented using other wireless mobile computing devices as well. The embodiments are not limited in this context.
As shown in FIG. 8, device 800 may comprise a housing 802, a display 804, an input/output (I/O) device 806, and an antenna 808. Device 800 also may comprise navigation features 812. Display 804 may comprise any suitable display unit for displaying information appropriate for a mobile computing device. I/O device 806 may comprise any suitable I/O device for entering information into a mobile computing device. Examples for I/O device 806 may include an alphanumeric keyboard, a numeric keypad, a touch pad, input keys, buttons, switches, rocker switches, microphones, speakers, voice recognition device and software, and so forth. Information also may be entered into device 800 by way of microphone. Such information may be digitized by a voice recognition device. The embodiments are not limited in this context.
Various embodiments may be implemented using hardware elements, software elements, or a combination of both. Examples of hardware elements may include processors, microprocessors, circuits, circuit elements (e.g., transistors, resistors, capacitors, inductors, and so forth), integrated circuits, application specific integrated circuits (ASIC), programmable logic devices (PLD), digital signal processors (DSP), field programmable gate array (FPGA), logic gates, registers, semiconductor device, chips, microchips, chip sets, and so forth. Examples of software may include software
components, programs, applications, computer programs, application programs, system programs, machine programs, operating system software, middleware, firmware, software modules, routines, subroutines, functions, methods, procedures, software interfaces, application program interfaces (API), instruction sets, computing code, computer code, code segments, computer code segments, words, values, symbols, or any combination thereof. Determining whether an embodiment is implemented using hardware elements and/or software elements may vary in accordance with any number of factors, such as desired computational rate, power levels, heat tolerances, processing cycle budget, input data rates, output data rates, memory resources, data bus speeds and other design or performance constraints.
One or more aspects of at least one embodiment may be implemented by representative instructions stored on a machine-readable medium which represents various logic within the processor, which when read by a machine causes the machine to fabricate logic to perform the techniques described herein. Such representations, known as "IP cores" may be stored on a tangible, machine readable medium and supplied to various customers or manufacturing facilities to load into the fabrication machines that actually make the logic or processor.
Techniques described herein may therefore provide a feed-forward system that ensures both real-time operation of the consumer video pipeline and dynamic updating of the operating pipeline to deliver optimal visual perceptual quality and viewing experience. In particular, a discrete control system for the video pipeline can dynamically adapt operating points in order to optimize a global configuration of interactive component modules that are related to video perceptual quality. In a series configuration, the perceptual quality analysis module may be placed before the video processing pipeline and parameters determined for the post-processing pipeline may be used for the same frame. In the case of distributed computation of the quality analysis block or when perceptual quality analysis needs to be performed at intermediate points in the pipeline, the parameters determined using a given frame may be applied on the next frame to ensure real-time operation. Distributed computation is sometimes beneficial in reducing complexity as certain elements for perceptual quality computation may already be computed in the post-processing pipeline and can be re-used. Illustrated approaches may also be compatible with closed-loop control where the perceptual quality analysis is re-
used at the output of the video processing pipeline to estimate output quality, which is also used by the control mechanism.
Embodiments of the present invention are applicable for use with all types of semiconductor integrated circuit ("IC") chips. Examples of these IC chips include but are not limited to processors, controllers, chipset components, programmable logic arrays (PLAs), memory chips, network chips, and the like. In addition, in some of the drawings, signal conductor lines are represented with lines. Some may be different, to indicate more constituent signal paths, have a number label, to indicate a number of constituent signal paths, and/or have arrows at one or more ends, to indicate primary information flow direction. This, however, should not be construed in a limiting manner. Rather, such added detail may be used in connection with one or more exemplary embodiments to facilitate easier understanding of a circuit. Any represented signal lines, whether or not having additional information, may actually comprise one or more signals that may travel in multiple directions and may be implemented with any suitable type of signal scheme, e.g., digital or analog lines implemented with differential pairs, optical fiber lines, and/or single-ended lines.
Example sizes/models/values/ranges may have been given, although embodiments of the present invention are not limited to the same. As manufacturing techniques (e.g., photolithography) mature over time, it is expected that devices of smaller size could be manufactured. In addition, well known power/ground connections to IC chips and other components may or may not be shown within the figures, for simplicity of illustration and discussion, and so as not to obscure certain aspects of the embodiments of the invention. Further, arrangements may be shown in block diagram form in order to avoid obscuring embodiments of the invention, and also in view of the fact that specifics with respect to implementation of such block diagram arrangements are highly dependent upon the platform within which the embodiment is to be implemented, i.e., such specifics should be well within purview of one skilled in the art. Where specific details (e.g., circuits) are set forth in order to describe example embodiments of the invention, it should be apparent to one skilled in the art that embodiments of the invention can be practiced without, or with variation of, these specific details. The description is thus to be regarded as illustrative instead of limiting.
Some embodiments may be implemented, for example, using a machine or tangible computer-readable medium or article which may store an instruction or a set of
instructions that, if executed by a machine, may cause the machine to perform a method and/or operations in accordance with the embodiments. Such a machine may include, for example, any suitable processing platform, computing platform, computing device, processing device, computing system, processing system, computer, processor, or the like, and may be implemented using any suitable combination of hardware and/or software. The machine-readable medium or article may include, for example, any suitable type of memory unit, memory device, memory article, memory medium, storage device, storage article, storage medium and/or storage unit, for example, memory, removable or nonremovable media, erasable or non-erasable media, writeable or re-writeable media, digital or analog media, hard disk, floppy disk, Compact Disk Read Only Memory (CD-ROM), Compact Disk Recordable (CD-R), Compact Disk Rewriteable (CD-RW), optical disk, magnetic media, magneto-optical media, removable memory cards or disks, various types of Digital Versatile Disk (DVD), a tape, a cassette, or the like. The instructions may include any suitable type of code, such as source code, compiled code, interpreted code, executable code, static code, dynamic code, encrypted code, and the like, implemented using any suitable high-level, low-level, object-oriented, visual, compiled and/or interpreted programming language.
Unless specifically stated otherwise, it may be appreciated that terms such as "processing," "computing," "calculating," "determining," or the like, refer to the action and/or processes of a computer or computing system, or similar electronic computing device, that manipulates and/or transforms data represented as physical quantities (e.g., electronic) within the computing system's registers and/or memories into other data similarly represented as physical quantities within the computing system's memories, registers or other such information storage, transmission or display devices. The embodiments are not limited in this context.
The term "coupled" may be used herein to refer to any type of relationship, direct or indirect, between the components in question, and may apply to electrical, mechanical, fluid, optical, electromagnetic, electromechanical or other connections. In addition, the terms "first", "second", etc. may be used herein only to facilitate discussion, and carry no particular temporal or chronological significance unless otherwise indicated.
Those skilled in the art will appreciate from the foregoing description that the broad techniques of the embodiments of the present invention can be implemented in a variety of forms. Therefore, while the embodiments of this invention have been described
in connection with particular examples thereof, the true scope of the embodiments of the invention should not be so limited since other modifications will become apparent to the skilled practitioner upon a study of the drawings, specification, and following claims.
Claims
1. A method of processing image data comprising:
receiving the image data in a graphics processing unit, wherein the image data is associated with a graphics application and includes one or more top-left dependent pixels; identifying a plurality of blocks in the image data;
selecting the plurality of blocks in a wavefront order for processing; and processing a plurality of pixels in each block in the wavefront order, wherein processing the plurality of pixels includes dispatching one or more parallel processing instructions.
2. The method of claim 1 , wherein the one or more parallel processing instructions include one or more single instruction multiple data (SIMD) instructions.
3. The method of claim 1, wherein processing the plurality of pixels includes: partitioning each block into an upper left section and a lower right section; and altering an offset parameter and a mask parameter to select pixels in each block for processing.
4. The method of claim 1, wherein a media kernel is used to select the plurality of blocks and process the plurality of pixels.
5. The method of claim 4, wherein the media kernel is a C for media (CM) kernel.
6. At least one machine readable medium comprising a plurality of instructions that in response to being executed on a computing device, cause the computing device to carry out a method according to any one of claims 1 to 5.
7. A system comprising logic to carry out a method according to any one of claims 1 to 5, and a display device to output a result associated with processing the plurality of pixels.
8. A method comprising:
identifying a plurality of blocks in image data having one or more top-left dependent pixels;
selecting the plurality of blocks in a wavefront order for processing; and processing a plurality of pixels in each block in the wavefront order.
9. The method of claim 8, wherein processing the plurality of pixels includes dispatching one or more parallel processing instructions.
10. The method of claim 9, wherein the one or more parallel processing instructions include one or more single instruction multiple data (SIMD) instructions.
1 1. The method of claim 8, wherein processing the plurality of pixels includes, partitioning each block into an upper left section and a lower right section; and altering an offset parameter and a mask parameter to select pixels in each block for processing.
12. The method of claim 8, wherein a media kernel is used to select the plurality of blocks and process the plurality of pixels.
13. The method of claim 12, wherein the media kernel is a C for media (CM) kernel.
14. The method of claim 8, further including receiving the image data in a graphics processing unit.
15. The method of claim 8, wherein the image data is associated with a graphics application.
16. At least one machine readable medium comprising a plurality of instructions that in response to being executed on a computing device, cause the computing device to carry out a method according to any one of claims 8 to 15.
17. A system comprising,
logic to,
identify a plurality of blocks in image data having one or more top-left dependent pixels,
select the plurality of blocks in a wavefront order for processing, and process a plurality of pixels in each block in the wavefront order; and a display device to output a result associated with processing the plurality of pixels.
18. The system of claim 17, wherein the logic is to dispatch one or more parallel processing instructions.
19. The system of claim 18, wherein the one or more parallel processing instructions are to include one or more single instruction multiple data (SIMD) instructions.
20. The system of claim 17, wherein the logic is to,
partition each block into an upper left section and a lower right section, and alter an offset parameter and a mask parameter to select pixels in each block for processing.
21. The system of claim 17, wherein the logic includes media kernel logic.
22. The system of claim 21 , wherein the media kernel logic is C for media (CM) kernel logic.
23. The system of claim 17, further including:
a central processing unit (CPU); and
a graphics processing unit (GPU), wherein the logic is to receive the image data in the GPU.
24. The system of claim 17, wherein the image data is to be associated with a graphics application.
Priority Applications (4)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US13/997,842 US9547880B2 (en) | 2012-04-09 | 2012-04-09 | Parallel processing image data having top-left dependent pixels |
| PCT/CN2012/000457 WO2013152452A1 (en) | 2012-04-09 | 2012-04-09 | Parallel processing image data having top-left dependent pixels |
| EP12874296.2A EP2837172A4 (en) | 2012-04-09 | 2012-04-09 | Parallel processing image data having top-left dependent pixels |
| US15/385,389 US11030711B2 (en) | 2012-04-09 | 2016-12-20 | Parallel processing image data having top-left dependent pixels |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| PCT/CN2012/000457 WO2013152452A1 (en) | 2012-04-09 | 2012-04-09 | Parallel processing image data having top-left dependent pixels |
Related Child Applications (2)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US13/997,842 A-371-Of-International US9547880B2 (en) | 2012-04-09 | 2012-04-09 | Parallel processing image data having top-left dependent pixels |
| US15/385,389 Continuation US11030711B2 (en) | 2012-04-09 | 2016-12-20 | Parallel processing image data having top-left dependent pixels |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2013152452A1 true WO2013152452A1 (en) | 2013-10-17 |
Family
ID=49326980
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2012/000457 Ceased WO2013152452A1 (en) | 2012-04-09 | 2012-04-09 | Parallel processing image data having top-left dependent pixels |
Country Status (3)
| Country | Link |
|---|---|
| US (2) | US9547880B2 (en) |
| EP (1) | EP2837172A4 (en) |
| WO (1) | WO2013152452A1 (en) |
Cited By (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US9547880B2 (en) | 2012-04-09 | 2017-01-17 | Intel Corporation | Parallel processing image data having top-left dependent pixels |
Families Citing this family (393)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20070084897A1 (en) | 2003-05-20 | 2007-04-19 | Shelton Frederick E Iv | Articulating surgical stapling instrument incorporating a two-piece e-beam firing mechanism |
| US9060770B2 (en) | 2003-05-20 | 2015-06-23 | Ethicon Endo-Surgery, Inc. | Robotically-driven surgical instrument with E-beam driver |
| US8215531B2 (en) | 2004-07-28 | 2012-07-10 | Ethicon Endo-Surgery, Inc. | Surgical stapling instrument having a medical substance dispenser |
| US9072535B2 (en) | 2011-05-27 | 2015-07-07 | Ethicon Endo-Surgery, Inc. | Surgical stapling instruments with rotatable staple deployment arrangements |
| US11998198B2 (en) | 2004-07-28 | 2024-06-04 | Cilag Gmbh International | Surgical stapling instrument incorporating a two-piece E-beam firing mechanism |
| US11896225B2 (en) | 2004-07-28 | 2024-02-13 | Cilag Gmbh International | Staple cartridge comprising a pan |
| US9237891B2 (en) | 2005-08-31 | 2016-01-19 | Ethicon Endo-Surgery, Inc. | Robotically-controlled surgical stapling devices that produce formed staples having different lengths |
| US7669746B2 (en) | 2005-08-31 | 2010-03-02 | Ethicon Endo-Surgery, Inc. | Staple cartridges for forming staples having differing formed staple heights |
| US11484312B2 (en) | 2005-08-31 | 2022-11-01 | Cilag Gmbh International | Staple cartridge comprising a staple driver arrangement |
| US10159482B2 (en) | 2005-08-31 | 2018-12-25 | Ethicon Llc | Fastener cartridge assembly comprising a fixed anvil and different staple heights |
| US11246590B2 (en) | 2005-08-31 | 2022-02-15 | Cilag Gmbh International | Staple cartridge including staple drivers having different unfired heights |
| US7934630B2 (en) | 2005-08-31 | 2011-05-03 | Ethicon Endo-Surgery, Inc. | Staple cartridges for forming staples having differing formed staple heights |
| US20070106317A1 (en) | 2005-11-09 | 2007-05-10 | Shelton Frederick E Iv | Hydraulically and electrically actuated articulation joints for surgical instruments |
| US11793518B2 (en) | 2006-01-31 | 2023-10-24 | Cilag Gmbh International | Powered surgical instruments with firing system lockout arrangements |
| US7753904B2 (en) | 2006-01-31 | 2010-07-13 | Ethicon Endo-Surgery, Inc. | Endoscopic surgical instrument with a handle that can articulate with respect to the shaft |
| US20120292367A1 (en) | 2006-01-31 | 2012-11-22 | Ethicon Endo-Surgery, Inc. | Robotically-controlled end effector |
| US20110024477A1 (en) | 2009-02-06 | 2011-02-03 | Hall Steven G | Driven Surgical Stapler Improvements |
| US11224427B2 (en) | 2006-01-31 | 2022-01-18 | Cilag Gmbh International | Surgical stapling system including a console and retraction assembly |
| US8820603B2 (en) | 2006-01-31 | 2014-09-02 | Ethicon Endo-Surgery, Inc. | Accessing data stored in a memory of a surgical instrument |
| US11278279B2 (en) | 2006-01-31 | 2022-03-22 | Cilag Gmbh International | Surgical instrument assembly |
| US8708213B2 (en) | 2006-01-31 | 2014-04-29 | Ethicon Endo-Surgery, Inc. | Surgical instrument having a feedback system |
| US8186555B2 (en) | 2006-01-31 | 2012-05-29 | Ethicon Endo-Surgery, Inc. | Motor-driven surgical cutting and fastening instrument with mechanical closure system |
| US20110290856A1 (en) | 2006-01-31 | 2011-12-01 | Ethicon Endo-Surgery, Inc. | Robotically-controlled surgical instrument with force-feedback capabilities |
| US7845537B2 (en) | 2006-01-31 | 2010-12-07 | Ethicon Endo-Surgery, Inc. | Surgical instrument having recording capabilities |
| US8992422B2 (en) | 2006-03-23 | 2015-03-31 | Ethicon Endo-Surgery, Inc. | Robotically-controlled endoscopic accessory channel |
| US8322455B2 (en) | 2006-06-27 | 2012-12-04 | Ethicon Endo-Surgery, Inc. | Manually driven surgical cutting and fastening instrument |
| US10568652B2 (en) | 2006-09-29 | 2020-02-25 | Ethicon Llc | Surgical staples having attached drivers of different heights and stapling instruments for deploying the same |
| US11980366B2 (en) | 2006-10-03 | 2024-05-14 | Cilag Gmbh International | Surgical instrument |
| US8840603B2 (en) | 2007-01-10 | 2014-09-23 | Ethicon Endo-Surgery, Inc. | Surgical instrument with wireless communication between control unit and sensor transponders |
| US8684253B2 (en) | 2007-01-10 | 2014-04-01 | Ethicon Endo-Surgery, Inc. | Surgical instrument with wireless communication between a control unit of a robotic system and remote sensor |
| US11291441B2 (en) | 2007-01-10 | 2022-04-05 | Cilag Gmbh International | Surgical instrument with wireless communication between control unit and remote sensor |
| US20080169333A1 (en) | 2007-01-11 | 2008-07-17 | Shelton Frederick E | Surgical stapler end effector with tapered distal end |
| US11039836B2 (en) | 2007-01-11 | 2021-06-22 | Cilag Gmbh International | Staple cartridge for use with a surgical stapling instrument |
| US7438209B1 (en) | 2007-03-15 | 2008-10-21 | Ethicon Endo-Surgery, Inc. | Surgical stapling instruments having a releasable staple-forming pocket |
| US8931682B2 (en) | 2007-06-04 | 2015-01-13 | Ethicon Endo-Surgery, Inc. | Robotically-controlled shaft based rotary drive systems for surgical instruments |
| US11857181B2 (en) | 2007-06-04 | 2024-01-02 | Cilag Gmbh International | Robotically-controlled shaft based rotary drive systems for surgical instruments |
| US7753245B2 (en) | 2007-06-22 | 2010-07-13 | Ethicon Endo-Surgery, Inc. | Surgical stapling instruments |
| US11849941B2 (en) | 2007-06-29 | 2023-12-26 | Cilag Gmbh International | Staple cartridge having staple cavities extending at a transverse angle relative to a longitudinal cartridge axis |
| US7866527B2 (en) | 2008-02-14 | 2011-01-11 | Ethicon Endo-Surgery, Inc. | Surgical stapling apparatus with interlockable firing system |
| US8573465B2 (en) | 2008-02-14 | 2013-11-05 | Ethicon Endo-Surgery, Inc. | Robotically-controlled surgical end effector system with rotary actuated closure systems |
| US9179912B2 (en) | 2008-02-14 | 2015-11-10 | Ethicon Endo-Surgery, Inc. | Robotically-controlled motorized surgical cutting and fastening instrument |
| US8636736B2 (en) | 2008-02-14 | 2014-01-28 | Ethicon Endo-Surgery, Inc. | Motorized surgical cutting and fastening instrument |
| US8758391B2 (en) | 2008-02-14 | 2014-06-24 | Ethicon Endo-Surgery, Inc. | Interchangeable tools for surgical instruments |
| JP5410110B2 (en) | 2008-02-14 | 2014-02-05 | エシコン・エンド−サージェリィ・インコーポレイテッド | Surgical cutting / fixing instrument with RF electrode |
| US11986183B2 (en) | 2008-02-14 | 2024-05-21 | Cilag Gmbh International | Surgical cutting and fastening instrument comprising a plurality of sensors to measure an electrical parameter |
| US7819298B2 (en) | 2008-02-14 | 2010-10-26 | Ethicon Endo-Surgery, Inc. | Surgical stapling apparatus with control features operable with one hand |
| US10390823B2 (en) | 2008-02-15 | 2019-08-27 | Ethicon Llc | End effector comprising an adjunct |
| US9005230B2 (en) | 2008-09-23 | 2015-04-14 | Ethicon Endo-Surgery, Inc. | Motorized surgical instrument |
| US8210411B2 (en) | 2008-09-23 | 2012-07-03 | Ethicon Endo-Surgery, Inc. | Motor-driven surgical cutting instrument |
| US9386983B2 (en) | 2008-09-23 | 2016-07-12 | Ethicon Endo-Surgery, Llc | Robotically-controlled motorized surgical instrument |
| US11648005B2 (en) | 2008-09-23 | 2023-05-16 | Cilag Gmbh International | Robotically-controlled motorized surgical instrument with an end effector |
| US8608045B2 (en) | 2008-10-10 | 2013-12-17 | Ethicon Endo-Sugery, Inc. | Powered surgical cutting and stapling apparatus with manually retractable firing system |
| US8517239B2 (en) | 2009-02-05 | 2013-08-27 | Ethicon Endo-Surgery, Inc. | Surgical stapling instrument comprising a magnetic element driver |
| JP2012517287A (en) | 2009-02-06 | 2012-08-02 | エシコン・エンド−サージェリィ・インコーポレイテッド | Improvement of driven surgical stapler |
| US8220688B2 (en) | 2009-12-24 | 2012-07-17 | Ethicon Endo-Surgery, Inc. | Motor-driven surgical cutting instrument with electric actuator directional control assembly |
| US8851354B2 (en) | 2009-12-24 | 2014-10-07 | Ethicon Endo-Surgery, Inc. | Surgical cutting instrument that analyzes tissue thickness |
| US8783543B2 (en) | 2010-07-30 | 2014-07-22 | Ethicon Endo-Surgery, Inc. | Tissue acquisition arrangements and methods for surgical stapling devices |
| US9241714B2 (en) | 2011-04-29 | 2016-01-26 | Ethicon Endo-Surgery, Inc. | Tissue thickness compensator and method for making the same |
| US10945731B2 (en) | 2010-09-30 | 2021-03-16 | Ethicon Llc | Tissue thickness compensator comprising controlled release and expansion |
| US9272406B2 (en) | 2010-09-30 | 2016-03-01 | Ethicon Endo-Surgery, Llc | Fastener cartridge comprising a cutting member for releasing a tissue thickness compensator |
| US20120080336A1 (en) | 2010-09-30 | 2012-04-05 | Ethicon Endo-Surgery, Inc. | Staple cartridge comprising staples positioned within a compressible portion thereof |
| US9386988B2 (en) | 2010-09-30 | 2016-07-12 | Ethicon End-Surgery, LLC | Retainer assembly including a tissue thickness compensator |
| US11812965B2 (en) | 2010-09-30 | 2023-11-14 | Cilag Gmbh International | Layer of material for a surgical end effector |
| US11298125B2 (en) | 2010-09-30 | 2022-04-12 | Cilag Gmbh International | Tissue stapler having a thickness compensator |
| US9629814B2 (en) | 2010-09-30 | 2017-04-25 | Ethicon Endo-Surgery, Llc | Tissue thickness compensator configured to redistribute compressive forces |
| US11925354B2 (en) | 2010-09-30 | 2024-03-12 | Cilag Gmbh International | Staple cartridge comprising staples positioned within a compressible portion thereof |
| US12213666B2 (en) | 2010-09-30 | 2025-02-04 | Cilag Gmbh International | Tissue thickness compensator comprising layers |
| US8695866B2 (en) | 2010-10-01 | 2014-04-15 | Ethicon Endo-Surgery, Inc. | Surgical instrument having a power control circuit |
| CN104053407B (en) | 2011-04-29 | 2016-10-26 | 伊西康内外科公司 | Nail bin including the nail being positioned in its compressible portion |
| US11207064B2 (en) | 2011-05-27 | 2021-12-28 | Cilag Gmbh International | Automated end effector component reloading system for use with a robotic system |
| US9044230B2 (en) | 2012-02-13 | 2015-06-02 | Ethicon Endo-Surgery, Inc. | Surgical cutting and fastening instrument with apparatus for determining cartridge and firing motion status |
| MX358135B (en) | 2012-03-28 | 2018-08-06 | Ethicon Endo Surgery Inc | Tissue thickness compensator comprising a plurality of layers. |
| BR112014024098B1 (en) | 2012-03-28 | 2021-05-25 | Ethicon Endo-Surgery, Inc. | staple cartridge |
| MX353040B (en) | 2012-03-28 | 2017-12-18 | Ethicon Endo Surgery Inc | Retainer assembly including a tissue thickness compensator. |
| US9101358B2 (en) | 2012-06-15 | 2015-08-11 | Ethicon Endo-Surgery, Inc. | Articulatable surgical instrument comprising a firing drive |
| US11197671B2 (en) | 2012-06-28 | 2021-12-14 | Cilag Gmbh International | Stapling assembly comprising a lockout |
| US9282974B2 (en) | 2012-06-28 | 2016-03-15 | Ethicon Endo-Surgery, Llc | Empty clip cartridge lockout |
| US9364230B2 (en) | 2012-06-28 | 2016-06-14 | Ethicon Endo-Surgery, Llc | Surgical stapling instruments with rotary joint assemblies |
| US12383267B2 (en) | 2012-06-28 | 2025-08-12 | Cilag Gmbh International | Robotically powered surgical device with manually-actuatable reversing system |
| US20140001231A1 (en) | 2012-06-28 | 2014-01-02 | Ethicon Endo-Surgery, Inc. | Firing system lockout arrangements for surgical instruments |
| US9289256B2 (en) | 2012-06-28 | 2016-03-22 | Ethicon Endo-Surgery, Llc | Surgical end effectors having angled tissue-contacting surfaces |
| BR112014032776B1 (en) | 2012-06-28 | 2021-09-08 | Ethicon Endo-Surgery, Inc | SURGICAL INSTRUMENT SYSTEM AND SURGICAL KIT FOR USE WITH A SURGICAL INSTRUMENT SYSTEM |
| RU2636861C2 (en) | 2012-06-28 | 2017-11-28 | Этикон Эндо-Серджери, Инк. | Blocking of empty cassette with clips |
| MX368026B (en) | 2013-03-01 | 2019-09-12 | Ethicon Endo Surgery Inc | Articulatable surgical instruments with conductive pathways for signal communication. |
| BR112015021082B1 (en) | 2013-03-01 | 2022-05-10 | Ethicon Endo-Surgery, Inc | surgical instrument |
| US20140263541A1 (en) | 2013-03-14 | 2014-09-18 | Ethicon Endo-Surgery, Inc. | Articulatable surgical instrument comprising an articulation lock |
| US9629629B2 (en) | 2013-03-14 | 2017-04-25 | Ethicon Endo-Surgey, LLC | Control systems for surgical instruments |
| BR112015026109B1 (en) | 2013-04-16 | 2022-02-22 | Ethicon Endo-Surgery, Inc | surgical instrument |
| US9844368B2 (en) | 2013-04-16 | 2017-12-19 | Ethicon Llc | Surgical system comprising first and second drive systems |
| US9775609B2 (en) | 2013-08-23 | 2017-10-03 | Ethicon Llc | Tamper proof circuit for surgical instrument battery pack |
| BR112016003329B1 (en) | 2013-08-23 | 2021-12-21 | Ethicon Endo-Surgery, Llc | SURGICAL INSTRUMENT |
| US9962161B2 (en) | 2014-02-12 | 2018-05-08 | Ethicon Llc | Deliverable surgical instrument |
| BR112016021943B1 (en) | 2014-03-26 | 2022-06-14 | Ethicon Endo-Surgery, Llc | SURGICAL INSTRUMENT FOR USE BY AN OPERATOR IN A SURGICAL PROCEDURE |
| US20150272557A1 (en) | 2014-03-26 | 2015-10-01 | Ethicon Endo-Surgery, Inc. | Modular surgical instrument system |
| US9750499B2 (en) | 2014-03-26 | 2017-09-05 | Ethicon Llc | Surgical stapling instrument system |
| US9804618B2 (en) | 2014-03-26 | 2017-10-31 | Ethicon Llc | Systems and methods for controlling a segmented circuit |
| US12232723B2 (en) | 2014-03-26 | 2025-02-25 | Cilag Gmbh International | Systems and methods for controlling a segmented circuit |
| BR112016023825B1 (en) | 2014-04-16 | 2022-08-02 | Ethicon Endo-Surgery, Llc | STAPLE CARTRIDGE FOR USE WITH A SURGICAL STAPLER AND STAPLE CARTRIDGE FOR USE WITH A SURGICAL INSTRUMENT |
| CN106456176B (en) | 2014-04-16 | 2019-06-28 | 伊西康内外科有限责任公司 | Fastener Cartridge Including Extensions With Different Configurations |
| US11517315B2 (en) | 2014-04-16 | 2022-12-06 | Cilag Gmbh International | Fastener cartridges including extensions having different configurations |
| US10426476B2 (en) | 2014-09-26 | 2019-10-01 | Ethicon Llc | Circular fastener cartridges for applying radially expandable fastener lines |
| US20150297223A1 (en) | 2014-04-16 | 2015-10-22 | Ethicon Endo-Surgery, Inc. | Fastener cartridges including extensions having different configurations |
| CN106456159B (en) | 2014-04-16 | 2019-03-08 | 伊西康内外科有限责任公司 | Fastener Cartridge Assembly and Nail Retainer Cover Arrangement |
| US20160066913A1 (en) | 2014-09-05 | 2016-03-10 | Ethicon Endo-Surgery, Inc. | Local display of tissue parameter stabilization |
| US11311294B2 (en) | 2014-09-05 | 2022-04-26 | Cilag Gmbh International | Powered medical device including measurement of closure state of jaws |
| BR112017004361B1 (en) | 2014-09-05 | 2023-04-11 | Ethicon Llc | ELECTRONIC SYSTEM FOR A SURGICAL INSTRUMENT |
| US10105142B2 (en) | 2014-09-18 | 2018-10-23 | Ethicon Llc | Surgical stapler with plurality of cutting elements |
| US11523821B2 (en) | 2014-09-26 | 2022-12-13 | Cilag Gmbh International | Method for creating a flexible staple line |
| CN107427300B (en) | 2014-09-26 | 2020-12-04 | 伊西康有限责任公司 | Surgical suture buttresses and auxiliary materials |
| US10076325B2 (en) | 2014-10-13 | 2018-09-18 | Ethicon Llc | Surgical stapling apparatus comprising a tissue stop |
| US9924944B2 (en) | 2014-10-16 | 2018-03-27 | Ethicon Llc | Staple cartridge comprising an adjunct material |
| US11141153B2 (en) | 2014-10-29 | 2021-10-12 | Cilag Gmbh International | Staple cartridges comprising driver arrangements |
| US10517594B2 (en) | 2014-10-29 | 2019-12-31 | Ethicon Llc | Cartridge assemblies for surgical staplers |
| US9844376B2 (en) | 2014-11-06 | 2017-12-19 | Ethicon Llc | Staple cartridge comprising a releasable adjunct material |
| US10736636B2 (en) | 2014-12-10 | 2020-08-11 | Ethicon Llc | Articulatable surgical instrument system |
| US10245027B2 (en) | 2014-12-18 | 2019-04-02 | Ethicon Llc | Surgical instrument with an anvil that is selectively movable about a discrete non-movable axis relative to a staple cartridge |
| MX389118B (en) | 2014-12-18 | 2025-03-20 | Ethicon Llc | SURGICAL INSTRUMENT WITH AN ANVIL THAT CAN BE SELECTIVELY MOVED ON A DISCRETE, NON-MOBILE AXIS RELATIVE TO A STAPLE CARTRIDGE. |
| US10085748B2 (en) | 2014-12-18 | 2018-10-02 | Ethicon Llc | Locking arrangements for detachable shaft assemblies with articulatable surgical end effectors |
| US9844375B2 (en) | 2014-12-18 | 2017-12-19 | Ethicon Llc | Drive arrangements for articulatable surgical instruments |
| US9987000B2 (en) | 2014-12-18 | 2018-06-05 | Ethicon Llc | Surgical instrument assembly comprising a flexible articulation system |
| US9844374B2 (en) | 2014-12-18 | 2017-12-19 | Ethicon Llc | Surgical instrument systems comprising an articulatable end effector and means for adjusting the firing stroke of a firing member |
| US11154301B2 (en) | 2015-02-27 | 2021-10-26 | Cilag Gmbh International | Modular stapling assembly |
| US10617412B2 (en) | 2015-03-06 | 2020-04-14 | Ethicon Llc | System for detecting the mis-insertion of a staple cartridge into a surgical stapler |
| US10245033B2 (en) | 2015-03-06 | 2019-04-02 | Ethicon Llc | Surgical instrument comprising a lockable battery housing |
| JP2020121162A (en) | 2015-03-06 | 2020-08-13 | エシコン エルエルシーEthicon LLC | Time dependent evaluation of sensor data to determine stability element, creep element and viscoelastic element of measurement |
| US9993248B2 (en) | 2015-03-06 | 2018-06-12 | Ethicon Endo-Surgery, Llc | Smart sensors with local signal processing |
| US10441279B2 (en) | 2015-03-06 | 2019-10-15 | Ethicon Llc | Multiple level thresholds to modify operation of powered surgical instruments |
| US10687806B2 (en) | 2015-03-06 | 2020-06-23 | Ethicon Llc | Adaptive tissue compression techniques to adjust closure rates for multiple tissue types |
| US9901342B2 (en) | 2015-03-06 | 2018-02-27 | Ethicon Endo-Surgery, Llc | Signal and power communication system positioned on a rotatable shaft |
| US10052044B2 (en) | 2015-03-06 | 2018-08-21 | Ethicon Llc | Time dependent evaluation of sensor data to determine stability, creep, and viscoelastic elements of measures |
| US9808246B2 (en) | 2015-03-06 | 2017-11-07 | Ethicon Endo-Surgery, Llc | Method of operating a powered surgical instrument |
| US10390825B2 (en) | 2015-03-31 | 2019-08-27 | Ethicon Llc | Surgical instrument with progressive rotary drive systems |
| US11058425B2 (en) | 2015-08-17 | 2021-07-13 | Ethicon Llc | Implantable layers for a surgical instrument |
| US10238386B2 (en) | 2015-09-23 | 2019-03-26 | Ethicon Llc | Surgical stapler having motor control based on an electrical parameter related to a motor current |
| US10105139B2 (en) | 2015-09-23 | 2018-10-23 | Ethicon Llc | Surgical stapler having downstream current-based motor control |
| US10299878B2 (en) | 2015-09-25 | 2019-05-28 | Ethicon Llc | Implantable adjunct systems for determining adjunct skew |
| US11890015B2 (en) | 2015-09-30 | 2024-02-06 | Cilag Gmbh International | Compressible adjunct with crossing spacer fibers |
| US10980539B2 (en) | 2015-09-30 | 2021-04-20 | Ethicon Llc | Implantable adjunct comprising bonded layers |
| US11690623B2 (en) | 2015-09-30 | 2023-07-04 | Cilag Gmbh International | Method for applying an implantable layer to a fastener cartridge |
| US20170086829A1 (en) | 2015-09-30 | 2017-03-30 | Ethicon Endo-Surgery, Llc | Compressible adjunct with intermediate supporting structures |
| US10368865B2 (en) | 2015-12-30 | 2019-08-06 | Ethicon Llc | Mechanisms for compensating for drivetrain failure in powered surgical instruments |
| US10292704B2 (en) | 2015-12-30 | 2019-05-21 | Ethicon Llc | Mechanisms for compensating for battery pack failure in powered surgical instruments |
| US10265068B2 (en) | 2015-12-30 | 2019-04-23 | Ethicon Llc | Surgical instruments with separable motors and motor control circuits |
| BR112018016098B1 (en) | 2016-02-09 | 2023-02-23 | Ethicon Llc | SURGICAL INSTRUMENT |
| US11213293B2 (en) | 2016-02-09 | 2022-01-04 | Cilag Gmbh International | Articulatable surgical instruments with single articulation link arrangements |
| US10448948B2 (en) | 2016-02-12 | 2019-10-22 | Ethicon Llc | Mechanisms for compensating for drivetrain failure in powered surgical instruments |
| US11224426B2 (en) | 2016-02-12 | 2022-01-18 | Cilag Gmbh International | Mechanisms for compensating for drivetrain failure in powered surgical instruments |
| US10617413B2 (en) | 2016-04-01 | 2020-04-14 | Ethicon Llc | Closure system arrangements for surgical cutting and stapling devices with separate and distinct firing shafts |
| US10426467B2 (en) | 2016-04-15 | 2019-10-01 | Ethicon Llc | Surgical instrument with detection sensors |
| US11607239B2 (en) | 2016-04-15 | 2023-03-21 | Cilag Gmbh International | Systems and methods for controlling a surgical stapling and cutting instrument |
| US10456137B2 (en) | 2016-04-15 | 2019-10-29 | Ethicon Llc | Staple formation detection mechanisms |
| US10357247B2 (en) | 2016-04-15 | 2019-07-23 | Ethicon Llc | Surgical instrument with multiple program responses during a firing motion |
| US10828028B2 (en) | 2016-04-15 | 2020-11-10 | Ethicon Llc | Surgical instrument with multiple program responses during a firing motion |
| US10492783B2 (en) | 2016-04-15 | 2019-12-03 | Ethicon, Llc | Surgical instrument with improved stop/start control during a firing motion |
| US11179150B2 (en) | 2016-04-15 | 2021-11-23 | Cilag Gmbh International | Systems and methods for controlling a surgical stapling and cutting instrument |
| US10335145B2 (en) | 2016-04-15 | 2019-07-02 | Ethicon Llc | Modular surgical instrument with configurable operating mode |
| US20170296173A1 (en) | 2016-04-18 | 2017-10-19 | Ethicon Endo-Surgery, Llc | Method for operating a surgical instrument |
| US11317917B2 (en) | 2016-04-18 | 2022-05-03 | Cilag Gmbh International | Surgical stapling system comprising a lockable firing assembly |
| US10426469B2 (en) | 2016-04-18 | 2019-10-01 | Ethicon Llc | Surgical instrument comprising a primary firing lockout and a secondary firing lockout |
| US10500000B2 (en) | 2016-08-16 | 2019-12-10 | Ethicon Llc | Surgical tool with manual control of end effector jaws |
| US11419606B2 (en) | 2016-12-21 | 2022-08-23 | Cilag Gmbh International | Shaft assembly comprising a clutch configured to adapt the output of a rotary firing member to two different systems |
| US20180168615A1 (en) | 2016-12-21 | 2018-06-21 | Ethicon Endo-Surgery, Llc | Method of deforming staples from two different types of staple cartridges with the same surgical stapling instrument |
| JP7010956B2 (en) | 2016-12-21 | 2022-01-26 | エシコン エルエルシー | How to staple tissue |
| US10835246B2 (en) | 2016-12-21 | 2020-11-17 | Ethicon Llc | Staple cartridges and arrangements of staples and staple cavities therein |
| US10667809B2 (en) | 2016-12-21 | 2020-06-02 | Ethicon Llc | Staple cartridge and staple cartridge channel comprising windows defined therein |
| MX2019007311A (en) | 2016-12-21 | 2019-11-18 | Ethicon Llc | Surgical stapling systems. |
| US10898186B2 (en) | 2016-12-21 | 2021-01-26 | Ethicon Llc | Staple forming pocket arrangements comprising primary sidewalls and pocket sidewalls |
| US11191539B2 (en) | 2016-12-21 | 2021-12-07 | Cilag Gmbh International | Shaft assembly comprising a manually-operable retraction system for use with a motorized surgical instrument system |
| US11090048B2 (en) | 2016-12-21 | 2021-08-17 | Cilag Gmbh International | Method for resetting a fuse of a surgical instrument shaft |
| CN110114014B (en) | 2016-12-21 | 2022-08-09 | 爱惜康有限责任公司 | Surgical instrument system including end effector and firing assembly lockout |
| US10779823B2 (en) | 2016-12-21 | 2020-09-22 | Ethicon Llc | Firing member pin angle |
| US10568624B2 (en) | 2016-12-21 | 2020-02-25 | Ethicon Llc | Surgical instruments with jaws that are pivotable about a fixed axis and include separate and distinct closure and firing systems |
| JP2020501815A (en) | 2016-12-21 | 2020-01-23 | エシコン エルエルシーEthicon LLC | Surgical stapling system |
| US20180168619A1 (en) | 2016-12-21 | 2018-06-21 | Ethicon Endo-Surgery, Llc | Surgical stapling systems |
| CN110099619B (en) | 2016-12-21 | 2022-07-15 | 爱惜康有限责任公司 | Latching device for surgical end effector and replaceable tool assembly |
| US10610224B2 (en) | 2016-12-21 | 2020-04-07 | Ethicon Llc | Lockout arrangements for surgical end effectors and replaceable tool assemblies |
| US10888322B2 (en) | 2016-12-21 | 2021-01-12 | Ethicon Llc | Surgical instrument comprising a cutting member |
| US11134942B2 (en) | 2016-12-21 | 2021-10-05 | Cilag Gmbh International | Surgical stapling instruments and staple-forming anvils |
| US20180168625A1 (en) | 2016-12-21 | 2018-06-21 | Ethicon Endo-Surgery, Llc | Surgical stapling instruments with smart staple cartridges |
| US10639034B2 (en) | 2016-12-21 | 2020-05-05 | Ethicon Llc | Surgical instruments with lockout arrangements for preventing firing system actuation unless an unspent staple cartridge is present |
| JP7010957B2 (en) | 2016-12-21 | 2022-01-26 | エシコン エルエルシー | Shaft assembly with lockout |
| US10904546B2 (en) * | 2017-04-10 | 2021-01-26 | Nec Corporation | Moving image processing device, moving image processing method, and recording medium having moving image processing program stored thereon |
| US10646220B2 (en) | 2017-06-20 | 2020-05-12 | Ethicon Llc | Systems and methods for controlling displacement member velocity for a surgical instrument |
| US10881396B2 (en) | 2017-06-20 | 2021-01-05 | Ethicon Llc | Surgical instrument with variable duration trigger arrangement |
| US11071554B2 (en) | 2017-06-20 | 2021-07-27 | Cilag Gmbh International | Closed loop feedback control of motor velocity of a surgical stapling and cutting instrument based on magnitude of velocity error measurements |
| USD879809S1 (en) | 2017-06-20 | 2020-03-31 | Ethicon Llc | Display panel with changeable graphical user interface |
| US11517325B2 (en) | 2017-06-20 | 2022-12-06 | Cilag Gmbh International | Closed loop feedback control of motor velocity of a surgical stapling and cutting instrument based on measured displacement distance traveled over a specified time interval |
| US10980537B2 (en) | 2017-06-20 | 2021-04-20 | Ethicon Llc | Closed loop feedback control of motor velocity of a surgical stapling and cutting instrument based on measured time over a specified number of shaft rotations |
| US10881399B2 (en) | 2017-06-20 | 2021-01-05 | Ethicon Llc | Techniques for adaptive control of motor velocity of a surgical stapling and cutting instrument |
| US10813639B2 (en) | 2017-06-20 | 2020-10-27 | Ethicon Llc | Closed loop feedback control of motor velocity of a surgical stapling and cutting instrument based on system conditions |
| USD879808S1 (en) | 2017-06-20 | 2020-03-31 | Ethicon Llc | Display panel with graphical user interface |
| US11090046B2 (en) | 2017-06-20 | 2021-08-17 | Cilag Gmbh International | Systems and methods for controlling displacement member motion of a surgical stapling and cutting instrument |
| US10307170B2 (en) | 2017-06-20 | 2019-06-04 | Ethicon Llc | Method for closed loop control of motor velocity of a surgical stapling and cutting instrument |
| US10624633B2 (en) | 2017-06-20 | 2020-04-21 | Ethicon Llc | Systems and methods for controlling motor velocity of a surgical stapling and cutting instrument |
| US12490980B2 (en) | 2017-06-20 | 2025-12-09 | Cilag Gmbh International | Surgical instrument having controllable articulation velocity |
| US10888321B2 (en) | 2017-06-20 | 2021-01-12 | Ethicon Llc | Systems and methods for controlling velocity of a displacement member of a surgical stapling and cutting instrument |
| US10779820B2 (en) | 2017-06-20 | 2020-09-22 | Ethicon Llc | Systems and methods for controlling motor speed according to user input for a surgical instrument |
| USD890784S1 (en) | 2017-06-20 | 2020-07-21 | Ethicon Llc | Display panel with changeable graphical user interface |
| US11653914B2 (en) | 2017-06-20 | 2023-05-23 | Cilag Gmbh International | Systems and methods for controlling motor velocity of a surgical stapling and cutting instrument according to articulation angle of end effector |
| US11382638B2 (en) | 2017-06-20 | 2022-07-12 | Cilag Gmbh International | Closed loop feedback control of motor velocity of a surgical stapling and cutting instrument based on measured time over a specified displacement distance |
| US10856869B2 (en) | 2017-06-27 | 2020-12-08 | Ethicon Llc | Surgical anvil arrangements |
| US10772629B2 (en) | 2017-06-27 | 2020-09-15 | Ethicon Llc | Surgical anvil arrangements |
| US11324503B2 (en) | 2017-06-27 | 2022-05-10 | Cilag Gmbh International | Surgical firing member arrangements |
| US10631859B2 (en) | 2017-06-27 | 2020-04-28 | Ethicon Llc | Articulation systems for surgical instruments |
| US10993716B2 (en) | 2017-06-27 | 2021-05-04 | Ethicon Llc | Surgical anvil arrangements |
| US11266405B2 (en) | 2017-06-27 | 2022-03-08 | Cilag Gmbh International | Surgical anvil manufacturing methods |
| USD906355S1 (en) | 2017-06-28 | 2020-12-29 | Ethicon Llc | Display screen or portion thereof with a graphical user interface for a surgical instrument |
| US10716614B2 (en) | 2017-06-28 | 2020-07-21 | Ethicon Llc | Surgical shaft assemblies with slip ring assemblies with increased contact pressure |
| US11696759B2 (en) | 2017-06-28 | 2023-07-11 | Cilag Gmbh International | Surgical stapling instruments comprising shortened staple cartridge noses |
| US10765427B2 (en) | 2017-06-28 | 2020-09-08 | Ethicon Llc | Method for articulating a surgical instrument |
| US11259805B2 (en) | 2017-06-28 | 2022-03-01 | Cilag Gmbh International | Surgical instrument comprising firing member supports |
| BR112019027065B1 (en) | 2017-06-28 | 2023-12-26 | Ethicon Llc | SURGICAL INSTRUMENT AND SURGICAL SYSTEM |
| US10903685B2 (en) | 2017-06-28 | 2021-01-26 | Ethicon Llc | Surgical shaft assemblies with slip ring assemblies forming capacitive channels |
| US11246592B2 (en) | 2017-06-28 | 2022-02-15 | Cilag Gmbh International | Surgical instrument comprising an articulation system lockable to a frame |
| US11564686B2 (en) | 2017-06-28 | 2023-01-31 | Cilag Gmbh International | Surgical shaft assemblies with flexible interfaces |
| US10786253B2 (en) | 2017-06-28 | 2020-09-29 | Ethicon Llc | Surgical end effectors with improved jaw aperture arrangements |
| EP3420947B1 (en) | 2017-06-28 | 2022-05-25 | Cilag GmbH International | Surgical instrument comprising selectively actuatable rotatable couplers |
| US10932772B2 (en) | 2017-06-29 | 2021-03-02 | Ethicon Llc | Methods for closed loop velocity control for robotic surgical instrument |
| US11007022B2 (en) | 2017-06-29 | 2021-05-18 | Ethicon Llc | Closed loop velocity control techniques based on sensed tissue parameters for robotic surgical instrument |
| US10898183B2 (en) | 2017-06-29 | 2021-01-26 | Ethicon Llc | Robotic surgical instrument with closed loop feedback techniques for advancement of closure member during firing |
| US11974742B2 (en) | 2017-08-03 | 2024-05-07 | Cilag Gmbh International | Surgical system comprising an articulation bailout |
| US11304695B2 (en) | 2017-08-03 | 2022-04-19 | Cilag Gmbh International | Surgical system shaft interconnection |
| US11944300B2 (en) | 2017-08-03 | 2024-04-02 | Cilag Gmbh International | Method for operating a surgical system bailout |
| US11471155B2 (en) | 2017-08-03 | 2022-10-18 | Cilag Gmbh International | Surgical system bailout |
| USD907648S1 (en) | 2017-09-29 | 2021-01-12 | Ethicon Llc | Display screen or portion thereof with animated graphical user interface |
| USD907647S1 (en) | 2017-09-29 | 2021-01-12 | Ethicon Llc | Display screen or portion thereof with animated graphical user interface |
| US10743872B2 (en) | 2017-09-29 | 2020-08-18 | Ethicon Llc | System and methods for controlling a display of a surgical instrument |
| US10765429B2 (en) | 2017-09-29 | 2020-09-08 | Ethicon Llc | Systems and methods for providing alerts according to the operational state of a surgical instrument |
| US11399829B2 (en) | 2017-09-29 | 2022-08-02 | Cilag Gmbh International | Systems and methods of initiating a power shutdown mode for a surgical instrument |
| USD917500S1 (en) | 2017-09-29 | 2021-04-27 | Ethicon Llc | Display screen or portion thereof with graphical user interface |
| US11090075B2 (en) | 2017-10-30 | 2021-08-17 | Cilag Gmbh International | Articulation features for surgical end effector |
| US11134944B2 (en) | 2017-10-30 | 2021-10-05 | Cilag Gmbh International | Surgical stapler knife motion controls |
| US10779903B2 (en) | 2017-10-31 | 2020-09-22 | Ethicon Llc | Positive shaft rotation lock activated by jaw closure |
| US10842490B2 (en) | 2017-10-31 | 2020-11-24 | Ethicon Llc | Cartridge body design with force reduction based on firing completion |
| US11006955B2 (en) | 2017-12-15 | 2021-05-18 | Ethicon Llc | End effectors with positive jaw opening features for use with adapters for electromechanical surgical instruments |
| US10743875B2 (en) | 2017-12-15 | 2020-08-18 | Ethicon Llc | Surgical end effectors with jaw stiffener arrangements configured to permit monitoring of firing member |
| US10966718B2 (en) | 2017-12-15 | 2021-04-06 | Ethicon Llc | Dynamic clamping assemblies with improved wear characteristics for use in connection with electromechanical surgical instruments |
| US10743874B2 (en) | 2017-12-15 | 2020-08-18 | Ethicon Llc | Sealed adapters for use with electromechanical surgical instruments |
| US10828033B2 (en) | 2017-12-15 | 2020-11-10 | Ethicon Llc | Handheld electromechanical surgical instruments with improved motor control arrangements for positioning components of an adapter coupled thereto |
| US10869666B2 (en) | 2017-12-15 | 2020-12-22 | Ethicon Llc | Adapters with control systems for controlling multiple motors of an electromechanical surgical instrument |
| US11033267B2 (en) | 2017-12-15 | 2021-06-15 | Ethicon Llc | Systems and methods of controlling a clamping member firing rate of a surgical instrument |
| US10779826B2 (en) | 2017-12-15 | 2020-09-22 | Ethicon Llc | Methods of operating surgical end effectors |
| US10779825B2 (en) | 2017-12-15 | 2020-09-22 | Ethicon Llc | Adapters with end effector position sensing and control arrangements for use in connection with electromechanical surgical instruments |
| US10687813B2 (en) | 2017-12-15 | 2020-06-23 | Ethicon Llc | Adapters with firing stroke sensing arrangements for use in connection with electromechanical surgical instruments |
| US11197670B2 (en) | 2017-12-15 | 2021-12-14 | Cilag Gmbh International | Surgical end effectors with pivotal jaws configured to touch at their respective distal ends when fully closed |
| US11071543B2 (en) | 2017-12-15 | 2021-07-27 | Cilag Gmbh International | Surgical end effectors with clamping assemblies configured to increase jaw aperture ranges |
| US10716565B2 (en) | 2017-12-19 | 2020-07-21 | Ethicon Llc | Surgical instruments with dual articulation drivers |
| US11020112B2 (en) | 2017-12-19 | 2021-06-01 | Ethicon Llc | Surgical tools configured for interchangeable use with different controller interfaces |
| USD910847S1 (en) | 2017-12-19 | 2021-02-16 | Ethicon Llc | Surgical instrument assembly |
| US10729509B2 (en) | 2017-12-19 | 2020-08-04 | Ethicon Llc | Surgical instrument comprising closure and firing locking mechanism |
| US11045270B2 (en) | 2017-12-19 | 2021-06-29 | Cilag Gmbh International | Robotic attachment comprising exterior drive actuator |
| US10835330B2 (en) | 2017-12-19 | 2020-11-17 | Ethicon Llc | Method for determining the position of a rotatable jaw of a surgical instrument attachment assembly |
| US12336705B2 (en) | 2017-12-21 | 2025-06-24 | Cilag Gmbh International | Continuous use self-propelled stapling instrument |
| US11311290B2 (en) | 2017-12-21 | 2022-04-26 | Cilag Gmbh International | Surgical instrument comprising an end effector dampener |
| US20190192151A1 (en) | 2017-12-21 | 2019-06-27 | Ethicon Llc | Surgical instrument having a display comprising image layers |
| US11129680B2 (en) | 2017-12-21 | 2021-09-28 | Cilag Gmbh International | Surgical instrument comprising a projector |
| US11076853B2 (en) | 2017-12-21 | 2021-08-03 | Cilag Gmbh International | Systems and methods of displaying a knife position during transection for a surgical instrument |
| US11324501B2 (en) | 2018-08-20 | 2022-05-10 | Cilag Gmbh International | Surgical stapling devices with improved closure members |
| US11291440B2 (en) | 2018-08-20 | 2022-04-05 | Cilag Gmbh International | Method for operating a powered articulatable surgical instrument |
| US10842492B2 (en) | 2018-08-20 | 2020-11-24 | Ethicon Llc | Powered articulatable surgical instruments with clutching and locking arrangements for linking an articulation drive system to a firing drive system |
| US11039834B2 (en) | 2018-08-20 | 2021-06-22 | Cilag Gmbh International | Surgical stapler anvils with staple directing protrusions and tissue stability features |
| US11253256B2 (en) | 2018-08-20 | 2022-02-22 | Cilag Gmbh International | Articulatable motor powered surgical instruments with dedicated articulation motor arrangements |
| US10912559B2 (en) | 2018-08-20 | 2021-02-09 | Ethicon Llc | Reinforced deformable anvil tip for surgical stapler anvil |
| USD914878S1 (en) | 2018-08-20 | 2021-03-30 | Ethicon Llc | Surgical instrument anvil |
| US10779821B2 (en) | 2018-08-20 | 2020-09-22 | Ethicon Llc | Surgical stapler anvils with tissue stop features configured to avoid tissue pinch |
| US20200054321A1 (en) | 2018-08-20 | 2020-02-20 | Ethicon Llc | Surgical instruments with progressive jaw closure arrangements |
| US10856870B2 (en) | 2018-08-20 | 2020-12-08 | Ethicon Llc | Switching arrangements for motor powered articulatable surgical instruments |
| US11045192B2 (en) | 2018-08-20 | 2021-06-29 | Cilag Gmbh International | Fabricating techniques for surgical stapler anvils |
| US11207065B2 (en) | 2018-08-20 | 2021-12-28 | Cilag Gmbh International | Method for fabricating surgical stapler anvils |
| US11083458B2 (en) | 2018-08-20 | 2021-08-10 | Cilag Gmbh International | Powered surgical instruments with clutching arrangements to convert linear drive motions to rotary drive motions |
| US11147551B2 (en) | 2019-03-25 | 2021-10-19 | Cilag Gmbh International | Firing drive arrangements for surgical systems |
| US11172929B2 (en) | 2019-03-25 | 2021-11-16 | Cilag Gmbh International | Articulation drive arrangements for surgical systems |
| US11147553B2 (en) | 2019-03-25 | 2021-10-19 | Cilag Gmbh International | Firing drive arrangements for surgical systems |
| US11696761B2 (en) | 2019-03-25 | 2023-07-11 | Cilag Gmbh International | Firing drive arrangements for surgical systems |
| US11648009B2 (en) | 2019-04-30 | 2023-05-16 | Cilag Gmbh International | Rotatable jaw tip for a surgical instrument |
| US11432816B2 (en) | 2019-04-30 | 2022-09-06 | Cilag Gmbh International | Articulation pin for a surgical instrument |
| US11253254B2 (en) | 2019-04-30 | 2022-02-22 | Cilag Gmbh International | Shaft rotation actuator on a surgical instrument |
| US11452528B2 (en) | 2019-04-30 | 2022-09-27 | Cilag Gmbh International | Articulation actuators for a surgical instrument |
| US11471157B2 (en) | 2019-04-30 | 2022-10-18 | Cilag Gmbh International | Articulation control mapping for a surgical instrument |
| US11903581B2 (en) | 2019-04-30 | 2024-02-20 | Cilag Gmbh International | Methods for stapling tissue using a surgical instrument |
| US11426251B2 (en) | 2019-04-30 | 2022-08-30 | Cilag Gmbh International | Articulation directional lights on a surgical instrument |
| US11350938B2 (en) | 2019-06-28 | 2022-06-07 | Cilag Gmbh International | Surgical instrument comprising an aligned rfid sensor |
| US11660163B2 (en) | 2019-06-28 | 2023-05-30 | Cilag Gmbh International | Surgical system with RFID tags for updating motor assembly parameters |
| US11298132B2 (en) | 2019-06-28 | 2022-04-12 | Cilag GmbH Inlernational | Staple cartridge including a honeycomb extension |
| US11219455B2 (en) | 2019-06-28 | 2022-01-11 | Cilag Gmbh International | Surgical instrument including a lockout key |
| US11224497B2 (en) | 2019-06-28 | 2022-01-18 | Cilag Gmbh International | Surgical systems with multiple RFID tags |
| US11259803B2 (en) | 2019-06-28 | 2022-03-01 | Cilag Gmbh International | Surgical stapling system having an information encryption protocol |
| US11051807B2 (en) | 2019-06-28 | 2021-07-06 | Cilag Gmbh International | Packaging assembly including a particulate trap |
| US11291451B2 (en) | 2019-06-28 | 2022-04-05 | Cilag Gmbh International | Surgical instrument with battery compatibility verification functionality |
| US11523822B2 (en) | 2019-06-28 | 2022-12-13 | Cilag Gmbh International | Battery pack including a circuit interrupter |
| US11464601B2 (en) | 2019-06-28 | 2022-10-11 | Cilag Gmbh International | Surgical instrument comprising an RFID system for tracking a movable component |
| US11638587B2 (en) | 2019-06-28 | 2023-05-02 | Cilag Gmbh International | RFID identification systems for surgical instruments |
| US11399837B2 (en) | 2019-06-28 | 2022-08-02 | Cilag Gmbh International | Mechanisms for motor control adjustments of a motorized surgical instrument |
| US11627959B2 (en) | 2019-06-28 | 2023-04-18 | Cilag Gmbh International | Surgical instruments including manual and powered system lockouts |
| US11497492B2 (en) | 2019-06-28 | 2022-11-15 | Cilag Gmbh International | Surgical instrument including an articulation lock |
| US11426167B2 (en) | 2019-06-28 | 2022-08-30 | Cilag Gmbh International | Mechanisms for proper anvil attachment surgical stapling head assembly |
| US11298127B2 (en) | 2019-06-28 | 2022-04-12 | Cilag GmbH Interational | Surgical stapling system having a lockout mechanism for an incompatible cartridge |
| US11246678B2 (en) | 2019-06-28 | 2022-02-15 | Cilag Gmbh International | Surgical stapling system having a frangible RFID tag |
| US11478241B2 (en) | 2019-06-28 | 2022-10-25 | Cilag Gmbh International | Staple cartridge including projections |
| US11553971B2 (en) | 2019-06-28 | 2023-01-17 | Cilag Gmbh International | Surgical RFID assemblies for display and communication |
| US11376098B2 (en) | 2019-06-28 | 2022-07-05 | Cilag Gmbh International | Surgical instrument system comprising an RFID system |
| US11684434B2 (en) | 2019-06-28 | 2023-06-27 | Cilag Gmbh International | Surgical RFID assemblies for instrument operational setting control |
| US11771419B2 (en) | 2019-06-28 | 2023-10-03 | Cilag Gmbh International | Packaging for a replaceable component of a surgical stapling system |
| US12004740B2 (en) | 2019-06-28 | 2024-06-11 | Cilag Gmbh International | Surgical stapling system having an information decryption protocol |
| US11529137B2 (en) | 2019-12-19 | 2022-12-20 | Cilag Gmbh International | Staple cartridge comprising driver retention members |
| US11911032B2 (en) | 2019-12-19 | 2024-02-27 | Cilag Gmbh International | Staple cartridge comprising a seating cam |
| US11304696B2 (en) | 2019-12-19 | 2022-04-19 | Cilag Gmbh International | Surgical instrument comprising a powered articulation system |
| US11504122B2 (en) | 2019-12-19 | 2022-11-22 | Cilag Gmbh International | Surgical instrument comprising a nested firing member |
| US11291447B2 (en) | 2019-12-19 | 2022-04-05 | Cilag Gmbh International | Stapling instrument comprising independent jaw closing and staple firing systems |
| US11234698B2 (en) | 2019-12-19 | 2022-02-01 | Cilag Gmbh International | Stapling system comprising a clamp lockout and a firing lockout |
| US12035913B2 (en) | 2019-12-19 | 2024-07-16 | Cilag Gmbh International | Staple cartridge comprising a deployable knife |
| US11931033B2 (en) | 2019-12-19 | 2024-03-19 | Cilag Gmbh International | Staple cartridge comprising a latch lockout |
| US11464512B2 (en) | 2019-12-19 | 2022-10-11 | Cilag Gmbh International | Staple cartridge comprising a curved deck surface |
| US11559304B2 (en) | 2019-12-19 | 2023-01-24 | Cilag Gmbh International | Surgical instrument comprising a rapid closure mechanism |
| US11446029B2 (en) | 2019-12-19 | 2022-09-20 | Cilag Gmbh International | Staple cartridge comprising projections extending from a curved deck surface |
| US11607219B2 (en) | 2019-12-19 | 2023-03-21 | Cilag Gmbh International | Staple cartridge comprising a detachable tissue cutting knife |
| US11529139B2 (en) | 2019-12-19 | 2022-12-20 | Cilag Gmbh International | Motor driven surgical instrument |
| US11701111B2 (en) | 2019-12-19 | 2023-07-18 | Cilag Gmbh International | Method for operating a surgical stapling instrument |
| US11576672B2 (en) | 2019-12-19 | 2023-02-14 | Cilag Gmbh International | Surgical instrument comprising a closure system including a closure member and an opening member driven by a drive screw |
| US11844520B2 (en) | 2019-12-19 | 2023-12-19 | Cilag Gmbh International | Staple cartridge comprising driver retention members |
| USD974560S1 (en) | 2020-06-02 | 2023-01-03 | Cilag Gmbh International | Staple cartridge |
| USD967421S1 (en) | 2020-06-02 | 2022-10-18 | Cilag Gmbh International | Staple cartridge |
| USD975850S1 (en) | 2020-06-02 | 2023-01-17 | Cilag Gmbh International | Staple cartridge |
| USD966512S1 (en) | 2020-06-02 | 2022-10-11 | Cilag Gmbh International | Staple cartridge |
| USD976401S1 (en) | 2020-06-02 | 2023-01-24 | Cilag Gmbh International | Staple cartridge |
| USD975851S1 (en) | 2020-06-02 | 2023-01-17 | Cilag Gmbh International | Staple cartridge |
| USD975278S1 (en) | 2020-06-02 | 2023-01-10 | Cilag Gmbh International | Staple cartridge |
| US11974741B2 (en) | 2020-07-28 | 2024-05-07 | Cilag Gmbh International | Surgical instruments with differential articulation joint arrangements for accommodating flexible actuators |
| US11534259B2 (en) | 2020-10-29 | 2022-12-27 | Cilag Gmbh International | Surgical instrument comprising an articulation indicator |
| US11617577B2 (en) | 2020-10-29 | 2023-04-04 | Cilag Gmbh International | Surgical instrument comprising a sensor configured to sense whether an articulation drive of the surgical instrument is actuatable |
| US11517390B2 (en) | 2020-10-29 | 2022-12-06 | Cilag Gmbh International | Surgical instrument comprising a limited travel switch |
| US11717289B2 (en) | 2020-10-29 | 2023-08-08 | Cilag Gmbh International | Surgical instrument comprising an indicator which indicates that an articulation drive is actuatable |
| US11844518B2 (en) | 2020-10-29 | 2023-12-19 | Cilag Gmbh International | Method for operating a surgical instrument |
| US11452526B2 (en) | 2020-10-29 | 2022-09-27 | Cilag Gmbh International | Surgical instrument comprising a staged voltage regulation start-up system |
| US11779330B2 (en) | 2020-10-29 | 2023-10-10 | Cilag Gmbh International | Surgical instrument comprising a jaw alignment system |
| US12053175B2 (en) | 2020-10-29 | 2024-08-06 | Cilag Gmbh International | Surgical instrument comprising a stowed closure actuator stop |
| USD1013170S1 (en) | 2020-10-29 | 2024-01-30 | Cilag Gmbh International | Surgical instrument assembly |
| US11931025B2 (en) | 2020-10-29 | 2024-03-19 | Cilag Gmbh International | Surgical instrument comprising a releasable closure drive lock |
| USD980425S1 (en) | 2020-10-29 | 2023-03-07 | Cilag Gmbh International | Surgical instrument assembly |
| US11896217B2 (en) | 2020-10-29 | 2024-02-13 | Cilag Gmbh International | Surgical instrument comprising an articulation lock |
| US11653915B2 (en) | 2020-12-02 | 2023-05-23 | Cilag Gmbh International | Surgical instruments with sled location detection and adjustment features |
| US11849943B2 (en) | 2020-12-02 | 2023-12-26 | Cilag Gmbh International | Surgical instrument with cartridge release mechanisms |
| US11678882B2 (en) | 2020-12-02 | 2023-06-20 | Cilag Gmbh International | Surgical instruments with interactive features to remedy incidental sled movements |
| US11627960B2 (en) | 2020-12-02 | 2023-04-18 | Cilag Gmbh International | Powered surgical instruments with smart reload with separately attachable exteriorly mounted wiring connections |
| US12471982B2 (en) | 2020-12-02 | 2025-11-18 | Cilag Gmbh International | Method for tissue treatment by surgical instrument |
| US11653920B2 (en) | 2020-12-02 | 2023-05-23 | Cilag Gmbh International | Powered surgical instruments with communication interfaces through sterile barrier |
| US11890010B2 (en) | 2020-12-02 | 2024-02-06 | Cllag GmbH International | Dual-sided reinforced reload for surgical instruments |
| US11737751B2 (en) | 2020-12-02 | 2023-08-29 | Cilag Gmbh International | Devices and methods of managing energy dissipated within sterile barriers of surgical instrument housings |
| US11944296B2 (en) | 2020-12-02 | 2024-04-02 | Cilag Gmbh International | Powered surgical instruments with external connectors |
| US11744581B2 (en) | 2020-12-02 | 2023-09-05 | Cilag Gmbh International | Powered surgical instruments with multi-phase tissue treatment |
| US11980362B2 (en) | 2021-02-26 | 2024-05-14 | Cilag Gmbh International | Surgical instrument system comprising a power transfer coil |
| US11749877B2 (en) | 2021-02-26 | 2023-09-05 | Cilag Gmbh International | Stapling instrument comprising a signal antenna |
| US11730473B2 (en) | 2021-02-26 | 2023-08-22 | Cilag Gmbh International | Monitoring of manufacturing life-cycle |
| US12108951B2 (en) | 2021-02-26 | 2024-10-08 | Cilag Gmbh International | Staple cartridge comprising a sensing array and a temperature control system |
| US11744583B2 (en) | 2021-02-26 | 2023-09-05 | Cilag Gmbh International | Distal communication array to tune frequency of RF systems |
| US11701113B2 (en) | 2021-02-26 | 2023-07-18 | Cilag Gmbh International | Stapling instrument comprising a separate power antenna and a data transfer antenna |
| US11950779B2 (en) | 2021-02-26 | 2024-04-09 | Cilag Gmbh International | Method of powering and communicating with a staple cartridge |
| US11925349B2 (en) | 2021-02-26 | 2024-03-12 | Cilag Gmbh International | Adjustment to transfer parameters to improve available power |
| US11723657B2 (en) | 2021-02-26 | 2023-08-15 | Cilag Gmbh International | Adjustable communication based on available bandwidth and power capacity |
| US11950777B2 (en) | 2021-02-26 | 2024-04-09 | Cilag Gmbh International | Staple cartridge comprising an information access control system |
| US12324580B2 (en) | 2021-02-26 | 2025-06-10 | Cilag Gmbh International | Method of powering and communicating with a staple cartridge |
| US11696757B2 (en) | 2021-02-26 | 2023-07-11 | Cilag Gmbh International | Monitoring of internal systems to detect and track cartridge motion status |
| US11793514B2 (en) | 2021-02-26 | 2023-10-24 | Cilag Gmbh International | Staple cartridge comprising sensor array which may be embedded in cartridge body |
| US11751869B2 (en) | 2021-02-26 | 2023-09-12 | Cilag Gmbh International | Monitoring of multiple sensors over time to detect moving characteristics of tissue |
| US11812964B2 (en) | 2021-02-26 | 2023-11-14 | Cilag Gmbh International | Staple cartridge comprising a power management circuit |
| US11737749B2 (en) | 2021-03-22 | 2023-08-29 | Cilag Gmbh International | Surgical stapling instrument comprising a retraction system |
| US11826042B2 (en) | 2021-03-22 | 2023-11-28 | Cilag Gmbh International | Surgical instrument comprising a firing drive including a selectable leverage mechanism |
| US11717291B2 (en) | 2021-03-22 | 2023-08-08 | Cilag Gmbh International | Staple cartridge comprising staples configured to apply different tissue compression |
| US11826012B2 (en) | 2021-03-22 | 2023-11-28 | Cilag Gmbh International | Stapling instrument comprising a pulsed motor-driven firing rack |
| US11806011B2 (en) | 2021-03-22 | 2023-11-07 | Cilag Gmbh International | Stapling instrument comprising tissue compression systems |
| US11759202B2 (en) | 2021-03-22 | 2023-09-19 | Cilag Gmbh International | Staple cartridge comprising an implantable layer |
| US11723658B2 (en) | 2021-03-22 | 2023-08-15 | Cilag Gmbh International | Staple cartridge comprising a firing lockout |
| US11944336B2 (en) | 2021-03-24 | 2024-04-02 | Cilag Gmbh International | Joint arrangements for multi-planar alignment and support of operational drive shafts in articulatable surgical instruments |
| US11896219B2 (en) | 2021-03-24 | 2024-02-13 | Cilag Gmbh International | Mating features between drivers and underside of a cartridge deck |
| US11896218B2 (en) | 2021-03-24 | 2024-02-13 | Cilag Gmbh International | Method of using a powered stapling device |
| US11744603B2 (en) | 2021-03-24 | 2023-09-05 | Cilag Gmbh International | Multi-axis pivot joints for surgical instruments and methods for manufacturing same |
| US11793516B2 (en) | 2021-03-24 | 2023-10-24 | Cilag Gmbh International | Surgical staple cartridge comprising longitudinal support beam |
| US11849944B2 (en) | 2021-03-24 | 2023-12-26 | Cilag Gmbh International | Drivers for fastener cartridge assemblies having rotary drive screws |
| US11832816B2 (en) | 2021-03-24 | 2023-12-05 | Cilag Gmbh International | Surgical stapling assembly comprising nonplanar staples and planar staples |
| US11786243B2 (en) | 2021-03-24 | 2023-10-17 | Cilag Gmbh International | Firing members having flexible portions for adapting to a load during a surgical firing stroke |
| US11786239B2 (en) | 2021-03-24 | 2023-10-17 | Cilag Gmbh International | Surgical instrument articulation joint arrangements comprising multiple moving linkage features |
| US12102323B2 (en) | 2021-03-24 | 2024-10-01 | Cilag Gmbh International | Rotary-driven surgical stapling assembly comprising a floatable component |
| US11857183B2 (en) | 2021-03-24 | 2024-01-02 | Cilag Gmbh International | Stapling assembly components having metal substrates and plastic bodies |
| US11849945B2 (en) | 2021-03-24 | 2023-12-26 | Cilag Gmbh International | Rotary-driven surgical stapling assembly comprising eccentrically driven firing member |
| US11903582B2 (en) | 2021-03-24 | 2024-02-20 | Cilag Gmbh International | Leveraging surfaces for cartridge installation |
| US20220378425A1 (en) | 2021-05-28 | 2022-12-01 | Cilag Gmbh International | Stapling instrument comprising a control system that controls a firing stroke length |
| US11957337B2 (en) | 2021-10-18 | 2024-04-16 | Cilag Gmbh International | Surgical stapling assembly with offset ramped drive surfaces |
| US11877745B2 (en) | 2021-10-18 | 2024-01-23 | Cilag Gmbh International | Surgical stapling assembly having longitudinally-repeating staple leg clusters |
| US12239317B2 (en) | 2021-10-18 | 2025-03-04 | Cilag Gmbh International | Anvil comprising an arrangement of forming pockets proximal to tissue stop |
| US11980363B2 (en) | 2021-10-18 | 2024-05-14 | Cilag Gmbh International | Row-to-row staple array variations |
| US11937816B2 (en) | 2021-10-28 | 2024-03-26 | Cilag Gmbh International | Electrical lead arrangements for surgical instruments |
| US12089841B2 (en) | 2021-10-28 | 2024-09-17 | Cilag CmbH International | Staple cartridge identification systems |
| US12432790B2 (en) | 2021-10-28 | 2025-09-30 | Cilag Gmbh International | Method and device for transmitting UART communications over a security short range wireless communication |
Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN1953502A (en) * | 2005-10-17 | 2007-04-25 | 三星电子株式会社 | Image data processing apparatus and method using error diffusion |
| US20110075026A1 (en) * | 2009-09-25 | 2011-03-31 | Vixs Systems, Inc. | Pixel interpolation with edge detection based on cross-correlation |
| CN102047241A (en) * | 2008-05-30 | 2011-05-04 | 先进微装置公司 | Local and global data share |
Family Cites Families (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US6895115B2 (en) * | 2001-04-23 | 2005-05-17 | The United States Of America As Represented By The United States National Aeronautics And Space Administration | Method for implementation of recursive hierarchical segmentation on parallel computers |
| CN101151840B (en) * | 2005-01-10 | 2011-09-21 | 四次方有限公司 | Single-chip media processor for processing media on command |
| JP4510069B2 (en) * | 2007-12-10 | 2010-07-21 | シャープ株式会社 | Image processing apparatus, image display apparatus, image forming apparatus, image processing method, computer program, and storage medium |
| US9529632B2 (en) * | 2009-09-03 | 2016-12-27 | Advanced Micro Devices, Inc. | Interlocked increment memory allocation and access |
| US20120239706A1 (en) * | 2011-03-18 | 2012-09-20 | Los Alamos National Security, Llc | Computer-facilitated parallel information alignment and analysis |
| CA2868088A1 (en) * | 2012-01-20 | 2013-07-25 | Samsung Electronics Co., Ltd. | Video encoding method and apparatus and video decoding method and apparatus using unified syntax for parallel processing |
| WO2013152452A1 (en) | 2012-04-09 | 2013-10-17 | Intel Corporation | Parallel processing image data having top-left dependent pixels |
-
2012
- 2012-04-09 WO PCT/CN2012/000457 patent/WO2013152452A1/en not_active Ceased
- 2012-04-09 EP EP12874296.2A patent/EP2837172A4/en not_active Withdrawn
- 2012-04-09 US US13/997,842 patent/US9547880B2/en active Active
-
2016
- 2016-12-20 US US15/385,389 patent/US11030711B2/en not_active Expired - Fee Related
Patent Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN1953502A (en) * | 2005-10-17 | 2007-04-25 | 三星电子株式会社 | Image data processing apparatus and method using error diffusion |
| CN102047241A (en) * | 2008-05-30 | 2011-05-04 | 先进微装置公司 | Local and global data share |
| US20110075026A1 (en) * | 2009-09-25 | 2011-03-31 | Vixs Systems, Inc. | Pixel interpolation with edge detection based on cross-correlation |
Non-Patent Citations (4)
| Title |
|---|
| AGARWAL A ET AL.: "Automatic Partioning of Parallel Loops and Data Arrays for Distributed Shared-Memory Multiprocessors", IEEE TRANSACTIONS ON PARALLEL AND DISTRIBUTED SYSTEMS, vol. 6, no. 9, 1995, XP000533967, DOI: doi:10.1109/71.466632 |
| KUNG S: "VLSI Array processors", IEEE ASSP MAGAZINE, vol. 2, no. 3, 1985, XP011370547, DOI: doi:10.1109/MASSP.1985.1163741 |
| See also references of EP2837172A4 * |
| YA YANG ET AL.: "A GPGPU Compiler for Memory Optimization and Parallelism Management", PROCEEDINGS OF THE 31ST ACM SIGPLAN CONFERENCE ON PROGRAMMING LANGUAGE DESIGN AND IMPLEMENTATION, 2010 |
Cited By (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US9547880B2 (en) | 2012-04-09 | 2017-01-17 | Intel Corporation | Parallel processing image data having top-left dependent pixels |
| US11030711B2 (en) | 2012-04-09 | 2021-06-08 | Intel Corporation | Parallel processing image data having top-left dependent pixels |
Also Published As
| Publication number | Publication date |
|---|---|
| EP2837172A4 (en) | 2015-12-30 |
| US20170358052A1 (en) | 2017-12-14 |
| US11030711B2 (en) | 2021-06-08 |
| EP2837172A1 (en) | 2015-02-18 |
| US9547880B2 (en) | 2017-01-17 |
| US20150123979A1 (en) | 2015-05-07 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US11030711B2 (en) | Parallel processing image data having top-left dependent pixels | |
| US8904210B2 (en) | Visual indicator and adjustment of media and gaming attributes based on battery statistics | |
| US9449360B2 (en) | Reducing the number of sequential operations in an application to be performed on a shared memory cell | |
| US9811334B2 (en) | Block operation based acceleration | |
| US9779696B2 (en) | Serialized access to graphics resources | |
| US9741154B2 (en) | Recording the results of visibility tests at the input geometry object granularity | |
| US9563561B2 (en) | Initiation of cache flushes and invalidations on graphics processors | |
| US20150279089A1 (en) | Streaming compression anti-aliasing approach to deferred shading | |
| EP2778902B1 (en) | Fast approach to finding minimum and maximum values in a large data set using simd instruction set architecture | |
| US9558560B2 (en) | Connected component labeling in graphics processors | |
| US20160292877A1 (en) | Simd algorithm for image dilation and erosion processing | |
| US9483810B2 (en) | Reducing the number of IO requests to memory when executing a program that iteratively processes contiguous data | |
| US8903193B2 (en) | Reducing memory bandwidth consumption when executing a program that uses integral images | |
| EP2845186B1 (en) | Energy-efficient anti-aliasing | |
| US20150006839A1 (en) | Swapping pointers to process data stored in buffers by a data source without copying the data to separate storage | |
| US20130162685A1 (en) | Interactive display of very large files using b plus trees and stabilized subsampling | |
| US20140375647A1 (en) | Efficient real-time rendering for high pixel density displays | |
| WO2013180728A1 (en) | Video post- processing on platforms without an interface to handle the video post-processing request from a video player |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 12874296 Country of ref document: EP Kind code of ref document: A1 |
|
| REEP | Request for entry into the european phase |
Ref document number: 2012874296 Country of ref document: EP |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 2012874296 Country of ref document: EP |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 13997842 Country of ref document: US |