Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# code.simd.ai README

Supercharge SIMD development directly in VS Code.
Supercharge SIMD development directly in your IDE.

AI-assisted SIMD code porting across Intel SSE4.2, AVX2, AVX512,Arm NEON,Power VSX, and more—right inside your editor. Smart intrinsics highlighting, instant conversions, and seamless dev workflow integration.

Expand All @@ -16,7 +16,7 @@ AI-assisted SIMD code porting across Intel SSE4.2, AVX2, AVX512,Arm NEON,Power V

## Features
- **AI-assisted SIMD Code Porting**
Automatically translate SIMD code across architectures like Intel SSE4.2, AVX2, AVX512,Arm NEON,Power VSXin real-time.
Automatically translate SIMD code across architectures like Intel SSE4.2, AVX2, AVX512,Arm NEON,Power VSX in real-time.


- **Smart Intrinsics Highlighting**
Expand Down Expand Up @@ -78,7 +78,7 @@ We are actively working to address these issues in an upcoming release.
---

## Coming soon
- Some architectures (e.g. Power IBM-Z, RVV 1.0,LOONGSON LSX/LASX, MIPS/MSA,Intel MMX ARM SME, ARM SVE/SVE2 ) are still in development.
- Some architectures (e.g. Power IBM-Z, RVV 1.0,LOONGSON LSX/LASX, MIPS/MSA,Intel AMX, ARM SME2, ARM SVE/SVE2 ) are still in development.

---

Expand All @@ -94,6 +94,9 @@ We are actively working to address these issues in an upcoming release.

### 1.0.0
- Preview changes,Api endpoint changes,Official Release

## 1.0.2
- Fixed some typos in Details
---


Expand Down
Binary file renamed code-simd-ai-1.0.0.vsix → code-simd-ai-1.0.1.vsix
Binary file not shown.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "code-simd-ai",
"displayName": "code.simd.ai",
"description": "VScode plugin for porting of code between different cpu architectures",
"version": "1.0.0",
"version": "1.0.2",
"publisher": "VectorCamp",
"engines": {
"vscode": "^1.100.0"
Expand All @@ -16,7 +16,9 @@
],
"icon": "media/splash-dark.png",
"license": "Apache-2.0",
"activationEvents": ["onStartupFinished"],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
Expand Down