[Mlir-commits] [mlir] [Tosa] Add necessary `unordered_map` header file (PR #128248)

Mosè Giordano llvmlistbot at llvm.org
Fri Feb 21 15:32:54 PST 2025


https://github.com/giordano created https://github.com/llvm/llvm-project/pull/128248

Ref: https://github.com/llvm/llvm-project/pull/126992/files#r1966320748

>From 8c8143607ec5724fc1fe16f5b1aa61800a864332 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mos=C3=A8=20Giordano?=
 <765740+giordano at users.noreply.github.com>
Date: Fri, 21 Feb 2025 23:32:34 +0000
Subject: [PATCH] [Tosa] Add necessary `unordered_map` header file

---
 mlir/include/mlir/Dialect/Tosa/IR/TosaProfileCompliance.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaProfileCompliance.h b/mlir/include/mlir/Dialect/Tosa/IR/TosaProfileCompliance.h
index a831bae12f3c1..5de2a591e698d 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaProfileCompliance.h
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaProfileCompliance.h
@@ -9,6 +9,8 @@
 #ifndef MLIR_DIALECT_TOSA_TRANSFORMS_TOSAPROFILECOMPILANCE_H
 #define MLIR_DIALECT_TOSA_TRANSFORMS_TOSAPROFILECOMPILANCE_H
 
+#include <unordered_map>
+
 #include "mlir/Dialect/Tosa/IR/TargetEnv.h"
 #include "mlir/Dialect/Tosa/Transforms/Passes.h"
 



More information about the Mlir-commits mailing list