microsoft / graphics-driver-samples

This repository contains graphics driver samples used to demonstrate how to write graphics driver for the windows platform.
Other
384 stars 137 forks source link

How to implement NPU(graph-based) driver? #102

Open xuke537 opened 3 months ago

xuke537 commented 3 months ago

Hi Microsoft, We plan to implement our NPU driver on Windows. Our NPU is graph-based approache to model execution. I have a few questions:

  1. Can we get the description of the graph(a directed acyclic graph of nodes and edges between them )in UMD?
  2. How to associate DML operators with D3D metacommands?For example, how is the DirectML Convolution operator mapped to a metacommand? The GUID of MetaCommand_Convolution is provided by Microsoft or defined by vendors?If defined by vendor,how to associate it with DML operators?