Skip to content

Instantly share code, notes, and snippets.

View ScottTodd's full-sized avatar
💭
ᕕ( ᐛ )ᕗ

Scott Todd ScottTodd

💭
ᕕ( ᐛ )ᕗ
View GitHub Profile
@ScottTodd
ScottTodd / iree_emscripten.md
Last active March 21, 2024 23:03
Building IREE's compiler through Emscripten
@ScottTodd
ScottTodd / mlir_emscripten.md
Last active October 21, 2023 04:52
Building MLIR through Emscripten
@ScottTodd
ScottTodd / iree.code-workspace
Created May 21, 2020 23:15
IREE Visual Studio Code workspace settings
{
"folders": [
{
"path": ".."
}
],
"settings": {
"cmake.cmakePath": "C:\\Program Files\\CMake\\bin\\cmake.exe",
"cmake.installPrefix": "",
"cmake.platform": "",
@ScottTodd
ScottTodd / settings.json
Created May 15, 2020 00:56
VSCode user settings
{
"workbench.iconTheme": "vscode-icons",
"workbench.editor.enablePreview": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.cursorBlinking": "phase",
"editor.formatOnSave": true,
"clang-format.fallbackStyle": "Google",
"window.title": "${dirty}${activeEditorLong}${separator}${rootName}${separator}${appName}",
@ScottTodd
ScottTodd / mlir.json
Last active May 14, 2020 04:22
IREE MLIR VSCode Snippets
{
// General
"Insert TODO": {
"prefix": "todo",
"body": [
"// TODO(${1:name}): $2"
],
"description": "Insert a TODO comment"
},
// Constants