mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
[DML EP] Add QDQ+MatMul fusion into MatMulNBits (#22114)
### Description <!-- Describe your changes. --> ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
This commit is contained in:
parent
b8dae685e4
commit
05acfb90ab
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ void DQMatMulToMatMulNBitsRules(SelectorActionRegistry& qdq_selector_action_regi
|
|||
p_buffered_tensors);
|
||||
|
||||
#if !defined(ORT_MINIMAL_BUILD)
|
||||
std::vector<const char*> providers = {kCpuExecutionProvider, kCudaExecutionProvider};
|
||||
std::vector<const char*> providers = {kCpuExecutionProvider, kCudaExecutionProvider, kDmlExecutionProvider};
|
||||
std::unique_ptr<NodeSelector> selector = std::make_unique<QDQ::DQMatMulToMatMulNBitsSelector>(providers);
|
||||
qdq_selector_action_registry.RegisterSelectorAndAction(action_name,
|
||||
{{"MatMul", {}}},
|
||||
|
|
|
|||
Loading…
Reference in a new issue