This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fooo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TENSORFLOW_DIR = c:/dev/tensorflow | |
| CFLAGS = \ | |
| -shared \ | |
| -Ic:/msys64/mingw64/include/python3.8 \ | |
| -I${TENSORFLOW_DIR}/tensorflow/lite/tools/make/downloads/flatbuffers/include \ | |
| -I${TENSORFLOW_DIR}/tensorflow/lite/tools/make/downloads/absl | |
| INSTALL_DIR = c:/msys64/mingw64/lib/python3.8/site-packages/tflite_runtime | |
| OS_ARCH=windows_x86_64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function! s:fuzzy(lhs, rhs) abort | |
| return a:lhs =~ join(map(split(a:rhs, '\zs'), "printf('[\\x%02x].*', char2nr(v:val))"), '') | |
| endfunction | |
| let g:asyncomplete_preprocessor = | |
| \ [function('asyncomplete#preprocessor#ezfilter#filter')] | |
| let g:asyncomplete#preprocessor#ezfilter#config = {} | |
| let g:asyncomplete#preprocessor#ezfilter#config['*'] = | |
| \ {ctx, items -> filter(items, 's:fuzzy(v:val.word, ctx.base) != 0')} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name old req/s new req/s delta | |
| Exec 329k ± 0% 324k ± 0% ~ (p=1.000 n=1+1) | |
| Query 120k ± 0% 122k ± 0% ~ (p=1.000 n=1+1) | |
| Params 109k ± 0% 109k ± 0% ~ (p=1.000 n=1+1) | |
| Stmt 171k ± 0% 165k ± 0% ~ (p=1.000 n=1+1) | |
| Rows 0.00 0.00 ~ (all equal) | |
| StmtRows 3.09k ± 0% 2.99k ± 0% ~ (p=1.000 n=1+1) | |
| name old time/op new time/op delta | |
| CustomFunctions-4 8.60µs ± 0% 8.00µs ± 0% ~ (p=1.000 n=1+1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <windows.h> | |
| #include <stdio.h> | |
| int | |
| main(int argc, char* argv[]) { | |
| HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE); | |
| CHAR_INFO ci[6] = {}; | |
| COORD buffer_size = { 6, 1 }; | |
| COORD start_coord = { 0, 0 }; | |
| SMALL_RECT sr = { 0, 0, 80, 25 }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <windows.h> | |
| #include <stdio.h> | |
| int | |
| main(int argc, char* argv[]) { | |
| HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE); | |
| CHAR_INFO ci[3] = {}; | |
| COORD buffer_size = { 3, 1 }; | |
| COORD start_coord = { 0, 0 }; | |
| SMALL_RECT sr = { 0, 0, 80, 25 }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "runtime" | |
| "strconv" | |
| ) | |
| type node struct { |
