This is an automated email from the ASF dual-hosted git repository.
kbeedkar pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-wayang-website.git
The following commit(s) were added to refs/heads/main by this push:
new 233602cc Fix on icon name (#104)
233602cc is described below
commit 233602cc21460411ce41a077166d7bc611846f47
Author: Zoi Kaoudi <[email protected]>
AuthorDate: Wed Nov 26 05:46:58 2025 +0100
Fix on icon name (#104)
* tensorflow blogpost
* Update add-an-operator.md
added the process of expanding the api when adding a new operator
* Update add-an-operator.md
* Update installation.md
Added the mvn install command line
* adding javadocs
* adding javadocs
* release documentation
* Update how-to-make-a-release.md
* latest release download
* adding contributors
* Update docusaurus.config.ts
Added the complete attribution
* javadocs per version
* fixed broken link
* fixed broken link
* Add Javadocs creation instructions
Added instructions for creating and uploading Javadocs after a release.
* Update javadocs upload instructions for clarity
* update
* Update team.md to reflect changes in contributors
* fix svg name for extensibility feature
---------
Co-authored-by: Calvin Kirs <[email protected]>
Co-authored-by: Alexander Alten <[email protected]>
---
src/components/HomepageFeatures/index.tsx | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/src/components/HomepageFeatures/index.tsx
b/src/components/HomepageFeatures/index.tsx
index 961345c1..76940f13 100644
--- a/src/components/HomepageFeatures/index.tsx
+++ b/src/components/HomepageFeatures/index.tsx
@@ -32,7 +32,16 @@ const FeatureList: FeatureItem[] = [
Svg: require('@site/static/img/svg/speed.svg').default,
description: (
<>
- Let the optimizer choose the best platform combination for each task
based on cost models
+ Let the optimizer choose the best platform combination for each task
based on cost models to improve performance
+ </>
+ ),
+ },
+ {
+ title: 'Extensible architecture',
+ Svg: require('@site/static/img/svg/extensibility.svg').default,
+ description: (
+ <>
+ Need a new platform or operator? Extend Wayang easily with few lines of
code
</>
),
},