repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
vuejs/vue
cd334070f3b82d3f5892c4999cc290ccd4f56fd8
1fa4a5e0fb2191e5b48b72710c92feaf51b3a979
fix: address potential regex backtrack
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n-const fnExpRE = /^\\s*([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n-const simplePathRE = /^\\s*[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['.*?']|\\[\".*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*\\s*$/\n+const fnExpRE = ...
2018-02-21T18:11:11
nodejs/node
9e4ab6c2065229c5f79b6cc663d554f9de16f703
69fdb47e207f9201f36593ba72440e122d193743
test: add comments for whatwg-url tests Added comments to whatwg-url tests that they should not be changed until modifications are merged upstream as per "Web Platform Tests" guidelines PR-URL: https://github.com/nodejs/node/pull/14355 Fixes: https://github.com/nodejs/node/issues/12793 Refs: https://github.com/nodejs...
[ { "path": "doc/guides/writing-tests.md", "patch": "@@ -263,11 +263,12 @@ Some of the tests for the WHATWG URL implementation (named\n These imported tests will be wrapped like this:\n \n ```js\n-/* eslint-disable */\n-/* WPT Refs:\n+/* The following tests are copied from WPT. Modifications to them should be...
2017-07-19T00:41:00
ggml-org/llama.cpp
029bb39eb1e7ae0e5df817ce97931abcd5fa52a9
30649cab657d87ac46692332a76e1b75d5d22e00
ci : enable RVV1.0 native build (#15386) * Changed the CI file to hw * Changed the CI file to hw * Added to sudoers for apt * Removed the clone command and used checkout * Added libcurl * Added gcc-14 * Checking gcc --version * added gcc-14 symlink * added CC and C++ variables * Added the gguf weight * Chang...
[ { "path": ".github/workflows/build-riscv-native.yml", "patch": "@@ -1,10 +1,11 @@\n name: Build on RISCV Linux Machine by Cloud-V\n on:\n+ pull_request:\n workflow_dispatch:\n workflow_call:\n \n jobs:\n- bianbu-riscv64-native: # Bianbu 2.2\n+ debian-13-riscv64-native: # Bianbu 2.2\n runs-on: sel...
2025-08-21T12:52:16
huggingface/transformers
5a551df92bcb9c8cdcd706a4458764eabc1e0fe8
c0b9db091494057404d930bfe13194bad5cefaa5
Fix `TvpModelIntegrationTests` (#27792) * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/tvp/test_modeling_tvp.py", "patch": "@@ -230,10 +230,11 @@ def test_inference_no_head(self):\n \n image_processor = self.default_image_processor\n image = prepare_img()\n- encoding = image_processor(images=image, return_tensors=\"pt\").to(torch_device)\n+ ...
2023-12-04T08:40:42
vuejs/vue
e396eb3445904f11232f2355f03e8356173d0e31
4e6d6379ee35f986a842c95964615dc27afa832f
fix(ref): allow ref key to be zero (#7676) prevents missing elements when :ref value is "0" fix #7669
[ { "path": "src/core/vdom/modules/ref.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { remove } from 'shared/util'\n+import { remove, isDef } from 'shared/util'\n \n export default {\n create (_: any, vnode: VNodeWithData) {\n@@ -19,7 +19,7 @@ export default {\n \n export function registerRef (vn...
2018-02-21T15:21:51
golang/go
d5e1b7ca68e2cc484d9a1517bdc0a9862936a1eb
8b4cbcc32098733832db0ba0cd8a8569315861c2
all: remove scattered remnants of darwin/386 This removes all conditions and conditional code (that I could find) that depended on darwin/386. Fixes #37610. Change-Id: I630d9ea13613fb7c0bcdb981e8367facff250ba0 Reviewed-on: https://go-review.googlesource.com/c/go/+/227582 Run-TryBot: Austin Clements <austin@google.co...
[ { "path": "api/except.txt", "patch": "@@ -8,10 +8,6 @@ pkg os (linux-arm), const O_SYNC = 4096\n pkg os (linux-arm-cgo), const O_SYNC = 4096\n pkg os (linux-arm), const O_SYNC = 1052672\n pkg os (linux-arm-cgo), const O_SYNC = 1052672\n-pkg syscall (darwin-386), const ImplementsGetwd = false\n-pkg syscall (...
2020-04-06T20:16:48
ggml-org/llama.cpp
b108e429043ee5c9fc8fa4957a0a52c3e490d5c9
245be739df942861ddc52331b095b40f18e2a3f1
ci : fix -Werror=return-type in clip.cpp so ci/run.sh can run without issue (#15221) * Fix -Werror=return-type so ci/run.sh can run * Update tools/mtmd/clip.cpp Co-authored-by: Diego Devesa <slarengh@gmail.com> * Remove false now that we have abort --------- Co-authored-by: Diego Devesa <slarengh@gmail.com>
[ { "path": "tools/mtmd/clip.cpp", "patch": "@@ -3581,10 +3581,10 @@ bool clip_image_preprocess(struct clip_ctx * ctx, const clip_image_u8 * img, str\n }\n \n return true;\n-\n+ } else {\n+ GGML_ABORT(\"Unknown image preprocessing type\");\n }\n \n- GGML_ASSERT(false && \"Unkn...
2025-08-21T10:06:46
nodejs/node
69fdb47e207f9201f36593ba72440e122d193743
107db33fb9afc0ecbc1207c0587f517b9beba8a3
http: do not abort if socket is missing Fixes: https://github.com/nodejs/node/issues/14368 PR-URL: https://github.com/nodejs/node/pull/14387 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trevor Norris <trev...
[ { "path": "lib/_http_outgoing.js", "patch": "@@ -642,7 +642,7 @@ OutgoingMessage.prototype.write = function write(chunk, encoding, callback) {\n function write_(msg, chunk, encoding, callback, fromEnd) {\n if (msg.finished) {\n var err = new Error('write after end');\n- nextTick(msg.socket[async_id...
2017-07-20T16:02:54
huggingface/transformers
a2b1e1df4931c2d7ab093a22215c348e2bd21a22
7edf8bfafd464de082051b319df2cea338083f36
Fix typo in max_length deprecation warnings (#27788)
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -2801,7 +2801,7 @@ def sample(\n if max_length is not None:\n warnings.warn(\n \"`max_length` is deprecated in this function, use\"\n- \" `stopping_criteria=StoppingCriteriaList(MaxLengthCriteri...
2023-12-04T06:41:50
ggml-org/llama.cpp
b2caf67db1208fd38a0570785c39f7370d906d8a
2f3dbffb17ef782edfd50e5a130cec6e8a7e47f8
convert : make Mistral community chat templates optional via parameter (#15420) * Make Mistral community chat templates optional * Change the flag arg to disable instead of enable community chat templates * Improve error message * Improve help message * Tone down the logger messages
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -89,13 +89,16 @@ class ModelBase:\n block_count: int\n tensor_map: gguf.TensorNameMap\n \n+ # Mistral format specifics\n is_mistral_format: bool = False\n+ disable_mistral_community_chat_template: bool = False\n \n def __init__(self, dir_...
2025-08-21T09:19:50
nodejs/node
107db33fb9afc0ecbc1207c0587f517b9beba8a3
43e105f6453d50bb667a028d8e85d1882818d16a
process: triggerAsyncId can be undefined Fixes: https://github.com/nodejs/node/issues/14386 Fixes: https://github.com/nodejs/node/issues/14381 PR-URL: https://github.com/nodejs/node/pull/14387 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell ...
[ { "path": "lib/internal/process/next_tick.js", "patch": "@@ -281,7 +281,7 @@ function setupNextTick() {\n if (process._exiting)\n return;\n \n- if (triggerAsyncId === null) {\n+ if (!Number.isSafeInteger(triggerAsyncId) || triggerAsyncId <= 0) {\n triggerAsyncId = async_hooks.initTrigg...
2017-07-20T10:08:35
golang/go
f7e6ab44b410ef56bb89da182948a451d3cca34c
da8591b61c141ca58e4b3eae382d2827006344fd
all: remove scattered remnants of darwin/arm This removes all conditions and conditional code (that I could find) that depended on darwin/arm. Fixes #35439 (since that only happened on darwin/arm) Fixes #37611. Change-Id: Ia4c32a5a4368ed75231075832b0b5bfb1ad11986 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "misc/cgo/test/pkg_test.go", "patch": "@@ -32,7 +32,7 @@ func TestCrossPackageTests(t *testing.T) {\n \t\tt.Skip(\"Can't exec cmd/go subprocess on Android.\")\n \tcase \"darwin\":\n \t\tswitch runtime.GOARCH {\n-\t\tcase \"arm\", \"arm64\":\n+\t\tcase \"arm64\":\n \t\t\tt.Skip(\"Can't exec cmd/go ...
2020-04-03T16:22:27
huggingface/transformers
2c658b5a4282f2e824b4e23dc3bcda7ef27d5827
abd4cbd77592d8e9df54cc8c56c1a40a8f34cb18
[MusicGen] Fix audio channel attribute (#27440) [MusicGen] Fix mono logit test
[ { "path": "src/transformers/models/musicgen/modeling_musicgen.py", "patch": "@@ -1869,7 +1869,7 @@ def forward(\n \"disabled by setting `chunk_length=None` in the audio encoder.\"\n )\n \n- if self.config.audio_channels == 2 and audio_codes.shape[2] == self.dec...
2023-12-01T17:10:03
ggml-org/llama.cpp
2f3dbffb17ef782edfd50e5a130cec6e8a7e47f8
945e1f12a6b586ebf82fa4fd7f347225e58174c5
common : fix incorrect print of non-ascii characters in the logging (#15466) Signed-off-by: Jie Fu <jiefu@tencent.com>
[ { "path": "common/common.cpp", "patch": "@@ -558,13 +558,6 @@ std::string string_from(const struct llama_context * ctx, const std::vector<llam\n \n auto detokenized = common_token_to_piece(ctx, token);\n \n- detokenized.erase(\n- std::remove_if(\n- detokenized.begin(...
2025-08-21T08:54:34
rust-lang/rust
82162a7ac8aabcd7ada7ae78d9c917d87622f80a
4ac07f243e14cc3ff27bb32380f4910ffe72fbc8
doc: error url
[ { "path": "src/tools/rust-analyzer/docs/book/src/README.md", "patch": "@@ -10,7 +10,7 @@ implement semantic features like completion or goto definition by\n talking to an external language server process.\n \n To improve this document, send a pull request:\n-[https://github.com/rust-lang/rust-analyzer](http...
2025-02-09T09:49:26
nodejs/node
43e105f6453d50bb667a028d8e85d1882818d16a
7fdcb68dc3db6e2765f06ad3e43af34c51a6bb70
process: improve hrtime() error message Change error message from the form this format: The "time" array must have a length of 2. Received length 0 ...to this format: The array "time" (length 0) must be of length 2. PR-URL: https://github.com/nodejs/node/pull/14324 Reviewed-By: James M Snell <jasnell@gmail.com...
[ { "path": "lib/internal/errors.js", "patch": "@@ -114,10 +114,9 @@ E('ERR_HTTP_TRAILER_INVALID',\n E('ERR_INDEX_OUT_OF_RANGE', 'Index out of range');\n E('ERR_INVALID_ARG_TYPE', invalidArgType);\n E('ERR_INVALID_ARRAY_LENGTH',\n- (name, length, actual) => {\n+ (name, len, actual) => {\n assert.strictE...
2017-07-17T12:15:11
vuejs/vue
2d168f1ba11d77cb2f2caa3356de86e99aba8da6
8053eb1fba4202274efed11044679e011a1e525b
test(types): update TS version and fix types test (#7597)
[ { "path": "package-lock.json", "patch": "@@ -9580,9 +9580,9 @@\n \"dev\": true\n },\n \"typescript\": {\n- \"version\": \"2.6.2\",\n- \"resolved\": \"https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz\",\n- \"integrity\": \"sha1-PFtv1/beCRQmkCfwPAlGdY92c6Q=\",\n+ ...
2018-02-03T19:02:25
huggingface/transformers
abd4cbd77592d8e9df54cc8c56c1a40a8f34cb18
7b6324e18ee1b43d130a381fedddeb2b544e9e1a
Better error message for bitsandbytes import (#27764) * better error message * fix logic * fix log
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1010,7 +1010,7 @@ def num_parameters(self, only_trainable: bool = False, exclude_embeddings: bool\n else:\n raise ValueError(\n \"bitsandbytes is not installed but it seems that the model has been l...
2023-12-01T16:59:14
golang/go
c4f2a9788a7be04daf931ac54382fbe2cb754938
97711bfd60575b2f51e212b0b5181729597e9091
cmd/go: allow configuring module cache directory with GOMODCACHE Adds a GOMODCACHE environment variable that's used by cmd/go to determine the location of the module cache. The default value of GOMODCACHE will be GOPATH[0]/pkg/mod, the default location of the module cache before this change. Replace the cmd/go/intern...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -236,6 +236,7 @@ var (\n \tGOROOTpkg = filepath.Join(GOROOT, \"pkg\")\n \tGOROOTsrc = filepath.Join(GOROOT, \"src\")\n \tGOROOT_FINAL = findGOROOT_FINAL()\n+\tGOMODCACHE = envOr(\"GOMODCACHE\", gopathDir(\"pkg/mod\"))\n \n \t// Used in envcmd....
2020-02-14T22:44:00
ggml-org/llama.cpp
945e1f12a6b586ebf82fa4fd7f347225e58174c5
1b0db8f6e08951969e2447c2d18bf638effb8f75
ggml : fix condition of im2col on Metal backend (#15460)
[ { "path": "ggml/src/ggml-metal/ggml-metal.m", "patch": "@@ -1846,7 +1846,7 @@ static bool ggml_metal_supports_op(const struct ggml_backend_metal_device_contex\n case GGML_OP_ROPE:\n return true;\n case GGML_OP_IM2COL:\n- return op->src[0]->type == GGML_TYPE_F16;\n+ ...
2025-08-21T05:32:26
rust-lang/rust
fb52da38088ccc885aaedc02b227dc5ffca15f84
43ca9d18e333797f0aa3b525501a7cec8d61a96b
crashes: more tests
[ { "path": "tests/crashes/135470.rs", "patch": "@@ -0,0 +1,40 @@\n+//@ known-bug: #135470\n+//@ compile-flags: --edition=2021 -Copt-level=0\n+\n+use std::future::Future;\n+trait Access {\n+ type Lister;\n+\n+ fn list() -> impl Future<Output = Self::Lister> {\n+ async { todo!() }\n+ }\n+}\n+\n...
2025-01-25T21:30:38
vuejs/vue
ced00b1dec8326a653cce225133927fe5b4a3109
4746256e553b19d4e37f264bf0c050fe0823d876
fix: fix config.productionTip fix #7565
[ { "path": "src/platforms/web/runtime/index.js", "patch": "@@ -44,32 +44,34 @@ Vue.prototype.$mount = function (\n \n // devtools global hook\n /* istanbul ignore next */\n-Vue.nextTick(() => {\n- if (config.devtools) {\n- if (devtools) {\n- devtools.emit('init', Vue)\n- } else if (\n- proce...
2018-01-31T07:53:25
huggingface/transformers
7b6324e18ee1b43d130a381fedddeb2b544e9e1a
95900916ab2d33d813bc02668d035c1538312273
Make using safetensors files automated. (#27571) * [WIP] Make using safetensors files automated. If `use_safetensors=True` is used, and it doesn't exist: - Don't crash just yet - Lookup for an open PR containing it. - If yes, use that instead - If not, touch the space to convert, wait for conversion to be fin...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -49,6 +49,7 @@\n prune_layer,\n prune_linear_layer,\n )\n+from .safetensors_conversion import auto_conversion\n from .utils import (\n ADAPTER_SAFE_WEIGHTS_NAME,\n ADAPTER_WEIGHTS_NAME,\n@@ -3088,9 +3089,18 @@ def from_pretrained(\...
2023-12-01T14:51:10
nodejs/node
7fdcb68dc3db6e2765f06ad3e43af34c51a6bb70
56441ff774baa7f3f2ab25691a753d6f701a2b6c
doc: fixes default shell in child_process.md Clarifies the default shell in Windows is process.env.ComSpec and that cmd.exe is only used as a fallback. Functions whose descriptions are affected include: child_process.spawn, child_process.exec, child_process.spawnsSync, and child_process.execSync. PR-URL: https://gith...
[ { "path": "doc/api/child_process.md", "patch": "@@ -133,9 +133,8 @@ added: v0.1.90\n * `env` {Object} Environment key-value pairs\n * `encoding` {string} (Default: `'utf8'`)\n * `shell` {string} Shell to execute the command with\n- (Default: `'/bin/sh'` on UNIX, `'cmd.exe'` on Windows, The shell sh...
2017-07-12T18:53:23
golang/go
f12683a83114b9240bea9715fba563647deed72d
dc6d45261570462a25c20ec4ca612ec326bf7656
[dev.link] cmd/link: ignore undefined symbols in trampoline generation Don't emit an error for undefined symbol in trampoline generation pass, which will be duplicate as we'll emit a better one later. Fix TestUndefinedRelocErrors on PPC64. Change-Id: I964d4bd63ec4b4c6eb5d98caf68db93ce6488bf5 Reviewed-on: https://go-...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -101,7 +101,7 @@ func trampoline(ctxt *Link, s loader.Sym) {\n \t\t\tcontinue\n \t\t}\n \t\trs := r.Sym()\n-\t\tif !ldr.AttrReachable(rs) {\n+\t\tif !ldr.AttrReachable(rs) || ldr.SymType(rs) == sym.Sxxx {\n \t\t\tcontinue // something is wrong. skip...
2020-04-08T15:54:11
vuejs/vue
eaf6b54a389dd6e316df932b3fe3a5d6579e2499
04da767d10038d355b67778173ccf66ea74211c5
chore: fix another link
[ { "path": "BACKERS.md", "patch": "@@ -41,7 +41,7 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n </tr><tr></tr>\n <tr>\n <td align=\"center\" valign=\"middle\">\n- <a href=\"https://datacamp.com/careers?utm_source=vuejs&utm_medium=sidebar\" target=\"...
2018-01-12T14:47:00
huggingface/transformers
95900916ab2d33d813bc02668d035c1538312273
cf62539a294ebafdd94f16d443e84fd9a6f7fea0
Fixes for PatchTST Config (#27777) * Remove config reference and pass num_patches for PatchTSTforPrediction * ensure return_dict is properly set --------- Co-authored-by: Wesley M. Gifford <wmgifford@us.ibm.com>
[ { "path": "src/transformers/models/patchtst/modeling_patchtst.py", "patch": "@@ -1546,7 +1546,7 @@ def forward(\n PATCHTST_START_DOCSTRING,\n )\n class PatchTSTPredictionHead(nn.Module):\n- def __init__(self, config: PatchTSTConfig, distribution_output=None):\n+ def __init__(self, config: PatchTST...
2023-12-01T13:57:50
nodejs/node
9d9c9c1e77e3449fe648e6008120202e310f3c21
462b58e581f0e6a0f621bd478290d4c427fc8d37
test: move test-fs-largefile to pummel test-fs-largefile was disabled. It was fixed in bbf74fb but left in disabled because it generates a 5Gb file. However, gibfahn had the sensible suggestion of moving it to the pummel directory. Which is what this change does. In pummel, lint rules are applied, so this does necess...
[ { "path": "test/pummel/test-fs-largefile.js", "patch": "@@ -35,9 +35,9 @@ const message = 'Large File';\n \n fs.truncateSync(fd, offset);\n assert.strictEqual(fs.statSync(filepath).size, offset);\n-var writeBuf = Buffer.from(message);\n+const writeBuf = Buffer.from(message);\n fs.writeSync(fd, writeBuf, 0, ...
2017-07-18T05:32:27
ggml-org/llama.cpp
1b0db8f6e08951969e2447c2d18bf638effb8f75
29f538ac630d6544406a0702476e36808a6bd1b3
server : fix webui (#15462) * Fix webui crash after streaming * build webui
[ { "path": "tools/server/webui/src/utils/app.context.tsx", "patch": "@@ -255,7 +255,7 @@ export const AppContextProvider = ({\n if (chunk.error) {\n throw new Error(chunk.error?.message || 'Unknown error');\n }\n- const addedContent = chunk.choices[0].delta.content;\n+ ...
2025-08-21T05:19:22
golang/go
97711bfd60575b2f51e212b0b5181729597e9091
4874835232322713f23d2f10c083ae6fa893868b
runtime: skip TestPingPongHog in race mode TestPingPongHog tests properties of the scheduler. But the race detector intentionally does randomized scheduling, so the test is not applicable. Fixes #38266 Change-Id: Ib06aa317b2776cb1faa641c4e038e2599cf70b2d Reviewed-on: https://go-review.googlesource.com/c/go/+/227344 ...
[ { "path": "src/runtime/proc_test.go", "patch": "@@ -6,6 +6,7 @@ package runtime_test\n \n import (\n \t\"fmt\"\n+\t\"internal/race\"\n \t\"math\"\n \t\"net\"\n \t\"runtime\"\n@@ -422,6 +423,11 @@ func TestPingPongHog(t *testing.T) {\n \tif testing.Short() {\n \t\tt.Skip(\"skipping in -short mode\")\n \t}\n+...
2020-04-06T16:07:03
vuejs/vue
04da767d10038d355b67778173ccf66ea74211c5
f0e9dc44672c6b68d919f26f5ccc49af21385a59
chore: fix sponsor link
[ { "path": "BACKERS.md", "patch": "@@ -72,8 +72,8 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n </a>\n </td>\n <td align=\"center\" valign=\"middle\">\n- <a href=\"https://starter.someline.com/\" target=\"_blank\">\n- <img width=\"148...
2018-01-12T14:45:34
huggingface/transformers
0ad4e7e6dad670a7151aaceb1af3c272a3bf73a8
9ddbb696d23085d6e06bd2c5ac4a16d05e4d3353
[SeamlessM4Tv2] Fix links in README (#27782) Fix typo in README
[ { "path": "README.md", "patch": "@@ -466,7 +466,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[RoFormer](https://huggingface.co/docs/transformers/model_doc/roformer)** (from ZhuiyiTechnology), released together with the paper [RoFormer: Enhanced Transformer wit...
2023-12-01T09:39:33
ggml-org/llama.cpp
29f538ac630d6544406a0702476e36808a6bd1b3
8ad038c0fdc719ced9fbf921a02cbae9ad79287f
examples : remove references to `make` in examples [no ci] (#15457) This commit removes references to `make` in the examples, as the build system has been updated to use CMake directly and using `make` will now generate an error since Commit 37f10f955f70e0158d50343d0b9a3f92d194daae ("make : remove make in favor of CMa...
[ { "path": "examples/batched.swift/README.md", "patch": "@@ -1,4 +1,5 @@\n This is a swift clone of `examples/batched`.\n \n-$ `make`\n-$ `./llama-batched-swift MODEL_PATH [PROMPT] [PARALLEL]`\n+```bash\n+$ ./llama-batched-swift MODEL_PATH [PROMPT] [PARALLEL]\n+```", "additions": 3, "deletions": 2, ...
2025-08-21T04:12:28
golang/go
dc6d45261570462a25c20ec4ca612ec326bf7656
850c602ed62fb36430b872f31ac86142d8eaa5f3
[dev.link] cmd/link: gofmt I somehow messed up my local environment for the pre-commit hook. Fix the format. Change-Id: I6161ad1fce7714e8f311be5315d854f8c9bd7664 Reviewed-on: https://go-review.googlesource.com/c/go/+/227579 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> R...
[ { "path": "src/cmd/link/internal/arm/asm.go", "patch": "@@ -520,11 +520,11 @@ func gentramp(arch *sys.Arch, linkmode ld.LinkMode, ldr *loader.Loader, tramp *l\n \n \tif linkmode == ld.LinkExternal {\n \t\tr := loader.Reloc{\n-\t\t\tOff: 8,\n+\t\t\tOff: 8,\n \t\t\tType: objabi.R_ADDR,\n \t\t\tSize: 4,\n-\t\...
2020-04-08T15:45:00
nodejs/node
5203bb0b1695f5cc2ea68c0c2e87b857c2c713f3
8ddb725f4f70f452decebcdeed67900ee0b608e1
assert: improve deepEqual Set and Map worst case This change improves the algorithm for the worst case from O(n^2) to O(n log n) by using a lazily initiated set with object or not strict equal primitives keys. In addition a few comments got fixed and a statement simplified. PR-URL: https://github.com/nodejs/node/pul...
[ { "path": "lib/assert.js", "patch": "@@ -33,11 +33,6 @@ const errors = require('internal/errors');\n \n const assert = module.exports = ok;\n \n-// At present only the three keys mentioned above are used and\n-// understood by the spec. Implementations or sub modules can pass\n-// other keys to the Assertio...
2017-07-15T23:32:06
vuejs/vue
5191f13472d1fc37bdd601079970201fde6bf13e
05299610ea3e89ddbcfe4d8ede0c298223766423
fix(transition): should not add transition class when cancelled (#7391) fix #7390
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -149,13 +149,15 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n addTransitionClass(el, startClass)\n addTransitionClass(el, activeClass)\n nextFrame(() => {\n- addTransitionClass(el, to...
2018-01-05T22:45:59
huggingface/transformers
9ddbb696d23085d6e06bd2c5ac4a16d05e4d3353
29f1aee3b6c560182415fcb9e2238125e2f5b29c
Fix unsupported setting of self._n_gpu in training_args on XPU devices (#27716) change xpu _n_gpu = 1
[ { "path": "src/transformers/training_args.py", "patch": "@@ -1879,7 +1879,7 @@ def _setup_devices(self) -> \"torch.device\":\n elif self.distributed_state.distributed_type == DistributedType.MULTI_XPU:\n if \"ACCELERATE_USE_XPU\" not in os.environ:\n os.environ[\"ACCELERA...
2023-12-01T09:34:15
ggml-org/llama.cpp
1bc664a26a1d93a48baf2483a7ff95291ca8bcb8
13aeb7aef284daed4ad07dc14b4b3e2a42b5ea97
server: fix OpenAI API compatibility for usage statistics in chat streams (#15444)
[ { "path": "tools/server/server.cpp", "patch": "@@ -911,6 +911,17 @@ struct server_task_result_cmpl_final : server_task_result {\n {\"model\", oaicompat_model},\n {\"system_fingerprint\", build_info},\n {\"object\", \"chat.completion.chunk\"},\n+ ...
2025-08-20T22:10:08
vuejs/vue
05299610ea3e89ddbcfe4d8ede0c298223766423
6ee684983b1f3384a4050d7c47cee7c6a325db8b
fix(vdom): svg inside foreignObject should be rendered with correct namespace (fix #7330) (#7350) * add failed test case * fix failed test case * fix(vdom): svg inside foreignObject should be rendered with correct namespace * adjust comments
[ { "path": "src/core/vdom/create-element.js", "patch": "@@ -139,7 +139,8 @@ function applyNS (vnode, ns, force) {\n if (isDef(vnode.children)) {\n for (let i = 0, l = vnode.children.length; i < l; i++) {\n const child = vnode.children[i]\n- if (isDef(child.tag) && (isUndef(child.ns) || isTru...
2018-01-05T22:44:44
golang/go
4874835232322713f23d2f10c083ae6fa893868b
7a35d39b56dacf9ef248d3e77bc2f9e8147d6b75
net/textproto, sync: unlock mutexes appropriately before panics Ensure mutexes are unlocked right before panics, where defers aren’t easily usable. Change-Id: I67c9870e7a626f590a8de8df6c8341c5483918dc GitHub-Last-Rev: bb8ffe538b3956892b55884fd64eadfce326f7b0 GitHub-Pull-Request: golang/go#37143 Reviewed-on: https://g...
[ { "path": "src/net/textproto/pipeline.go", "patch": "@@ -99,6 +99,7 @@ func (s *sequencer) Start(id uint) {\n func (s *sequencer) End(id uint) {\n \ts.mu.Lock()\n \tif s.id != id {\n+\t\ts.mu.Unlock()\n \t\tpanic(\"out of sync\")\n \t}\n \tid++", "additions": 1, "deletions": 0, "language": "Go" ...
2020-04-08T16:03:18
nodejs/node
65eefa01053ebec32c35565be4c2fd1426f50506
f67aa566a6eb43c5ea508ad8cf65c2e6fb9ad9da
2017-07-19, Version 8.2.0 (Current) Big thanks to @addaleax who prepared the vast majority of this release. Notable changes: * **Async Hooks** * Multiple improvements to Promise support in `async_hooks` have been made. * **Build** * The compiler version requirement to build Node with GCC has been raised to ...
[ { "path": "CHANGELOG.md", "patch": "@@ -27,7 +27,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.4\">8.1.4</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V8.md#8.2.0\">8.2.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V8.md#8.1.4\">8.1.4</...
2017-07-19T15:40:29
huggingface/transformers
29f1aee3b6c560182415fcb9e2238125e2f5b29c
510270af34994c24f2f8792d2afd74114c70d736
Add SeamlessM4T v2 (#27779) * add working convertion script * first non-working version of modeling code * update modeling code (working) * make style * make fix-copies * add config docstrings * add config to ignore docstrings formatage due to unconventional markdown * fix copies * fix generati...
[ { "path": "README.md", "patch": "@@ -466,6 +466,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[RoFormer](https://huggingface.co/docs/transformers/model_doc/roformer)** (from ZhuiyiTechnology), released together with the paper [RoFormer: Enhanced Transformer wit...
2023-11-30T19:24:43
ggml-org/llama.cpp
657b8a77bd01854f99d37a47318fa24f2e7e298f
ec5ab1a36c11dd3efcf4ec8d1ac89a13a8117bc3
chat: handle gpt-oss return/end token inconsistency (#15421) This commit addresses an inconsistency during inference by adding a new member to the `templates_params` struct to indicate whether the chat is in inference mode. This allows the gpt-oss specific function `common_chat_params_init_gpt_oss` to check this flag ...
[ { "path": "common/chat.cpp", "patch": "@@ -147,6 +147,7 @@ struct templates_params {\n json extra_context;\n bool add_bos;\n bool add_eos;\n+ bool is_inference = true;\n };\n \n common_chat_tool_choice common_chat_tool_choice_parse_oaicompat(const std::string & tool_choice) {\n@@ -1336,6 +133...
2025-08-20T12:26:01
vuejs/vue
6ee684983b1f3384a4050d7c47cee7c6a325db8b
5b4e6679cbfabd7a6229e86f10c300bcc1b2f815
fix(types): contravariant generic default in ComponentOption (#7369)
[ { "path": "types/options.d.ts", "patch": "@@ -6,16 +6,17 @@ type Constructor = {\n }\n \n // we don't support infer props in async component\n-export type Component<Data=DefaultData<Vue>, Methods=DefaultMethods<Vue>, Computed=DefaultComputed, Props=DefaultProps> =\n+// N.B. ComponentOptions<V> is contravari...
2018-01-03T06:33:48
golang/go
8e121b1587bd921ea84c7da49cab3f48dc6b8f36
0a820007e70fdd038950f28254c6269cd9588c02
runtime: fix infinite callstack of cgo on arm64 This change adds CFA information to the assembly function 'crosscall1' and reorgnizes its code to establish well-formed prologue and epilogue. It will fix an infinite callstack issue when debugging cgo program with GDB on arm64. Brief root cause analysis: GDB's aarch64...
[ { "path": "src/runtime/cgo/gcc_arm64.S", "patch": "@@ -24,13 +24,28 @@\n */\n .globl EXT(crosscall1)\n EXT(crosscall1):\n-\tstp x19, x20, [sp, #-16]!\n-\tstp x21, x22, [sp, #-16]!\n-\tstp x23, x24, [sp, #-16]!\n-\tstp x25, x26, [sp, #-16]!\n-\tstp x27, x28, [sp, #-16]!\n-\tstp x29, x30, [sp, #-16]!\n+\t.cf...
2020-03-27T11:04:21
nodejs/node
f67aa566a6eb43c5ea508ad8cf65c2e6fb9ad9da
e36166bd18add8e6f5727a2173c5e5405bf382ef
errors: migrate tls_wrap to use internal/errors PR-URL: https://github.com/nodejs/node/pull/13476 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
[ { "path": "lib/_tls_wrap.js", "patch": "@@ -36,6 +36,7 @@ const Timer = process.binding('timer_wrap').Timer;\n const tls_wrap = process.binding('tls_wrap');\n const TCP = process.binding('tcp_wrap').TCP;\n const Pipe = process.binding('pipe_wrap').Pipe;\n+const errors = require('internal/errors');\n \n func...
2017-06-29T09:52:06
ggml-org/llama.cpp
ec5ab1a36c11dd3efcf4ec8d1ac89a13a8117bc3
1a99c2d948209d9ea5eac8b6dc0a297107244540
common : fix context shift help message (#15448) Signed-off-by: Jie Fu <jiefu@tencent.com>
[ { "path": "common/arg.cpp", "patch": "@@ -1532,7 +1532,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n ).set_examples({LLAMA_EXAMPLE_MAIN, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_IMATRIX, LLAMA_EXAMPLE_PERPLEXITY}).set_env(\"LLAMA_ARG_NO_CONTEXT_SHIFT\"));\n add_o...
2025-08-20T10:33:30
vuejs/vue
400aa651ba1648185274c10aa83c94cb9d8eac56
6be9fdbc8374225b98620cae6d87d97d861913cc
chore: fix setup script (#7364)
[ { "path": "scripts/setup.js", "patch": "@@ -2,9 +2,9 @@ const { test, ln, chmod } = require('shelljs')\n \n function installHooks () {\n if (test('-e', '.git/hooks')) {\n- ln('-sf', '../../build/git-hooks/pre-commit', '.git/hooks/pre-commit')\n+ ln('-sf', '../../scripts/git-hooks/pre-commit', '.git/...
2018-01-02T16:21:05
huggingface/transformers
510270af34994c24f2f8792d2afd74114c70d736
fe41647afc98c7b5ce6c93a5f7cf57314bcd56f6
Generate: `GenerationConfig` throws an exception when `generate` args are passed (#27757)
[ { "path": "src/transformers/generation/configuration_utils.py", "patch": "@@ -497,6 +497,24 @@ def validate(self, is_init=False):\n f\"({self.num_beams}).\"\n )\n \n+ # 5. check common issue: passing `generate` arguments inside the generation config\n+ gener...
2023-11-30T14:16:31
nodejs/node
e36166bd18add8e6f5727a2173c5e5405bf382ef
2309f3aaa6bd54bac70ea35c6da46981cfc52129
build: codesign tarball binary on macOS Previously, we were signing the binary that was released in the .pkg, but not the binary released in the tarball. PR-URL: https://github.com/nodejs/node/pull/14179 Fixes: https://github.com/nodejs/node/issues/11936 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: B...
[ { "path": "Makefile", "patch": "@@ -808,6 +808,9 @@ $(BINARYTAR): release-only\n \tcp README.md $(BINARYNAME)\n \tcp LICENSE $(BINARYNAME)\n \tcp CHANGELOG.md $(BINARYNAME)\n+ifeq ($(OSTYPE),darwin)\n+\tSIGN=\"$(CODESIGN_CERT)\" PKGDIR=\"$(BINARYNAME)\" bash tools/osx-codesign.sh\n+endif\n \ttar -cf $(BINAR...
2017-07-12T00:05:39
golang/go
0a820007e70fdd038950f28254c6269cd9588c02
bfd569fcb07440b85c503a399d78bcd6581824a3
runtime: static lock ranking for the runtime (enabled by GOEXPERIMENT) I took some of the infrastructure from Austin's lock logging CR https://go-review.googlesource.com/c/go/+/192704 (with deadlock detection from the logs), and developed a setup to give static lock ranking for runtime locks. Static lock ranking est...
[ { "path": "src/cmd/internal/objabi/stack.go", "patch": "@@ -18,7 +18,7 @@ const (\n )\n \n // Initialize StackGuard and StackLimit according to target system.\n-var StackGuard = 896*stackGuardMultiplier() + StackSystem\n+var StackGuard = 928*stackGuardMultiplier() + StackSystem\n var StackLimit = StackGuard...
2019-11-14T01:34:47
vuejs/vue
f8cb3a239332804808ca058d45609a860dbda55a
dccd182b6763d8ef1871949029c85495ca958246
chore: fix lint
[ { "path": "test/unit/modules/compiler/compiler-options.spec.js", "patch": "@@ -9,58 +9,58 @@ describe('compile options', () => {\n <input type=\"text\" v-model=\"msg\" required max=\"8\" v-validate:field1.group1.group2>\n </div>\n `, {\n- directives: {\n- validate (el, dir) {\n...
2017-12-25T16:05:54
ggml-org/llama.cpp
1a99c2d948209d9ea5eac8b6dc0a297107244540
37f10f955f70e0158d50343d0b9a3f92d194daae
cmake : fix target include directories (#15450) * Update docker.yml 修改docker.yml文件中的内容使其停止周期性的运行该workflow,如果想要运行该workflow可以手动启动 * feat:Modify the header file include path 1. There's no llava directory in the tools directory. 2. Because the command `target_include_directories(mtmd PUBLIC .)` is used in the `mtmd` CM...
[ { "path": "tools/server/CMakeLists.txt", "patch": "@@ -33,7 +33,7 @@ endforeach()\n add_executable(${TARGET} ${TARGET_SRCS})\n install(TARGETS ${TARGET} RUNTIME)\n \n-target_include_directories(${TARGET} PRIVATE ../llava)\n+target_include_directories(${TARGET} PRIVATE ../mtmd)\n target_include_directories($...
2025-08-20T10:32:05
huggingface/transformers
62ab32b2997846526cdffd629c72c47bc7b4f215
083e36923a19650fa264c4173db2f63ab124bb27
Remove `check_runner_status.yml` (#27767) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/check_runner_status.yml", "patch": "@@ -1,68 +0,0 @@\n-name: Self-hosted runner (check runner status)\n-\n-# Note that each job's dependencies go into a corresponding docker file.\n-#\n-# For example for `run_all_tests_torch_cuda_extensions_gpu` the docker image is\n-# `huggingf...
2023-11-30T09:17:25
vuejs/vue
dccd182b6763d8ef1871949029c85495ca958246
44420b7bbcd9f6f4b0df3263e19ad19a974fa7f1
fix: allow codebase to be inlined directly in HTML (#7314) escape - to avoid regex being parsed as HTML comment when entire codebase is inlined. fix #7298
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -22,7 +22,8 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)\n const startTagClose = /^\\s*(\\/?)>/\n const endTag = new RegExp(`^<\\\\/${qnameCapture}[^>]*>`)\n const doctype = /^<!DOCTYPE [^>]+>/i\n-const comment = /^<!--/\n+// #7298: esc...
2017-12-25T15:50:36
ggml-org/llama.cpp
a094f381432d92c4bf92d2d6167284316ba73a62
fb22dd07a639e81c7415e30b146f545f1a2f2caf
musa: fix build warnings (#15258) * musa: fix build warnings Signed-off-by: Xiaodong Ye <xiaodong.ye@mthreads.com> * fix warning: comparison of integers of different signs: 'const int' and 'unsigned int' [-Wsign-compare] Signed-off-by: Xiaodong Ye <xiaodong.ye@mthreads.com> --------- Signed-off-by: Xiaodong Ye <x...
[ { "path": "ggml/src/ggml-cuda/add-id.cu", "patch": "@@ -11,14 +11,14 @@ static __global__ void add_id_kernel(\n const int64_t i1 = blockIdx.x;\n const int64_t i2 = blockIdx.y;\n \n- const int i11 = *(int32_t *) ((char *) src2 + i1*sizeof(int32_t) + i2*nb21);\n+ const int i11 = *(const int32_t ...
2025-08-20T02:17:37
nodejs/node
2309f3aaa6bd54bac70ea35c6da46981cfc52129
b923b9dee1262363b95a6b41aaf3c6761f6f2c50
build,tools: do not force codesign prefix Allow passing the prefix in via the PKGDIR env var. This will allow us to use this same script to codesign the binary tarball. PR-URL: https://github.com/nodejs/node/pull/14179 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Re...
[ { "path": "Makefile", "patch": "@@ -702,7 +702,8 @@ $(PKG): release-only\n \t\t--release-urlbase=$(RELEASE_URLBASE) \\\n \t\t$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)\n \t$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)\n-\tSIGN=\"$(CODESIGN_CERT)\" PKGDIR=\"$(PKGDIR)\" bash tools/osx-codesign.sh\n+\tSIGN=\"$(CODESIGN...
2017-07-12T00:04:53
huggingface/transformers
083e36923a19650fa264c4173db2f63ab124bb27
af8acc4760d44e48f953e075e3b13a43843d5f91
Fix precision errors from casting rotary parameters to FP16 with AMP (#27700) * Update modeling_llama.py * Update modeling_open_llama.py * Update modeling_gpt_neox.py * Update modeling_mistral.py * Update modeling_persimmon.py * Update modeling_phi.py * Update modeling_falcon.py * Update modeling_...
[ { "path": "src/transformers/models/deprecated/open_llama/modeling_open_llama.py", "patch": "@@ -83,7 +83,7 @@ def _set_cos_sin_cache(self, seq_len, device, dtype):\n self.max_seq_len_cached = seq_len\n t = torch.arange(self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype)\n \n- ...
2023-11-29T15:30:49
golang/go
bfd569fcb07440b85c503a399d78bcd6581824a3
7ee8467b276fbe442df8c84c3d13a99e80519c24
cmd/compile: delete the floating point Greater and Geq ops Extend CL 220417 (which removed the integer Greater and Geq ops) to floating point comparisons. Greater and Geq can always be implemented using Less and Leq. Fixes #37316. Change-Id: Ieaddb4877dd0ff9037a1dd11d0a9a9e45ced71e7 Reviewed-on: https://go-review.go...
[ { "path": "src/cmd/compile/internal/gc/ssa.go", "patch": "@@ -1742,9 +1742,6 @@ var opToSSA = map[opAndType]ssa.Op{\n \topAndType{OLT, TFLOAT64}: ssa.OpLess64F,\n \topAndType{OLT, TFLOAT32}: ssa.OpLess32F,\n \n-\topAndType{OGT, TFLOAT64}: ssa.OpGreater64F,\n-\topAndType{OGT, TFLOAT32}: ssa.OpGreater32F,\n-\...
2020-03-06T22:20:45
vuejs/vue
60fb8143f1235d0ae19d56939c424ad46bb33e61
c05bbdfc36d0a2777c5721932a06f098860536b9
chore: fix OpenCollective links
[ { "path": "BACKERS.md", "patch": "@@ -43,8 +43,8 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h2 align=\"center\">Platinum via OpenCollective</h2>\n \n-<a href=\"https://opencollective.com/vuejs/tiers/platinumsponsors/0/website\" target=\"_blank\"><img src=\"https...
2017-12-22T19:48:21
ggml-org/llama.cpp
1e19f5d462b6df490a13103ca555d851f47e5fa5
d2fcd91cf96b46f4485ce46b4e3a32bf0df37715
common : Add top-nsigma sampler to help globally (#15428) Fixes #15423.
[ { "path": "common/arg.cpp", "patch": "@@ -1830,7 +1830,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n [](common_params & params, const std::string & value) {\n params.sampling.top_n_sigma = std::stof(value);\n }\n- ).set_examples({LLAMA...
2025-08-19T16:58:14
nodejs/node
bd7735e8f7819902f8ba78f2deab24dba3854313
6a587ad043052dce2862cdf3c0a7375545368d87
docs: add note about fs.rmdir() fs.rmdir() on the file (not directory) results in different errors on Windows to everything else Fixes: https://github.com/nodejs/node/issues/8797 PR-URL: https://github.com/nodejs/node/pull/14323 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Gireesh Punathil <gpuna...
[ { "path": "doc/api/fs.md", "patch": "@@ -2004,6 +2004,9 @@ changes:\n Asynchronous rmdir(2). No arguments other than a possible exception are given\n to the completion callback.\n \n+*Note*: Using `fs.rmdir()` on a file (not a directory) results in an `ENOENT`\n+error on Windows and an `ENOTDIR` error on PO...
2017-07-17T09:11:09
golang/go
64f19d70805a6da347a55dab5ab4f4c57ddb3278
553a8626ba04981d362ee5937583d2592b305eae
cmd/compile/internal/logopt: preserve env while running command The test was not preserving temporary directory flags leading to a failure on windows with: mkdir C:\WINDOWS\go-build315158903: Access is denied. Fixes #38251 Change-Id: I6ee31b31e84b7f6e75ea6ee0f3b8c094835bf5d2 Reviewed-on: https://go-review.googl...
[ { "path": "src/cmd/compile/internal/logopt/logopt_test.go", "patch": "@@ -199,7 +199,7 @@ func testCopy(t *testing.T, dir, goarch, goos, src, outfile string) (string, err\n \tt.Log(run)\n \tcmd := exec.Command(run[0], run[1:]...)\n \tcmd.Dir = dir\n-\tcmd.Env = []string{\"GOARCH=\" + goarch, \"GOOS=\" + goo...
2020-04-07T12:52:05
vuejs/vue
c05bbdfc36d0a2777c5721932a06f098860536b9
144a4dd860b20ca48263bac150286f627e08d953
chore: fixes gold / platinum sponsors on open collective (#7311) Fixes https://github.com/opencollective/opencollective/issues/777
[ { "path": "README.md", "patch": "@@ -143,16 +143,16 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h4 align=\"center\">Platinum</h4>\n \n-<a href=\"https://opencollective.com/vuejs/tiers/platinumsponsors/0/website\" target=\"_blank\"><img src=\"https://opencollectiv...
2017-12-22T19:46:01
ggml-org/llama.cpp
d1d82416006e7ff41780cb0e9b5f28d30a267497
618575c5825d7d4f170e686e772178d2aae148ae
server : fix incoming tasks not process in order (#15395)
[ { "path": "tools/server/server.cpp", "patch": "@@ -1729,7 +1729,7 @@ struct server_queue {\n void pop_deferred_task() {\n std::unique_lock<std::mutex> lock(mutex_tasks);\n if (!queue_tasks_deferred.empty()) {\n- queue_tasks.emplace_back(std::move(queue_tasks_deferred.front()))...
2025-08-18T14:51:42
huggingface/transformers
af8acc4760d44e48f953e075e3b13a43843d5f91
bd50402b56980ff17e957342ef69bd9b0dd45a7b
[Time series] Add patchtst (#27581) * add distribution head to forecasting * formatting * Add generate function for forecasting * Add generate function to prediction task * formatting * use argsort * add past_observed_mask ordering * fix arguments * docs * add back test_model_outputs_equival...
[ { "path": "README.md", "patch": "@@ -440,6 +440,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[OPT](https://huggingface.co/docs/transformers/master/model_doc/opt)** (from Meta AI) released with the paper [OPT: Open Pre-trained Transformer Language Models](https...
2023-11-29T12:36:38
nodejs/node
c53db1e8e9bb65779d791046daa39ed88c8f1045
2a621d40517b8ec17d6b6b15e31bdc6e5d34e768
assert: show thrown message in doesNotThrow() assert.doesNotThrow() should show actual error message instead of "Got unwanted exception" which is not really helpful. PR-URL: https://github.com/nodejs/node/pull/12167 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Re...
[ { "path": "lib/assert.js", "patch": "@@ -546,7 +546,10 @@ function innerThrows(shouldThrow, block, expected, message) {\n } else if (actual !== undefined) {\n if (!expected || expectedException(actual, expected)) {\n details = message ? `: ${message}` : '.';\n- fail(actual, expected, `Got u...
2017-04-02T17:11:42
vuejs/vue
d8b08387a293c99b95c1efcf2517447335a618db
956756b1be7084daf8b6afb92ac0da7c24cde2a5
fix: clean up custom events when patched component no longer have events fix #7294
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -257,11 +257,10 @@ export function updateChildComponent (\n }\n \n // update listeners\n- if (listeners) {\n- const oldListeners = vm.$options._parentListeners\n- vm.$options._parentListeners = listeners\n- updateComponentListeners(vm, l...
2017-12-21T15:36:03
ggml-org/llama.cpp
618575c5825d7d4f170e686e772178d2aae148ae
f44f7931729022c57319a0124931120a169e0da9
Fix broken build: require updated pip to support --break-system-packages (#15357) * Revert "devops : fix compile bug when the BASE_CUDA_DEV_CONTAINER is based on Ubuntu 24.04 (#15005)" This reverts commit e4e915912cfd2ee15c5a4a0074813232134892f6. * devops: Allow pip to modify externally-managed python environment (s...
[ { "path": ".devops/cuda.Dockerfile", "patch": "@@ -60,6 +60,7 @@ RUN apt-get update \\\n git \\\n python3 \\\n python3-pip \\\n+ && pip install --upgrade pip setuptools wheel \\\n && pip install --break-system-packages -r requirements.txt \\\n && apt autoremove -y \\\n && apt clea...
2025-08-18T10:50:48
golang/go
60baf83a820785f26bc61521db8e931165accc24
587faf67d7e62c4f844cd2d1a8af3dd6ea7c3555
[dev.link] cmd/link: fix bugs in setArchSyms The code in setArchsyms that sets up TOC symbols was buggy; it was kicking in only for aix-ppc64 and not linux-ppc64. These symbols are required for both ABIs, so change the guard in question from "ctx.IsAIX()" to "ctxt.IsPPC64()". Also, the code to create versioned ".TOC."...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -150,19 +150,24 @@ type ArchSyms struct {\n const BeforeLoadlibFull = 1\n const AfterLoadlibFull = 2\n \n-func (ctxt *Link) mkArchSym(which int, name string, ls *loader.Sym, ss **sym.Symbol) {\n+// mkArchSym is a helper for setArchSyms, invoked once ...
2020-04-05T16:40:20
huggingface/transformers
f2ad4b537bb6f7c38e5dc28f3a5289f2164516ad
dfbd209c2586e9eb4f55d1c4f5e6a9e0cbca8f60
Docs: Fix broken cross-references, i.e. `~transformer.` -> `~transformers.` (#27740) ~transformer. -> ~transformers.
[ { "path": "docs/source/en/model_doc/auto.md", "patch": "@@ -49,7 +49,7 @@ You will then be able to use the auto classes like you would usually do!\n \n <Tip warning={true}>\n \n-If your `NewModelConfig` is a subclass of [`~transformer.PretrainedConfig`], make sure its\n+If your `NewModelConfig` is a subclas...
2023-11-28T16:40:44
vuejs/vue
956756b1be7084daf8b6afb92ac0da7c24cde2a5
8335217cb4bd13fb07e08a76c07df0fceed6c197
refactor: use more efficient on-demand clone to handle reused node edge cases removes unnecessary slot/static node clones, fix #7292
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -239,7 +239,7 @@ export function updateChildComponent (\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n- vm.$attrs = (parentVnode.data && parentVno...
2017-12-21T00:44:24
nodejs/node
2a621d40517b8ec17d6b6b15e31bdc6e5d34e768
b55ab01b456645bcd7fce5c394f2722112080c6b
test: validate more properties in expectsError PR-URL: https://github.com/nodejs/node/pull/14058 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
[ { "path": "test/common/README.md", "patch": "@@ -51,28 +51,41 @@ Platform normalizes the `dd` command\n Check if there is more than 1gb of total memory.\n \n ### expectsError([fn, ]settings[, exact])\n-* `fn` [&lt;Function>]\n+* `fn` [&lt;Function>] a function that should throw.\n * `settings` [&lt;Object>]...
2017-07-03T13:47:39
ggml-org/llama.cpp
f44f7931729022c57319a0124931120a169e0da9
ae532eac2c1df1d8edc3d2719145895b966de1bf
ggml-quants : fix make_qp_quants NANs and IQ1 assertion errors (#15379) * ggml-quants : fix make_qp_quants NANs and IQ1 assertion errors * ggml-quants : avoid division by zero in make_q3_quants
[ { "path": "ggml/src/ggml-quants.c", "patch": "@@ -566,7 +566,7 @@ static float make_q3_quants(int n, int nmax, const float * GGML_RESTRICT x, int8\n for (int i = 0; i < n; ++i) {\n L[i] += nmax;\n }\n- return sumlx / suml2;\n+ return suml2 > 0.0f ? sumlx / suml2 : 0...
2025-08-18T07:23:56
golang/go
74d6de03fd7db2c6faa7794620a9bcf0c4f018f2
7dc1c62cc9eb7a8c0c554dd6d67da9bd4ddeac1c
cmd/go: report scan error position in 'go list -e' This CL extracts some error handling code into a common method for presenting errors encountered when loading package data. Fixes #36087 Fixes #36762 Change-Id: I87c8d41e3cc6e6afa152d9c067bc60923bf19fbe Reviewed-on: https://go-review.googlesource.com/c/go/+/210938 R...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -7,11 +7,8 @@\n package base\n \n import (\n-\t\"bytes\"\n-\t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n-\t\"go/scanner\"\n \t\"log\"\n \t\"os\"\n \t\"os/exec\"\n@@ -172,25 +169,3 @@ func RunStdin(cmdline []string) {\n // Usage is the usage-reporting func...
2019-12-11T18:16:35
huggingface/transformers
dfbd209c2586e9eb4f55d1c4f5e6a9e0cbca8f60
30e92ea3238fde9af15d060686ae2d1f8cf2524b
CLVP Fixes (#27547) * fixes * more fixes * style fix * more fix * comments
[ { "path": "src/transformers/models/clvp/modeling_clvp.py", "patch": "@@ -81,8 +81,7 @@ def rotate_half(x):\n return torch.cat((-x2, x1), dim=-1)\n \n \n-# Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb\n-def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1):\...
2023-11-28T16:40:01
vuejs/vue
8335217cb4bd13fb07e08a76c07df0fceed6c197
49aae6bb157e0650507974b7a9a1b0f2215e400b
fix(core): handle edge cases for functional component returning arrays fix #7282
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -107,7 +107,7 @@ export function createComponent (\n context: Component,\n children: ?Array<VNode>,\n tag?: string\n-): VNode | void {\n+): VNode | Array<VNode> | void {\n if (isUndef(Ctor)) {\n return\n }", "additions": 1, "d...
2017-12-20T16:02:42
rust-lang/rust
ac0a11a8bc80befca52af0712e015b4c42ee3769
aad3686823ea20280dc461dfae935fdffdaf5162
Fix `obfuscated_if_else` suggestion on left side of a binary expr An `if … { … } else { … }` used as the left operand of a binary expression requires parentheses to be parsed as an expression.
[ { "path": "clippy_lints/src/methods/obfuscated_if_else.rs", "patch": "@@ -1,6 +1,7 @@\n use super::OBFUSCATED_IF_ELSE;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::eager_or_lazy::switch_to_eager_eval;\n+use clippy_utils::get_parent_expr;\n use clippy_utils::source::snippet_with_a...
2025-01-31T22:25:26
ggml-org/llama.cpp
b143fbc87af0324aa49e16cd91faf3ba8bb22231
de5627910df74298c998e6bb36ee3217375a5719
ci : fix hang in windows-hip build/release (#15365) * fix hang in windows-latest-cmake-hip * apply fix to release as well
[ { "path": ".github/workflows/build.yml", "patch": "@@ -1070,7 +1070,8 @@ jobs:\n write-host \"Downloading AMD HIP SDK Installer\"\n Invoke-WebRequest -Uri \"https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-24.Q3-WinSvr2022-For-HIP.exe\" -OutFile \"${env:RUNNER_TE...
2025-08-17T11:30:23
huggingface/transformers
30e92ea3238fde9af15d060686ae2d1f8cf2524b
0b9c93457570063907e2613f0c7a4084f6cf3945
Trigger corresponding pipeline tests if `tests/utils/tiny_model_summary.json` is modified (#27693) * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "tests/models/phi/test_modeling_phi.py", "patch": "@@ -288,6 +288,12 @@ class PhiModelTest(ModelTesterMixin, GenerationTesterMixin, PipelineTesterMixin,\n test_headmasking = False\n test_pruning = False\n \n+ # TODO (ydshieh): Check this. See https://app.circleci.com/pipelines/github/hu...
2023-11-28T16:21:21
golang/go
42d4df94597626a84b81053792b445c318f6bdf1
23866aedd960b920d8c95250818d26d2b9023c5a
cmd/compile: lay out exit post-dominated blocks at the end Complete a long-standing TODO in the code. Exit blocks are cold code, so we lay them out at the end of the function. Blocks that are post-dominated by exit blocks are also ipso facto exit blocks. Treat them as such. Implement using a simple loop, because the...
[ { "path": "src/cmd/compile/internal/ssa/layout.go", "patch": "@@ -46,13 +46,44 @@ func layoutOrder(f *Func) []*Block {\n \texit := f.newSparseSet(f.NumBlocks()) // exit blocks\n \tdefer f.retSparseSet(exit)\n \n-\t// Initialize indegree of each block\n+\t// Populate idToBlock and find exit blocks.\n \tfor _...
2020-04-04T01:23:04
vuejs/vue
49aae6bb157e0650507974b7a9a1b0f2215e400b
e055df82fec0e76e4bc65e5a265b42e208595430
fix(types): make VNodeChildrenArrayContents type more accurate (#7287)
[ { "path": "types/test/options-test.ts", "patch": "@@ -1,4 +1,4 @@\n-import Vue from \"../index\";\n+import Vue, { VNode } from \"../index\";\n import { AsyncComponent, ComponentOptions, FunctionalComponentOptions } from \"../index\";\n import { CreateElement } from \"../vue\";\n \n@@ -277,6 +277,19 @@ Vue.c...
2017-12-20T14:09:23
rust-lang/rust
aad3686823ea20280dc461dfae935fdffdaf5162
d79f86255d278a3b4871eb0e8679d5775de78b80
Add error markers for `obfuscated_if_else` lint
[ { "path": "tests/ui/obfuscated_if_else.fixed", "patch": "@@ -3,16 +3,22 @@\n \n fn main() {\n if true { \"a\" } else { \"b\" };\n+ //~^ ERROR: this method chain can be written more clearly with `if .. else ..`\n if true { \"a\" } else { \"b\" };\n+ //~^ ERROR: this method chain can be written ...
2025-02-09T00:53:19
nodejs/node
b55ab01b456645bcd7fce5c394f2722112080c6b
7bc666be1752fbb18fdfb67c46dc4995f6eb5f0a
lib: improve lazy requires * internal/errors - assert should already be in place when calling any of the message generating functions. * No lazy load if not necessary. * Replace function calls with `if`s. PR-URL: https://github.com/nodejs/node/pull/14167 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By:...
[ { "path": "lib/dgram.js", "patch": "@@ -24,6 +24,7 @@\n const assert = require('assert');\n const errors = require('internal/errors');\n const Buffer = require('buffer').Buffer;\n+const dns = require('dns');\n const util = require('util');\n const EventEmitter = require('events');\n const setInitTriggerId =...
2017-07-11T13:23:38
ggml-org/llama.cpp
65349f26f2299e06477ec8e85e46243046801358
1fe00296f587dfca0957e006d146f5875b61e43d
model : support vision LiquidAI LFM2-VL family (#15347) * wip lfm2 vision model * Fix conv weight * Implement dynamic resolution * Fix cuda * support LFM2-VL-450M * happy CI * Remove extra `ggml_conv` and put others into the right place Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> --------- ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -8251,8 +8251,7 @@ def set_gguf_parameters(self):\n self.gguf_writer.add_rope_scaling_orig_ctx_len(rope_scaling.get(\"original_max_position_embeddings\", 4096))\n \n \n-@ModelBase.register(\"Lfm2ForCausalLM\")\n-@ModelBase.register(\"LFM2ForCausalLM\")...
2025-08-16T21:33:54
huggingface/transformers
1fb3c23b41c80d4c6061551ba5ef5dc54637bdba
7a757bb6946e81ca4c516386c94b92dc7da96f41
Add BeitBackbone (#25952) * First draft * Add backwards compatibility * More improvements * More improvements * Improve error message * Address comment * Add conversion script * Fix style * Update code snippet * Adddress comment * Apply suggestions from code review Co-authored-by: amye...
[ { "path": "src/transformers/__init__.py", "patch": "@@ -1261,6 +1261,7 @@\n _import_structure[\"models.beit\"].extend(\n [\n \"BEIT_PRETRAINED_MODEL_ARCHIVE_LIST\",\n+ \"BeitBackbone\",\n \"BeitForImageClassification\",\n \"BeitForMaskedImageModelin...
2023-11-28T08:38:32
vuejs/vue
e055df82fec0e76e4bc65e5a265b42e208595430
7cc0b559e9e57fcb3baeae5d8d4c8964aa335b5e
fix(weex): default value for editor, fix #7165 (#7286) * fix(weex): default value for editor, fix #7165 /cc Hanks10100 * fix(weex): recycle-list test
[ { "path": "test/weex/cases/recycle-list/components/editor.vue", "patch": "@@ -10,7 +10,7 @@\n props: ['message'],\n data () {\n return {\n- output: this.message | ''\n+ output: this.message || ''\n }\n }\n }", "additions": 1, "deletions": 1, "language": "U...
2017-12-20T14:05:21
nodejs/node
030a0285d88a03b0051ada736aabdb490f6479c9
0e5283b7eda5b22d73c21620a02ac5337f9de9f1
repl: don't terminate on null thrown Previous behavior was to assume an error is a proper error in the repl module. A check was added to not terminate the process on thrown repl errors that are `null` or `undefined`. PR-URL: https://github.com/nodejs/node/pull/14306 Fixes: https://github.com/nodejs/node/issues/12373 ...
[ { "path": "lib/repl.js", "patch": "@@ -283,17 +283,23 @@ function REPLServer(prompt,\n self._domain.on('error', function debugDomainError(e) {\n debug('domain error');\n const top = replMap.get(self);\n+\n internalUtil.decorateErrorStack(e);\n+ const isError = internalUtil.isError(e);\n ...
2017-07-16T15:12:57
ggml-org/llama.cpp
1fe00296f587dfca0957e006d146f5875b61e43d
de2192794f4e8e04f2e8167ef2424905145e88fc
vulkan: fuse adds (#15252) * vulkan: fuse adds Fuse adds that have the same shape, which are common in MoE models. It will currently fuse up to 6 adds, because we assume no more than 8 descriptors per dispatch. But this could be changed. * check runtimeDescriptorArray feature * disable multi_add for Intel due to li...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -103,6 +103,8 @@ static bool is_pow2(uint32_t x) { return x > 1 && (x & (x-1)) == 0; }\n struct ggml_backend_vk_context;\n \n #define MAX_PARAMETER_COUNT 8\n+// Max number of adds that can be fused without exceeding MAX_PARAMETER_COUNT.\n+#defin...
2025-08-16T16:48:22
huggingface/transformers
7a757bb6946e81ca4c516386c94b92dc7da96f41
2ca73e5ee320078a275e40a95ad32f040a389d39
Fix AMD Push CI not triggered (#27732) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-push-amd-mi210-caller.yml", "patch": "@@ -18,7 +18,7 @@ on:\n jobs:\r\n run_amd_ci:\r\n name: AMD mi210\r\n- if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_push_ci_caller')))...
2023-11-28T08:30:21
vuejs/vue
bacb911f7df09ff4868b4c848a6d7778872dff5c
c0d516c283aa1a1c238b6eb8b8e55f64770d27e8
fix(warning): allow symbol as vdom key (#7271)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -270,7 +270,7 @@ export function createPatchFunction (backend) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true)\n }\n } else if (isPrimitive(vnode.text)) {\n- nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vn...
2017-12-19T14:35:50
nodejs/node
0e5283b7eda5b22d73c21620a02ac5337f9de9f1
d112f5982c9bdb03c4e94262d7d64f67f58d87b2
doc,stream: _transform happens one at a time Add a note to the stream docs specifying that at most a single call to _transform can happen, and the provided callback() should be used to process another chunk. Fixes: https://github.com/nodejs/node/issues/3208 PR-URL: https://github.com/nodejs/node/pull/14321 Reviewed-B...
[ { "path": "doc/api/stream.md", "patch": "@@ -2033,6 +2033,10 @@ The `transform._transform()` method is prefixed with an underscore because it\n is internal to the class that defines it, and should never be called directly by\n user programs.\n \n+`transform._transform()` is never called in parallel; stream...
2017-07-17T08:02:02
ggml-org/llama.cpp
de2192794f4e8e04f2e8167ef2424905145e88fc
2e2b22ba6607414a5d619ac6d2f034b5b02214e5
vulkan: Support mul_mat_id with f32 accumulators (#15337) * vulkan: Add missing bounds checking to scalar/coopmat1 mul_mat_id * vulkan: Support mul_mat_id with f32 accumulators, but they are not hooked up - There's no explicit way to request f32 precision for mul_mat_id, but there probably should be, and this gets t...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2387,26 +2387,26 @@ static void ggml_vk_load_shaders(vk_device& device) {\n CREATE_MM(pipeline_matmul_id_bf16, matmul_id_bf16, , wg_denoms, warptile, vk_mat_mat_id_push_constants, 4)\n }\n #endif\n- CREATE_MM(pipeline...
2025-08-16T09:18:31
huggingface/transformers
2ca73e5ee320078a275e40a95ad32f040a389d39
0864dd3beb238b7bec3528a3d1d6c17a28f51a51
Fixed passing scheduler-specific kwargs via TrainingArguments lr_scheduler_kwargs (#27595) * Fix passing scheduler-specific kwargs through TrainingArguments `lr_scheduler_kwargs` * Added test for lr_scheduler_kwargs
[ { "path": "src/transformers/trainer.py", "patch": "@@ -1111,7 +1111,7 @@ def create_scheduler(self, num_training_steps: int, optimizer: torch.optim.Optim\n optimizer=self.optimizer if optimizer is None else optimizer,\n num_warmup_steps=self.args.get_warmup_steps(num_training...
2023-11-28T07:33:45
vuejs/vue
c0d516c283aa1a1c238b6eb8b8e55f64770d27e8
01c07503bf6af902dde06fafa8a0008ee3e303aa
feat(types): extract VueConfiguration type for easy expansion (#7273) (#7274) fix #7273
[ { "path": "types/vue.d.ts", "patch": "@@ -64,6 +64,18 @@ export interface Vue {\n export type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Data & Methods & Computed & Props & Instance;\n export type ExtendedVue<Instance extends Vue, Data, Methods, Computed, Props> = VueConstr...
2017-12-19T14:34:35
golang/go
23866aedd960b920d8c95250818d26d2b9023c5a
44ae94751ab35232f72845c7b885c5338220bca5
cmd/link: fix data race in testDWARF Multiple instances of testDWARF run in parallel, with a shared backing store of the env input slice. Do modification of the environment locally, instead of on the shared slice. Fixes #38265. Change-Id: I22a7194c8cd55ba22c9d6c47ac47bf7e710a7027 Reviewed-on: https://go-review.googl...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -71,8 +71,8 @@ func testDWARF(t *testing.T, buildmode string, expectDWARF bool, env ...string)\n \t\t\t}\n \t\t\tcmd.Args = append(cmd.Args, dir)\n \t\t\tif env != nil {\n-\t\t\t\tenv = append(env, \"CGO_CFLAGS=\") // ensure CGO_CFLAGS does not contain an...
2020-04-06T15:41:23
ggml-org/llama.cpp
912ff8c119f01ae029543c7fdf7a84f91a0437a3
5e6229a8409ac786e62cb133d09f1679a9aec13e
OpenCL: add initial FA support (#14987) * add F16/F16 fa support * fix kernel init * use mad instead of fma * use inline function * mark FA with sinks as unsupported for now * add pragma unroll to loops
[ { "path": "ggml/src/ggml-opencl/CMakeLists.txt", "patch": "@@ -112,6 +112,9 @@ set(GGML_OPENCL_KERNELS\n mul_mat_f16_f32\n conv2d\n conv2d_f16_f32\n+ flash_attn_f32_f16\n+ flash_attn_f16\n+ flash_attn_f32\n )\n \n foreach (K ${GGML_OPENCL_KERNELS})", "additions": 3, "deletions":...
2025-08-16T08:05:55
vuejs/vue
d544d052a9c5ec113c253895211296120d58b6ab
b8d33ecd9ab8b7a46d8558b4e2caf506235cd165
fix(weex): append as tree by default for recycle-list and cell-slot (#7216)
[ { "path": "src/platforms/weex/compiler/modules/append.js", "patch": "@@ -1,7 +1,13 @@\n /* @flow */\n \n+import { makeMap } from 'shared/util'\n+\n+// The \"unitary tag\" means that the tag node and its children\n+// must be sent to the native together.\n+const isUnitaryTag = makeMap('cell,header,cell-slot,...
2017-12-11T14:48:36
nodejs/node
b61cab2234b3d9bf7265980f9286a136af20365b
c5521fa6176377e0be958621102cad29be39a290
errors: port internal/fs errors to internal/errors * Assign codes to errors reported by internal/fs.js PR-URL: https://github.com/nodejs/node/pull/11317 Refs: https://github.com/nodejs/node/issues/11273 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Franzis...
[ { "path": "doc/api/errors.md", "patch": "@@ -686,6 +686,11 @@ communication channel to a child process. See [`child.send()`] and\n Used generically to identify when an invalid or unexpected value has been\n passed in an options object.\n \n+<a id=\"ERR_INVALID_OPT_VALUE_ENCODING\"></a>\n+### ERR_INVALID_OPT...
2017-02-12T01:25:33
huggingface/transformers
0864dd3beb238b7bec3528a3d1d6c17a28f51a51
cad1b1192b3ad98808d24f898e28fb56f78720d3
Translate `en/model_doc` to JP (#27264) * Add `model_docs` * Add * Update Model adoc * Update docs/source/ja/model_doc/bark.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> * Update docs/source/ja/model_doc/beit.md Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply...
[ { "path": "docs/source/ja/_toctree.yml", "patch": "@@ -185,11 +185,44 @@\n sections:\n - local: model_doc/albert\n title: ALBERT\n+ - local: model_doc/bart\n+ title: BART\n+ - local: model_doc/barthez\n+ title: BARThez\n+ - local: model_doc/bartpho\n+ ...
2023-11-27T21:19:04