[Mlir-commits] [mlir] [mlir][tosa] Update URL to TOSA specification in TOSA.md (PR #134449)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Apr 4 14:52:43 PDT 2025
https://github.com/Jerry-Ge updated https://github.com/llvm/llvm-project/pull/134449
>From c168a4a27dc48be27b79d921ef19f0f01b373383 Mon Sep 17 00:00:00 2001
From: Jerry Ge <jerry.ge at arm.com>
Date: Fri, 4 Apr 2025 14:45:27 -0700
Subject: [PATCH] [mlir][tosa] Update URLs to TOSA specification
- The existing URLs are no longer valid, updated to the current one
Signed-off-by: Jerry Ge <jerry.ge at arm.com>
Change-Id: I41a837bde1f680c9bd731e362d3ddcbee537f36a
---
mlir/docs/Dialects/TOSA.md | 2 +-
mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td | 2 +-
mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td | 2 +-
mlir/lib/Dialect/Tosa/IR/TosaOps.cpp | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/mlir/docs/Dialects/TOSA.md b/mlir/docs/Dialects/TOSA.md
index 273a71aeed200..15a2b459f8b91 100644
--- a/mlir/docs/Dialects/TOSA.md
+++ b/mlir/docs/Dialects/TOSA.md
@@ -5,7 +5,7 @@
## Rationale
The MLIR TOSA dialect implements the [TOSA
-specification](https://developer.mlplatform.org/w/tosa/). This document
+specification](https://www.mlplatform.org/tosa/tosa_spec.html). This document
describes the decision process for how TOSA expresses operators in
high level dialects.
diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
index 3a6d3d178ff37..fd8ff039d1d0c 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOpBase.td
@@ -72,7 +72,7 @@ class Tosa_Attr<string attrName, string attrMnemonic, list<Trait> traits = []>
// feed numerical precision parameters to the functional implementation of TOSA
// operators.
// The functional behavior is defined in the TOSA specification maintained at
-// https://developer.mlplatform.org/w/tosa/. TOSA leverages MLIR's built in
+// https://www.mlplatform.org/tosa/tosa_spec.html. TOSA leverages MLIR's built in
// quantization support: https://mlir.llvm.org/docs/Quantization/, and supports
// uniform quantization. Depending on datatype, asymmetric and symmetric
// quantization are supported. The types themselves are described in
diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
index cda75da57f1ad..741de84cc5840 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file defines the operation set for the TOSA dialect as defined in
-// the TOSA specfication (https://developer.mlplatform.org/w/tosa/).
+// the TOSA specfication (https://www.mlplatform.org/tosa/tosa_spec.html).
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
index 8ae67a25498ad..c8e9ad8bd3346 100644
--- a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
+++ b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
@@ -8,7 +8,7 @@
//
// \file
// This file implements the TOSA Specification:
-// https://developer.mlplatform.org/w/tosa/
+// https://www.mlplatform.org/tosa/tosa_spec.html
//
//===----------------------------------------------------------------------===//
More information about the Mlir-commits
mailing list