From c5f6c1d16dbe964dc23f0f8c89fa7dc19100ff59 Mon Sep 17 00:00:00 2001 From: Felix Mathew Date: Wed, 4 Mar 2026 12:38:30 -0600 Subject: [PATCH] Fix inference extension build by including torch/nn/functional.h explicitly --- src/layers/extensions/inference/impl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/layers/extensions/inference/impl.cpp b/src/layers/extensions/inference/impl.cpp index 6419fff..9d37389 100644 --- a/src/layers/extensions/inference/impl.cpp +++ b/src/layers/extensions/inference/impl.cpp @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +#include #include "def.h" namespace F = torch::nn::functional;