Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>XCL Developer ToolsNew to Visual Studio Code? Get it now.
XCL Developer Tools

XCL Developer Tools

Aaryn Hernandez

|
16 installs
| (0) | Free
Provides language support for XCL.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

XCL Language Support

Visual Studio Marketplace Version Visual Studio Marketplace Downloads License: MIT (Or your chosen license)

Provides syntax highlighting, snippets, and basic language support for the XCL programming language, designed for [briefly describe the purpose of XCL, e.g., GPU programming, custom hardware].

License

MIT License

Features

  • Syntax Highlighting: Enhanced syntax highlighting for XCL code, including keywords, identifiers, operators, literals, and comments.
  • Code Snippets: Quickly insert common XCL code structures with predefined snippets (e.g., kernel definitions, if/else statements, for loops).
  • File Association: Automatically associates .xcl files with the XCL language mode.

How to Use

  1. Install the "XCL Language Support" extension from the VS Code Marketplace.
  2. Open any file with the .xcl extension. The language mode will be automatically set to "XCL".

Example

kernel void vector_add(global float* a, global float* b, global float* c, int n) {
    int i = get_global_id(0);
    if (i < n) {
        c[i] = a[i] + b[i];
    }
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft