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
denoland/deno
48546aa4a9f42decaa11471904ab0ece5ce2d644
bcb33125650e6a179125730ea4acfe76e2cdd485
fix(bundle): fix import.meta.main transform with jsr entrypoint (#31415) Fixes https://github.com/denoland/deno/issues/31404
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -52,6 +52,7 @@ use esbuild_client::EsbuildService;\n use esbuild_client::protocol;\n use esbuild_client::protocol::BuildResponse;\n use indexmap::IndexMap;\n+use indexmap::IndexSet;\n use node_resolver::NodeResolutionKind;\n use node_resolver::ResolutionMode...
2025-11-26T10:11:14
ggml-org/llama.cpp
663027fd5490438ce9c27ea866a560e1e268d11f
cf0e3ba1500bd23635b444f64ba23cbdb56c92ef
context : fix n_outputs during reserve (#15858) ggml-ci
[ { "path": "src/llama-context.cpp", "patch": "@@ -285,8 +285,8 @@ llama_context::llama_context(\n const uint32_t n_seqs = cparams.kv_unified ? 1 : cparams.n_seq_max;\n const uint32_t n_tokens = std::min(cparams.n_ctx, cparams.n_ubatch);\n \n- // avoid reserving graphs with zero outputs...
2025-09-08T07:26:36
vuejs/vue
ec824be88e9bc71b31e5c4a43f80d921674dca66
09f9783943613ee732c5b45951907fd069322f7d
fix v-once inside v-for (fix #3964)
[ { "path": "flow/compiler.js", "patch": "@@ -117,6 +117,7 @@ declare type ASTElement = {\n \n forbidden?: true;\n once?: true;\n+ onceProcessed?: boolean;\n wrapData?: (code: string) => string;\n }\n ", "additions": 1, "deletions": 0, "language": "JavaScript" }, { "path": "flow/com...
2016-11-03T02:34:36
huggingface/transformers
06c04e085154bb19ea16aac80ae02537fe3b2fd2
0e5a97560807393e6d3bf005136591b5af0c2614
Deprecate `half_precision_backend` (#41134) * deprecate * remove * rm apex * fix * fix * fix doc
[ { "path": "docs/source/en/deepspeed.md", "patch": "@@ -452,7 +452,7 @@ For Ampere GPUs and PyTorch 1.7+, the more efficient [tf32](https://pytorch.org/\n </hfoption>\n <hfoption id=\"fp16\">\n \n-To configure AMP-like fp16 mixed precision, set up the config as shown below with `\"auto\"` or your own values....
2025-09-30T09:36:44
denoland/deno
bcb33125650e6a179125730ea4acfe76e2cdd485
50c728d31c1c95f16441e79d0f2cc3f1c67f9439
fix(check): fix nil deref with `--unstable-tsgo` (#31416) Fixes https://github.com/denoland/deno/issues/31413
[ { "path": "cli/tsc/go/tsgo_version.rs", "patch": "@@ -23,15 +23,15 @@ impl Hashes {\n }\n }\n \n-pub const VERSION: &str = \"0.1.8\";\n+pub const VERSION: &str = \"0.1.9\";\n pub const DOWNLOAD_BASE_URL: &str =\n- \"https://github.com/denoland/typescript-go/releases/download/v0.1.8\";\n+ \"https://githu...
2025-11-26T09:36:32
ggml-org/llama.cpp
cf0e3ba1500bd23635b444f64ba23cbdb56c92ef
d413dca00360a7e4cb71441dacecfa32556fcc31
model : avoid ggml_cont_3d for fused QKV weights (#15662) * model : avoid ggml_cont_3d for fused QKV weights ggml-ci * kv-cache : make cpy_k and cpy_v implementation more readable ggml-ci * cont : add comments ggml-ci * cont : minor fix [no ci] * cont : one more fix * cont : clarity ggml-ci * kv-cache : requ...
[ { "path": "src/llama-kv-cache.cpp", "patch": "@@ -1018,16 +1018,33 @@ ggml_tensor * llama_kv_cache::cpy_k(ggml_context * ctx, ggml_tensor * k_cur, ggm\n \n const int32_t ikv = map_layer_ids.at(il);\n \n- auto * k = layers[ikv].k;\n+ ggml_tensor * k = layers[ikv].k;\n+\n+ const int64_t n_embd_he...
2025-09-08T07:25:33
ollama/ollama
5ade3db040b96b4c618e080aaf273aeec9f8edd1
965f9ad033de7f26b9d2178976fea85c57664ff2
fix race block on write which only returns when the channel is closed. this is contrary to the previous arrangement where the handler may return but the stream hasn't finished writing. it can lead to the client receiving unexpected responses (since the request has been handled) or worst case a nil-pointer dereference ...
[ { "path": "server/routes.go", "patch": "@@ -58,9 +58,6 @@ func generate(c *gin.Context) {\n \t\treq.Model = path.Join(cacheDir(), \"models\", req.Model+\".bin\")\n \t}\n \n-\tch := make(chan any)\n-\tgo stream(c, ch)\n-\n \ttemplateNames := make([]string, 0, len(templates.Templates()))\n \tfor _, template :...
2023-07-14T21:15:53
vuejs/vue
09f9783943613ee732c5b45951907fd069322f7d
cb1bb75b5827f7335bce9d097f995226235ecf2b
fix global mixin + export constructor in vue-loader (fix vue-loader#433)
[ { "path": "src/core/instance/init.js", "patch": "@@ -66,10 +66,13 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n if (Ctor.super) {\n const superOptions = Ctor.super.options\n const cachedSuperOptions = Ctor.superOptions\n+ const extendOptions = Ctor.extendOptions\n ...
2016-11-02T22:51:09
huggingface/transformers
0e5a97560807393e6d3bf005136591b5af0c2614
42c682514b3202da853027f222b29d637a26dcc1
Fix Qwen3-Omni audio_token_id serialization issue (#41192) Fix Qwen3-Omni audio_token_id serialization by overriding parent's attribute_map - Override attribute_map in Qwen3OmniMoeThinkerConfig to prevent inheritance of incorrect mapping - Parent class maps audio_token_id -> audio_token_index, but implementation uses...
[ { "path": "src/transformers/models/qwen3_omni_moe/configuration_qwen3_omni_moe.py", "patch": "@@ -431,11 +431,8 @@ class Qwen3OmniMoeThinkerConfig(PretrainedConfig):\n ```\"\"\"\n \n model_type = \"qwen3_omni_moe_thinker\"\n- attribute_map = {\n- \"image_token_id\": \"image_token_index\",\...
2025-09-30T09:15:56
denoland/deno
50c728d31c1c95f16441e79d0f2cc3f1c67f9439
26c3f172b58ae5302b294ab4e66dd024af8a500b
fix(bundle): treat bun specifiers as external by default (#31411) Fixes #31397
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -967,6 +967,7 @@ impl esbuild_client::PluginHandler for DenoPluginHandler {\n // to the output file. It will be tricky to figure out which\n // output file this import will end up in. We may have to use the metafile and rewrite at the end\n ...
2025-11-26T08:59:10
ggml-org/llama.cpp
d36e61c580bf7fc7879c443c542312a42b718e11
c97b5e5854b47b18a248d77edb693c63018a0865
ggml-cpu: clean up s390x SIMD (#15855) * ggml-cpu: clean up s390x simd Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> (cherry picked from commit 0da4b6aa07d96b758812d17b2c82267632fa4ba5) Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * ggml-cpu: fix hsum data types Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> -----...
[ { "path": "ggml/src/ggml-cpu/arch/s390/quants.c", "patch": "@@ -53,9 +53,9 @@ void quantize_row_q8_0(const float * GGML_RESTRICT x, void * GGML_RESTRICT vy, i\n \n #if defined(__VXE__) || defined(__VXE2__)\n for (int i = 0; i < nb; i++) {\n- __vector float srcv [8];\n- __vector float asrcv...
2025-09-07T18:18:28
vuejs/vue
cb1bb75b5827f7335bce9d097f995226235ecf2b
4b8eb75c7a5544a1f65ebd679fd89639208d5976
fix global mixin props (fix #3957)
[ { "path": "src/core/instance/init.js", "patch": "@@ -24,7 +24,7 @@ export function initMixin (Vue: Class<Component>) {\n initInternalComponent(vm, options)\n } else {\n vm.$options = mergeOptions(\n- resolveConstructorOptions(vm),\n+ resolveConstructorOptions(vm.constructor),\n...
2016-11-02T19:50:57
huggingface/transformers
42c682514b3202da853027f222b29d637a26dcc1
aaf1269d83a455ba39f01eb7035cbf8a9221c989
docs/examples(speech): pin CTC commands to Hub datasets; add Windows notes (#41027) * examples(speech): load Common Voice from Hub; remove deprecated dataset-script references (Windows-friendly notes) * docs/examples(speech): pin CTC streaming & other CTC commands to Hub datasets; add Windows notes * make style * e...
[ { "path": "examples/pytorch/speech-recognition/README.md", "patch": "@@ -66,7 +66,7 @@ The following command shows how to fine-tune [XLSR-Wav2Vec2](https://huggingface\n \n ```bash\n python run_speech_recognition_ctc.py \\\n-\t--dataset_name=\"common_voice\" \\\n+\t--dataset_name=\"mozilla-foundation/common...
2025-09-30T08:38:31
denoland/deno
0bd52c4640208ae025ad3ccd6b6cbbfbe5317b60
1146973cd1035264ebda1300bb8d4028542be066
fix(ext/node): implement `DatabaseSync.function()` and better error details (#31386) Closes #30097 Implementation is based on https://github.com/nodejs/node/blob/v24.2.0/src/node_sqlite.cc Changes in this PR allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-custom-functions.js test to pass...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -8,6 +8,7 @@ use std::ffi::CString;\n use std::ffi::c_char;\n use std::ffi::c_void;\n use std::path::Path;\n+use std::ptr::NonNull;\n use std::ptr::null;\n use std::rc::Rc;\n \n@@ -31,11 +32,13 @@ use super::SqliteError;\n use super::StatementSync;\n...
2025-11-25T14:14:27
ollama/ollama
5fefaa5d4dc3445417d155b639a9657ef6378115
77dc1a6d744ffa14a4875a790e725725ca6476d1
fix typo
[ { "path": "api/types.go", "patch": "@@ -57,7 +57,7 @@ func (r *GenerateResponse) Summary() {\n \t}\n \n \tif r.EvalDuration > 0 {\n-\t\tfmt.Fprintf(os.Stderr, \"eval duraiton: %s\\n\", r.EvalDuration)\n+\t\tfmt.Fprintf(os.Stderr, \"eval duration: %s\\n\", r.EvalDuration)\n \t\tfmt.Fprintf(os.S...
2023-07-14T17:47:18
huggingface/transformers
4a02bc7004285bdb12cc033e87ad2578ce2fa900
def4a37e19601b597f170e81684c8b0b5f84db39
[docs] Fix links (#41110) fix
[ { "path": "docs/source/en/serving.md", "patch": "@@ -16,25 +16,25 @@ rendered properly in your Markdown viewer.\n \n # Serving\n \n-Transformer models can be efficiently deployed using libraries such as vLLM, Text Generation Inference (TGI), and others. These libraries are designed for production-grade user...
2025-09-30T06:53:07
vuejs/vue
4b8eb75c7a5544a1f65ebd679fd89639208d5976
4314f45022c79dae11f46720b899c453abb1fc6f
fix coverage
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -1,14 +1,12 @@\n /* @flow */\n \n-import { warn } from 'core/util/index'\n-\n /**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\n export function addClass (el: Element, cls: ?strin...
2016-11-01T19:53:36
ggml-org/llama.cpp
61bdfd5298a78593be649a1035ee2a120b13c4f0
01806e77714ae8a78130d432945b959a0956c56f
server : implement prompt processing progress report in stream mode (#15827) * server : implement `return_progress` * add timings.cache_n * add progress.time_ms * add test * fix test for chat/completions * readme: add docs on timings * use ggml_time_us Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> ----...
[ { "path": "tools/server/README.md", "patch": "@@ -512,6 +512,8 @@ These words will not be included in the completion, so make sure to add them to\n \n `timings_per_token`: Include prompt processing and text generation speed information in each response. Default: `false`\n \n+`return_progress`: Include prom...
2025-09-06T11:35:04
denoland/deno
1146973cd1035264ebda1300bb8d4028542be066
7ad8750fe95799ee0e9594f5360fc9da36ae012e
fix(schema): add bundle to unstable field schema (#31395) Fixes https://github.com/denoland/deno/issues/31379
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -900,6 +900,7 @@\n \"type\": \"string\",\n \"examples\": [\n \"bare-node-builtins\",\n+ \"bundle\",\n \"byonm\",\n \"cron\",\n \"detect-cjs\",", "additions": 1, "deletions": 0, ...
2025-11-24T22:32:20
ollama/ollama
31590284a7bc02ca1a2bec4755f3026323f0d835
f2863cc7f805b0c03f2e297900048a4e50d5dd08
fix route
[ { "path": "server/routes.go", "patch": "@@ -147,7 +147,7 @@ func Serve(ln net.Listener) error {\n \t\tc.String(http.StatusOK, \"Ollama is running\")\n \t})\n \n-\tr.POST(\"api/pull\", pull)\n+\tr.POST(\"/api/pull\", pull)\n \tr.POST(\"/api/generate\", generate)\n \n \tlog.Printf(\"Listening on %s\", ln.Addr...
2023-07-13T00:19:03
vuejs/vue
0cd1489e68891e4ca532ce7299d09e8af5ae3f52
4a3b4c4a43dedcd9460ebddd56488943df8fca4e
.number modifier should work with select, radio, checkbox (fix #4018) (#4022) * support number modifier in select, radio, checkbox * add test case * add ASTModifier type to specify modifiers type * fix typo * keep code consistent
[ { "path": "flow/compiler.js", "patch": "@@ -41,9 +41,11 @@ declare type ModuleOptions = {\n staticKeys?: Array<string>; // AST properties to be considered static\n }\n \n+declare type ASTModifiers = { [key: string]: boolean }\n+\n declare type ASTElementHandler = {\n value: string;\n- modifiers: ?{ [ke...
2016-11-01T15:50:22
huggingface/transformers
3e975acc8bf6d029ec0a54b1c5d0691489dfb051
8635d8e796c77ee94f64c170168f71138380274b
Fix docker quantization (#41201) * launch docker * remove gptq for now * run tests * Revert "run tests" This reverts commit f85718ce3a21d5937bf7405b8925c125c67d1a3e. * revert
[ { "path": "docker/transformers-quantization-latest-gpu/Dockerfile", "patch": "@@ -30,22 +30,21 @@ RUN python3 -m pip install --no-cache-dir -U $VERSION torchvision torchaudio tor\n \n RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/accelerate@main#egg=accelerate\n \n-# needed in...
2025-09-29T16:36:30
ggml-org/llama.cpp
fd621880f3fd908424e675a41715a2dc760247a2
4281c7b315f8a904549fe527039b976e08098d1a
aLoRA Support (#15327) * feat: Add python-side constants and conversion for adapter.lora.invocation_string Branch: gabe-l-hart/alora-support Signed-off-by: Gabe Goodhart <ghart@us.ibm.com> * feat: Add c++ side constants for adapter.lora.invocation_string Branch: gabe-l-hart/alora-support Signed-off-by: Gabe Goodh...
[ { "path": "convert_lora_to_gguf.py", "patch": "@@ -12,7 +12,7 @@\n from math import prod\n from pathlib import Path\n from typing import TYPE_CHECKING, Any, Callable, Iterable, Iterator, Sequence, SupportsIndex, cast\n-from transformers import AutoConfig\n+from transformers import AutoConfig, AutoTokenizer\...
2025-09-05T23:32:39
denoland/deno
578c0909192f9e9e47e4ec500a57374ca6338103
bf5d44b7fa863e76d392301d7917676571f9d4bf
fix: `is_elf` panic in sui (#31388) Fixes https://github.com/denoland/deno/issues/31378
[ { "path": "Cargo.lock", "patch": "@@ -5792,9 +5792,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.10.0\"\n+version = \"0.11.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6744db763b6e19aff65ebac2c85cf71358b3aae385828fcf0d1e02878ab7767b\"\n...
2025-11-24T16:19:04
huggingface/transformers
8635d8e796c77ee94f64c170168f71138380274b
1f0e9a4778002c9a1e57a3dd549208f47da99a41
Fix 8bit bnb loading (#41200) * Fix 8bit * oups forgot the case where it is not prequantized
[ { "path": "src/transformers/quantizers/quantizer_bnb_8bit.py", "patch": "@@ -185,7 +185,6 @@ def create_quantized_param(\n \"Detected int8 weights but the version of bitsandbytes is not compatible with int8 serialization. \"\n \"Make sure to download the latest `bitsandbytes`...
2025-09-29T16:34:46
vuejs/vue
a632d601476d582c612de90dfcbade1b372012ce
84918577d246619c2786b65479e5dd8ed5c6a7ae
Check and warn for falsy class names (fixes #4050) (#4051) This commit adds a check for falsy names (null or empty string) before attempting to add or remove them, to prevent a DOM exception. A warning will also be triggered if in development env.
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -1,10 +1,17 @@\n /* @flow */\n \n+import { warn } from 'core/util/index'\n+\n /**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\n-export function addClass (el: Element, cls: string...
2016-11-01T15:30:43
ggml-org/llama.cpp
5fac79cbc77b6d12c9feb5f34fc63586b35fd561
408ff524b40baf4f51a81d42a9828200dd4fcb6b
Thinking model disabled assistant prefill (#15404) * feat: Set enable_thinking IFF not disabled and supported Branch: gabe-l-hart/thinking-model-disabled-agent-prefill Signed-off-by: Gabe Goodhart <ghart@us.ibm.com> * fix: Fix inverted logic condition for prefill error Branch: gabe-l-hart/thinking-model-disabled-a...
[ { "path": "common/chat.cpp", "patch": "@@ -163,6 +163,19 @@ common_chat_tool_choice common_chat_tool_choice_parse_oaicompat(const std::strin\n throw std::runtime_error(\"Invalid tool_choice: \" + tool_choice);\n }\n \n+bool common_chat_templates_support_enable_thinking(const common_chat_templates * chat...
2025-09-05T20:31:24
denoland/deno
5efe6a5f042daceb12e4f65d2955eadb436d4b8c
f881b2f9a710ceedc2805945f08bfcb0ef09aa73
fix(lsp): store assigned compiler options for cache files (#31377)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1033,6 +1033,8 @@ impl WeakDocumentModuleMap {\n }\n }\n \n+type ScopeInfo = (Option<Arc<Url>>, CompilerOptionsKey);\n+\n #[derive(Debug, Default, Clone)]\n pub struct DocumentModules {\n pub documents: Documents,\n@@ -1044,6 +1046,7 @@ pub struct Document...
2025-11-24T14:00:31
ollama/ollama
2666d3c206f31e2ee3cf6cc8ef6643816edac75b
5571ed52483fb48a6a9bcfb1a0751b6148db94e2
fix pull race
[ { "path": "server/models.go", "patch": "@@ -76,22 +76,10 @@ func saveModel(model *Model, fn func(total, completed int64)) error {\n \t\treturn fmt.Errorf(\"failed to download model: %w\", err)\n \t}\n \n-\t// check if completed file exists\n-\tfi, err := os.Stat(model.FullName())\n-\tswitch {\n-\tcase error...
2023-07-13T02:07:15
huggingface/transformers
1f0e9a4778002c9a1e57a3dd549208f47da99a41
bd37c453544e83eb875ed3608980a1660376007a
Fix EXAONE-4.0 dummy id (#41089) * Fix EXAONE-4.0 dummy id * Fix exaone4 dummy (#1) * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> --------- Co-authored-by: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Co-authored-by: ydshieh <ydshieh@users.noreply.gi...
[ { "path": "src/transformers/models/exaone4/configuration_exaone4.py", "patch": "@@ -26,8 +26,7 @@ class Exaone4Config(PretrainedConfig):\n r\"\"\"\n This is the configuration class to store the configuration of a [`Exaone4Model`]. It is used to\n instantiate a EXAONE 4.0 model according to the s...
2025-09-29T16:30:55
vuejs/vue
84918577d246619c2786b65479e5dd8ed5c6a7ae
2ac581bb7f34b1ef0f35c3e6945acd630a92453e
fix problematic use of 'deprecated' in warnings (#4043)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -399,7 +399,7 @@ function processAttrs (el) {\n if (expression) {\n warn(\n `${name}=\"${value}\": ` +\n- 'Interpolation inside attributes has been deprecated. ' +\n+ 'Interpolation inside attributes h...
2016-11-01T15:17:25
ggml-org/llama.cpp
a81283820a466f2ace06ce4d4bc9512761f9365f
c610b6c11b1ef7d678671dcf15acd7187a7ad8f3
gguf: gguf_writer refactor (#15691) * gguf: split gguf writer into base and buf impl * gguf: templated gguf write out * gguf: file based writer (avoid writing everything to memory first!) * examples(llama2c): fix log not being the same level and compiler nits
[ { "path": "examples/convert-llama2c-to-ggml/convert-llama2c-to-ggml.cpp", "patch": "@@ -333,17 +333,17 @@ static void print_params(struct my_llama_hparams * params) {\n }\n \n static void print_tensor_info(const struct ggml_context * ctx) {\n- for (auto t = ggml_get_first_tensor(ctx); t != NULL; t = ggml...
2025-09-05T09:34:28
ollama/ollama
e6eee0732c22154846551ff402f91157f1e80239
4c2b4589ac8799b045851252e8603210e46b1a62
web: fix `npm build`
[ { "path": "web/app/download/downloader.tsx", "patch": "@@ -2,7 +2,7 @@\n \n import { useEffect } from 'react'\n \n-export default function ({ url }: { url: string }) {\n+export default function Downloader({ url }: { url: string }) {\n useEffect(() => {\n window.location.href = url\n }, [])", "ad...
2023-07-13T00:28:00
denoland/deno
f881b2f9a710ceedc2805945f08bfcb0ef09aa73
355d8994b2ab3b4979214d6d47ed70e39a37a92c
fix(ext/node): autopadding behavior on `crypto.Cipheriv` (#31389)
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -223,7 +223,10 @@ export class Cipheriv extends Transform implements Cipher {\n this.#lazyInitDecoder(encoding);\n \n const buf = new FastBuffer(16);\n- if (this.#cache.cache.byteLength == 0) {\n+ const hasNoBufferedData = ...
2025-11-24T11:33:57
vuejs/vue
2ac581bb7f34b1ef0f35c3e6945acd630a92453e
b51b9eae4d427d0a909aff8c5f08575c450711a1
SSR: eliminate closure in render.js implementation eliminate closure fix multiple render instances and memory leakage fix eslint magically fix flow typing add multiple render stream test
[ { "path": "flow/options.js", "patch": "@@ -57,7 +57,9 @@ declare type ComponentOptions = {\n _propKeys?: Array<string>;\n _parentVnode?: VNode;\n _parentListeners?: ?Object;\n- _renderChildren?: ?VNodeChildren\n+ _renderChildren?: ?VNodeChildren;\n+ _componentTag: ?string;\n+ _scopeId: ?string;\n ...
2016-10-20T17:34:06
ggml-org/llama.cpp
c610b6c11b1ef7d678671dcf15acd7187a7ad8f3
5d6688de08e73acc2532d668380801ed79d704eb
kv-cache : fix SWA checks + disable cacheless iSWA (#15811) ggml-ci
[ { "path": "src/llama-graph.cpp", "patch": "@@ -297,6 +297,9 @@ void llm_graph_input_attn_no_cache::set_input(const llama_ubatch * ubatch) {\n \n float * data = (float *) kq_mask->data;\n \n+ // [TAG_NO_CACHE_ISWA]\n+ GGML_ASSERT(hparams.swa_type == LLAMA_SWA_TYPE_NONE && \"TODO: implement\");\n+\n...
2025-09-05T07:39:22
huggingface/transformers
bd37c453544e83eb875ed3608980a1660376007a
c1db38686acb480440e9d5e56a6b5cdbe8613321
Add EdgeTAM (#39800) * initial comment * test * initial conversion for outline * intermediate commit for configuration * chore:init files for sam2 * adding arbitary undefined config * check * add vision * make style * init sam2 base model * Fix imports * Linting * chore:sam to sam2 classes * Linting * Ad...
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -1033,6 +1033,10 @@\n title: DePlot\n - local: model_doc/donut\n title: Donut\n+ - local: model_doc/edgetam\n+ title: EdgeTAM\n+ - local: model_doc/edgetam_video\n+ title: EdgeTamVideo\n - local: model_...
2025-09-29T15:54:54
denoland/deno
355d8994b2ab3b4979214d6d47ed70e39a37a92c
2b20d4aa55ae217d378ba0ddb3644e2c26f9741f
fix: fetch fd leak (#31375) Solution for: https://github.com/denoland/deno/issues/31080 Modern reqwest (0.12+) can safely share clients across tokio runtimes. Because it uses the current runtime's executor instead of spawning background threads. Using a single shared client prevents resource leaks when worker threads...
[ { "path": "cli/http_util.rs", "patch": "@@ -1,14 +1,11 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-use std::collections::HashMap;\n use std::sync::Arc;\n-use std::thread::ThreadId;\n \n use boxed_error::Boxed;\n use deno_cache_dir::file_fetcher::RedirectHeaderParseError;\n use deno_core:...
2025-11-22T02:27:04
vuejs/vue
3fef65c742ca6fa4773206ee26789d3ad3499cbe
cca4469c38325ed2ddd62f8705315ad8b8265677
fix vuejsjob links
[ { "path": "BACKERS.md", "patch": "@@ -48,7 +48,7 @@ You can join them in supporting Vue.js development by [pledging on Patreon](htt\n <img width=\"240px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/2mhost.png\">\n </a>\n \n-<a href=\"https://vuejobs.com/?ref_s...
2016-10-31T17:06:41
ggml-org/llama.cpp
4fd1242bef6cb2325b4ff1c1a80f3b54b64508a6
b2426e469e2fdb6c44216d56baa4cfff4f39ae00
chat : fixed crash when Hermes 2 <tool_call> had a newline before it (#15639) Co-authored-by: CNE Pierre FICHEPOIL <pierre-1.fichepoil@gendarmerie.interieur.gouv.fr>
[ { "path": "common/chat.cpp", "patch": "@@ -1892,7 +1892,7 @@ static common_chat_params common_chat_params_init_hermes_2_pro(const common_chat\n // If thinking_forced_open, then we capture the </think> tag in the grammar,\n // (important for required tool choice) and in the tr...
2025-09-04T23:24:08
ollama/ollama
0944b01e7d874eae18b93ac4804478c1f103a2e4
e1f0a0dc7488d4a38b687d4d894dce722de050aa
pull fixes
[ { "path": "cmd/cmd.go", "patch": "@@ -59,7 +59,7 @@ func pull(model string) error {\n \t\t&api.PullRequest{Model: model},\n \t\tfunc(progress api.PullProgress) error {\n \t\t\tif bar == nil {\n-\t\t\t\tif progress.Percent == 100 {\n+\t\t\t\tif progress.Percent >= 100 {\n \t\t\t\t\t// already downloaded\n \t...
2023-07-12T16:55:07
huggingface/transformers
c1db38686acb480440e9d5e56a6b5cdbe8613321
5426edecab645af05ba95410b71c56887a11f97c
[`Kernels Attention`] Change fallback logic to error out on explicit kernels request and include FA3 (#41010) * fix * be more strict * change logic to include fa3 * fix the case where nothing is requested * modify old tests + add kernels related tests * style
[ { "path": "src/transformers/integrations/hub_kernels.py", "patch": "@@ -152,7 +152,10 @@ def load_and_register_kernel(attn_implementation: str) -> None:\n if not is_kernel(attn_implementation):\n return\n if not _kernels_available:\n- raise ImportError(\"`kernels` is not installed. Pl...
2025-09-29T15:10:59
vuejs/vue
0d35aa5f217ec612165a8e7e1b5f636d222a6e4e
defd45ccbadb7e0e347b1999d48fe354998ba37a
Fix links on vue-template-compiler README (#4021)
[ { "path": "packages/vue-template-compiler/README.md", "patch": "@@ -38,7 +38,7 @@ The optional `options` object can contain the following:\n \n - `modules`\n \n- An array of compiler modules. For details on compiler modules, refer to its [type definition](https://github.com/vuejs/vue/blob/dev/flow/compiler...
2016-10-24T12:52:11
denoland/deno
e5c65261d843e7704a57c1b66807d5ae6dd45664
bcdddb4ea3804074e551361586f5bf93a94e8350
fix: upgrade denokv_* to 0.13 and rusqlite to 0.27 (#31374) No functional changes
[ { "path": "Cargo.lock", "patch": "@@ -570,24 +570,6 @@ dependencies = [\n \"syn 2.0.87\",\n ]\n \n-[[package]]\n-name = \"bindgen\"\n-version = \"0.71.1\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3\"\n...
2025-11-21T15:16:30
ggml-org/llama.cpp
b2426e469e2fdb6c44216d56baa4cfff4f39ae00
9e2b1e83c68a38ea0c64f726dd979439bd02189b
chat : nemotron thinking & toolcalling support (#15676) * feat: nemotron thinking & toolcalling support * Trailing whitespaces * Corrected template for Nemotron * Template and parser fixes * Final template and grammar changes * Whitespace * Always do lazy grammar processing since </think> tag will always be ther...
[ { "path": "common/chat.cpp", "patch": "@@ -623,6 +623,7 @@ const char * common_chat_format_name(common_chat_format format) {\n case COMMON_CHAT_FORMAT_GRANITE: return \"Granite\";\n case COMMON_CHAT_FORMAT_GPT_OSS: return \"GPT-OSS\";\n case COMMON_CHAT_FORMAT_SEED_OSS: return \"Seed...
2025-09-04T23:22:22
ollama/ollama
e1f0a0dc7488d4a38b687d4d894dce722de050aa
b227261f21c8946ae74e634520d5550d6834ed45
fix eof error in generate
[ { "path": "llama/llama.go", "patch": "@@ -199,10 +199,10 @@ func (llm *llama) generate(tokens []C.llama_token, fn func(string)) error {\n \n \t\ttoken, err := llm.sample(pastTokens, &opts)\n \t\tswitch {\n-\t\tcase err != nil:\n-\t\t\treturn err\n \t\tcase errors.Is(err, io.EOF):\n \t\t\treturn nil\n+\t\tca...
2023-07-12T16:35:56
huggingface/transformers
5426edecab645af05ba95410b71c56887a11f97c
399c589dfaf22138baeb8721a15eed35d5231217
Make quantizers good citizens loading-wise (#41138) * fix param_needs_quantization * rewrite most hqq * clean * fix * comment * remove it from exception of safetensors * start on bnb 4bits * post-rebase fix * make bnb4 bit a good citizen * remove forgotten print * make bnb 8bits a good citizen * better hqq ...
[ { "path": "examples/quantization/custom_quantization_int8_example.py", "patch": "@@ -159,24 +159,13 @@ def _process_model_before_weight_loading(self, model, **kwargs):\n pre_quantized=self.pre_quantized,\n )\n \n- def param_needs_quantization(\n- self,\n- model,\n- ...
2025-09-29T15:04:45
vuejs/vue
defd45ccbadb7e0e347b1999d48fe354998ba37a
7dc38dea27ba7b99d8cb56e1cbb9be0659e217f7
Typo fix: optimizier -> optimizer (#4015)
[ { "path": "src/compiler/optimizer.js", "patch": "@@ -8,7 +8,7 @@ let isPlatformReservedTag\n const genStaticKeysCached = cached(genStaticKeys)\n \n /**\n- * Goal of the optimizier: walk the generated template AST tree\n+ * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees...
2016-10-24T12:25:07
denoland/deno
e59d37f3bb93eb70d6e2f87d6baa2e026a7de4d0
051dadf42984c9311b7dbc666f1a686e76974301
ci: fix issue triage workflow (#31362)
[ { "path": ".github/workflows/issue_triage.yml", "patch": "@@ -15,6 +15,7 @@ jobs:\n if: github.event_name == 'workflow_dispatch' || (github.event.issue.author_association != 'MEMBER' && github.event.issue.author_association != 'OWNER')\n runs-on: ubuntu-latest\n permissions:\n+ contents: re...
2025-11-20T17:44:00
ggml-org/llama.cpp
9e2b1e83c68a38ea0c64f726dd979439bd02189b
fb15d649ed14ab447eeab911e0c9d21e35fb243e
scripts : add Jinja tester PySide6 simple app (#15756) * feat: add Jinja tester PySide6 simple app * Linter fixes * Pylint fixes * Whitespace * Add commandline support; add formatter; add extensions * Remove testing actions * Silence flake8 warnings for commandline mode * Apply suggestions from code review Co-...
[ { "path": "scripts/jinja/jinja-tester.py", "patch": "@@ -0,0 +1,504 @@\n+#!/usr/bin/env python3\n+import sys\n+import json\n+import argparse\n+import jinja2.ext as jinja2_ext\n+from PySide6.QtWidgets import (\n+ QApplication,\n+ QMainWindow,\n+ QWidget,\n+ QVBoxLayout,\n+ QHBoxLayout,\n+ Q...
2025-09-04T23:05:12
huggingface/transformers
52cbc7c868fde27f10e39504fb74ac733cc98b63
de9a75f5b0892b1653b5e820d6e210663a3d2a05
Fix attention sink implementation in flex attention (#41083) * Fix attention sink implementation in flex attention * fix dim * fix * Remove print * raisae error when return_lse is False yet s_aux is providewd * Clean test files for merge * Update src/transformers/integrations/flex_attention.py Co-authored-by: A...
[ { "path": "docs/source/en/model_doc/gpt_oss.md", "patch": "@@ -35,6 +35,8 @@ The abstract from the paper is the following:\n *<INSERT PAPER ABSTRACT HERE>*\n \n Tips:\n+- **Attention Sinks with Flex Attention**: When using flex attention, attention sinks require special handling. Unlike with standard attent...
2025-09-29T14:33:03
vuejs/vue
7dc38dea27ba7b99d8cb56e1cbb9be0659e217f7
31056616627cd5be14aa9cc75a71e7c5c433f9a0
fix SFC parsing pug templates that contains "<" (fix #3973)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -44,7 +44,23 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isSpecialTag = makeMap('script,style', true)\n+const isScriptOrStyle = makeMap('script,style', true)\n+const hasLang = attr => attr....
2016-10-22T08:27:35
denoland/deno
f61f5ffe7bd53bc71acc8ec5aa45b05736407201
c935fb494a9bdfc3dcf288c4610d6c989f7d694f
fix(ext/node): `StatementSync.iterate()` should reset `is_iter_finished` flag on every call (#31361)
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -576,7 +576,7 @@ impl DatabaseSync {\n use_big_ints: Cell::new(false),\n allow_bare_named_params: Cell::new(true),\n allow_unknown_named_params: Cell::new(false),\n- is_iter_finished: false,\n+ is_iter_finished: Cell::new(...
2025-11-20T16:22:26
ggml-org/llama.cpp
d1e2adba65208d6de3d7f6f23b00c562ff5bb777
c1c354e44c06d259679bb5bb7a8fa9f0b28480e4
llama : set n_outputs to 1 to avoid 0 outputs mean-pooling (#15791) * llama : set n_outputs to 1 to avoid 0 outputs mean-pooling This commit modifies the llama_context constructor to set n_outputs to 1. The motivation for this is that when using pooling, and specifically mean pooling, for embeddings having n_outputs...
[ { "path": "src/llama-context.cpp", "patch": "@@ -285,6 +285,9 @@ llama_context::llama_context(\n const uint32_t n_seqs = cparams.kv_unified ? 1 : cparams.n_seq_max;\n const uint32_t n_tokens = std::min(cparams.n_ctx, cparams.n_ubatch);\n \n+ // avoid reserving graphs with zero outputs...
2025-09-04T13:40:44
huggingface/transformers
de9a75f5b0892b1653b5e820d6e210663a3d2a05
bcc0dae77ca6b8928589f68ea16f1733978da7ca
fix(trainer): Avoid moving model with device_map (#41032) * fix(trainer): Avoid moving model with device_map When a model is loaded with `device_map="auto"` and is too large to fit on a single GPU, `accelerate` will offload some layers to the CPU or disk. The `Trainer` would previously attempt to move the entire mode...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -894,6 +894,11 @@ def remove_callback(self, callback):\n self.callback_handler.remove_callback(callback)\n \n def _move_model_to_device(self, model, device):\n+ if getattr(model, \"hf_device_map\", None) is not None:\n+ logg...
2025-09-29T14:31:42
ollama/ollama
c63f811909a662b0103fe429a22275377bd26c07
7c71c10d4fc51f2a26961d902f3ed660af789c93
return error if model fails to load
[ { "path": "llama/llama.go", "patch": "@@ -123,7 +123,14 @@ func New(model string, opts api.Options) (*llama, error) {\n \tdefer C.free(unsafe.Pointer(cModel))\n \n \tllm.model = C.llama_load_model_from_file(cModel, params)\n+\tif llm.model == nil {\n+\t\treturn nil, errors.New(\"failed to load model\")\n+\t...
2023-07-12T03:32:26
vuejs/vue
31056616627cd5be14aa9cc75a71e7c5c433f9a0
5f8ae401d468694d2476890eb5f0c021e9bf2720
v-model binding with array. (fix #3958,#3979) (#3988) * fix v-model with array binding * add mutli selects test case * add test case. v-bind with array * add comments * code refactor
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -2,6 +2,7 @@\n \n import { isIE } from 'core/util/env'\n import { addHandler, addProp, getBindingAttr } from 'compiler/helpers'\n+import parseModel from 'web/util/model'\n \n let warn\n \n@@ -79,7 +80,7 @@ function genRadioModel (el: A...
2016-10-22T06:57:32
denoland/deno
491274d6edce1993ab0a2d39a16bc79e663abb88
dbe35b03fbf8732adcd95efecc07af7c8ca141f7
fix(ext/node): implement `dns.lookupService` (#31310) Closes #26300 Allows the following node compatibility tests to pass: - https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-dns-lookupService-promises.js - https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-dns-lookupService.js <!-- This is ...
[ { "path": "Cargo.lock", "patch": "@@ -2519,6 +2519,7 @@ dependencies = [\n \"sha3\",\n \"signature\",\n \"sm3\",\n+ \"socket2 0.5.5\",\n \"spki\",\n \"sys_traits\",\n \"thiserror 2.0.12\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml", ...
2025-11-20T11:12:26
ggml-org/llama.cpp
c1c354e44c06d259679bb5bb7a8fa9f0b28480e4
a68d9144262f1d0ef4f6ba7ad4a7e73e977ba78c
CANN: Refactor ND to NZ workspace to be per-device (#15763) * CANN:Refactor ND to NZ workspace to be per-device in Ascend backend - Replaced the previous single global ND→NZ workspace with a per-device cache using unordered_map keyed by device ID. - Functions `release_nz_workspace`, `relloc_nz_workspace`, and `ge...
[ { "path": "ggml/src/ggml-cann/ggml-cann.cpp", "patch": "@@ -1116,30 +1116,65 @@ static enum ggml_status ggml_backend_cann_buffer_init_tensor(\n return GGML_STATUS_SUCCESS;\n }\n \n-// ND to NZ Workspace Cache Management. Thread-safety: Not guaranteed\n-namespace {\n- void* g_nz_workspace = nullptr;\n...
2025-09-04T12:20:14
huggingface/transformers
bcc0dae77ca6b8928589f68ea16f1733978da7ca
fcd483f0ffb5f53bad845213391f869c6e6d627c
enable flex attention ut cases on XPU (#40989) * enable flex attention ut cases on XPU Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> --------- Signed-off-by: Yao, Matrix <matrix.yao@intel.com> Co-authored-by: Marc Sun <57196510+SunMarc@users.norepl...
[ { "path": "tests/extended/test_trainer_ext.py", "patch": "@@ -259,8 +259,8 @@ def train_and_return_metrics(optim: str) -> tuple[int, float]:\n f\" gpu_total_mem_bnb={gpu_total_mem_bnb}MB\",\n )\n \n- self.assertEqual(\n- loss_orig, loss_bnb, f\"loss should be the same, ...
2025-09-29T14:30:49
ollama/ollama
7c71c10d4fc51f2a26961d902f3ed660af789c93
dcb6ba389a335096c62258cb37c17c61714d51e8
fix compilation issue in Dockerfile, remove from `README.md` until ready
[ { "path": ".gitignore", "patch": "@@ -2,6 +2,5 @@\n .vscode\n .env\n .venv\n-*.spec\n dist\n ollama", "additions": 0, "deletions": 1, "language": "Unknown" }, { "path": "Dockerfile", "patch": "@@ -1,8 +1,6 @@\n FROM golang:1.20\n-RUN apt-get update && apt-get install -y cmake\n WORKD...
2023-07-12T02:51:08
ggml-org/llama.cpp
a68d9144262f1d0ef4f6ba7ad4a7e73e977ba78c
badb80cadbc40e047b30c43611aba575fc8d6845
server: add exceed_context_size_error type (#15780) * server: add exceed_context_size_error type * change error code to 400
[ { "path": "tools/server/server.cpp", "patch": "@@ -86,6 +86,7 @@ enum error_type {\n ERROR_TYPE_PERMISSION,\n ERROR_TYPE_UNAVAILABLE, // custom error\n ERROR_TYPE_NOT_SUPPORTED, // custom error\n+ ERROR_TYPE_EXCEED_CONTEXT_SIZE, // custom error\n };\n \n static bool server_task_type_need_embd...
2025-09-04T09:50:23
denoland/deno
dbe35b03fbf8732adcd95efecc07af7c8ca141f7
030826f589ba5df03454ad3d3827cafaa29c1635
fix(node): stub missing process.sourceMapsEnabled (#31358) See https://nodejs.org/api/process.html#processsourcemapsenabled This fixes an issue in Fresh with vite's environment API which relies on this property to check if vite should map stack traces https://github.com/vitejs/vite/blob/main/packages/vite/src/module-...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -756,6 +756,15 @@ process.setSourceMapsEnabled = (_val: boolean) => {\n // TODO(@satyarohith): support disabling source maps if needed.\n };\n \n+// Source maps are always enabled in Deno.\n+Object.defineProperty(process, \"sourceMapsEnabled\", {\n+ ...
2025-11-20T09:39:24
vuejs/vue
9c91190b40dd8e5ec61992e97d476af28e754de9
1a8720d6ead500eed5d40457a3e7f59fe8972472
Fix typos. (#3956)
[ { "path": "build/config.js", "patch": "@@ -30,7 +30,7 @@ const builds = {\n env: 'production',\n banner\n },\n- // Runtime+compiler standalone developement build.\n+ // Runtime+compiler standalone development build.\n 'web-standalone-dev': {\n entry: path.resolve(__dirname, '../src/entries...
2016-10-19T15:21:22
huggingface/transformers
a3fa1d3993452ced753eb6bd6003c3e94f0497e8
ad74fba08521b34f36cd72f6254b9b19a4fdb04b
Fix inaccurate train_tokens_per_second when resuming from checkpoint (#41156) * fix(trainer): Fix the issue of inaccurate token count in training sessions During the training process, the initial token count was not saved, leading to inaccurate speed calculation. Now, the initial token count is saved and the incremen...
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2516,6 +2516,7 @@ def _inner_training_loop(\n \n self.state.epoch = 0\n start_time = time.time()\n+ self.initial_num_input_tokens_seen_for_session = self.state.num_input_tokens_seen\n epochs_trained = 0\n steps_tra...
2025-09-29T14:22:35
ollama/ollama
c5f7eadd8767aa0c394af26aedf2118c07ae0694
7226980fb6c8fdb6cf4f5112a00b4e05781365ea
error checking new model
[ { "path": "llama/llama.go", "patch": "@@ -123,7 +123,14 @@ func New(model string, opts api.Options) (*llama, error) {\n \tdefer C.free(unsafe.Pointer(cModel))\n \n \tllm.model = C.llama_load_model_from_file(cModel, params)\n+\tif llm.model == nil {\n+\t\treturn nil, errors.New(\"failed to load model\")\n+\t...
2023-07-12T00:07:41
vuejs/vue
1a8720d6ead500eed5d40457a3e7f59fe8972472
6d31ed255df3e6b6f97270396c04c0eef0d2802b
Fix typo in 'component' (#3978)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -12,7 +12,7 @@ export default class VNode {\n key: string | number | void;\n componentOptions: VNodeComponentOptions | void;\n child: Component | void; // component instance\n- parent: VNode | void; // compoennt placeholder node\n+ parent: VNode | voi...
2016-10-19T14:33:17
denoland/deno
931a5c75b32a6a0803c8084d3f48c755cb6fe68f
699056eba590ec803e86da6aadaeefd41b85d1c5
fix(cli): put tasks first in zsh dynamic completions (#31350) It's kind of annoying because it requires copying some code from clap, but it's the only solution I could find
[ { "path": "Cargo.lock", "patch": "@@ -1700,6 +1700,7 @@ dependencies = [\n \"serde_repr\",\n \"sha2\",\n \"shell-escape\",\n+ \"shlex\",\n \"spki\",\n \"sqlformat\",\n \"strsim\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.toml", "patch": "@@ -2...
2025-11-20T08:42:31
ggml-org/llama.cpp
0a1b3982cd0bd18730d50a693053b88c13fd04a6
5421f63ab08ca1e1a093662a5ccd0117e461185f
ggml: add ops for WAN video model (cuda && cpu) (#15669) * add conv3d support * add ggml_pad_ext for cpu & cuda backend * cuda/cpu: add im2col_3d support * cuda: make im2col a little faster * fix cuda pad/scale/im2col3d * make im2col_3d faster * gguf: support loading tensors which n_dims > GGML_MAX_DIMS * fix c...
[ { "path": "ggml/include/ggml.h", "patch": "@@ -511,6 +511,7 @@ extern \"C\" {\n GGML_OP_CONV_TRANSPOSE_1D,\n GGML_OP_IM2COL,\n GGML_OP_IM2COL_BACK,\n+ GGML_OP_IM2COL_3D,\n GGML_OP_CONV_2D,\n GGML_OP_CONV_3D,\n GGML_OP_CONV_2D_DW,\n@@ -1870,6 +1871,41 @@...
2025-09-04T08:38:49
vuejs/vue
6d31ed255df3e6b6f97270396c04c0eef0d2802b
7c9575bffe47214f339a70ba9e52770b893b8d1e
typo fix (#3963)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -22,7 +22,7 @@ export const transitionProps = {\n }\n \n // in case the child is also an abstract component, e.g. <keep-alive>\n-// we want to recrusively retrieve the real component to be rendered\n+// we want to recursively retri...
2016-10-17T09:30:22
huggingface/transformers
ad74fba08521b34f36cd72f6254b9b19a4fdb04b
38a08b6e8ae35857109cedad75377997fecbf9d0
[v5] Remove `model_parallel` deprecated feature (#41166) * fix * remove model parallel * style * removed a bit too much * rm comments * fix
[ { "path": "src/transformers/loss/loss_utils.py", "patch": "@@ -62,7 +62,6 @@ def ForCausalLMLoss(\n # Flatten the tokens\n logits = logits.view(-1, vocab_size)\n shift_labels = shift_labels.view(-1)\n- # Enable model parallelism\n shift_labels = shift_labels.to(logits.device)\n loss =...
2025-09-29T14:14:03
denoland/deno
82eba477fbea8a11127bf2a678413be24e0857a0
3c0f2890ebfdfc619a3133debb64a2dd68d59920
feat: add `--ignore-env=...` (#31187) Adds the ability to ignore certain environment variables and return `undefined` instead of erroring.
[ { "path": "cli/args/flags.rs", "patch": "@@ -814,6 +814,7 @@ pub struct PermissionFlags {\n pub allow_all: bool,\n pub allow_env: Option<Vec<String>>,\n pub deny_env: Option<Vec<String>>,\n+ pub ignore_env: Option<Vec<String>>,\n pub allow_ffi: Option<Vec<String>>,\n pub deny_ffi: Option<Vec<Stri...
2025-11-19T15:49:06
ggml-org/llama.cpp
5421f63ab08ca1e1a093662a5ccd0117e461185f
820bc9853100708011036e10f40b923968dd9b66
CANN: Fix precision issue on 310I DUO multi-devices (#15784)
[ { "path": "docs/backend/CANN.md", "patch": "@@ -293,17 +293,14 @@ We would like to thank Tuo Dai, Shanni Li, and all of the project maintainers fr\n \n ## Environment variable setup\n \n-### GGML_CANN_ASYNC_MODE\n-\n-Enables asynchronous operator submission. Disabled by default.\n-\n ### GGML_CANN_MEM_POOL\...
2025-09-04T07:12:30
vuejs/vue
341d0a03570f548c5a2962704a4de8cda0247710
8ba420c35975583486308a55d31c1df7b195574a
fixed #3942 (#3947) * fixed #3942 * fixed #3942
[ { "path": "src/core/observer/index.js", "patch": "@@ -186,6 +186,7 @@ export function defineReactive (\n */\n export function set (obj: Array<any> | Object, key: any, val: any) {\n if (Array.isArray(obj)) {\n+ obj.length = Math.max(obj.length, key)\n obj.splice(key, 1, val)\n return val\n }"...
2016-10-17T02:43:39
huggingface/transformers
38a08b6e8ae35857109cedad75377997fecbf9d0
4fade1148f86418dadd5a4a21b57af906e0bd5be
More typing fixes (#41102) * Fix noqa Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * fix typing Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * Use np.ndarray Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * More fixes Signed-off-by: Yuanyuan Chen <cyyever@outlook.com> * remove noqa Signed-off-...
[ { "path": "src/transformers/data/data_collator.py", "patch": "@@ -17,25 +17,25 @@\n from collections.abc import Mapping\n from dataclasses import dataclass\n from random import randint\n-from typing import Any, Callable, NewType, Optional, Union\n+from typing import Any, Callable, Optional, Union\n \n impor...
2025-09-29T13:11:53
denoland/deno
3c0f2890ebfdfc619a3133debb64a2dd68d59920
8c6141697e258d6cbdd6e62e0ab680669fe762b9
fix(ext/node): segfault on calling `StatementSync` methods after connection has closed (#31331) Previously, running this code causes segfault: ```ts import { DatabaseSync } from "node:sqlite"; const db = new DatabaseSync(':memory:'); const stmt = db.prepare('SELECT 1 AS value'); db.close(); stmt.get(); // segmentatio...
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -30,6 +30,7 @@ use super::Session;\n use super::SqliteError;\n use super::StatementSync;\n use super::session::SessionOptions;\n+use super::statement::InnerStatementPtr;\n use super::statement::check_error_code2;\n use super::validators;\n \n@@ -230,...
2025-11-19T01:56:09
ggml-org/llama.cpp
239b60e8986bbcb944f57311a02ac994431bf652
dff7551bfdbdd6e57c13e523d7dcca317640e907
CANN: fix acl_rstd allocation size in ggml_cann_rms_norm (#15760) Fixes #15330 Adjust the allocation size of acl_rstd. The parameter `dims` is set to 3 according to the CANN documentation. Co-authored-by: Yuchuan <yuchuan-cao@users.noreply.github.com>
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -975,18 +975,19 @@ void ggml_cann_rms_norm(ggml_backend_cann_context& ctx, ggml_tensor* dst) {\n );\n \n // build rstd, zero...\n- size_t acl_rstd_nb[GGML_MAX_DIMS];\n+ int64_t acl_rstd_ne[] = {src->ne[1], src->ne[2], src->ne[3]};\n+ ...
2025-09-04T03:03:02
vuejs/vue
8ba420c35975583486308a55d31c1df7b195574a
4f5a47d750d4d8b61fe3b5b2251a0a63b391ac27
Fix using one delay to control all transitions. (#3932) * Fix using one delay to control all transitions. Vue transitions have wrong timing when having CSS like the following: ``` .[transition-name]-enter-active, .[transition-name]-leave-active { transition: opacity 0.8s ease, transform 0.7s ease; transit...
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -131,6 +131,10 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {\n }\n \n function getTimeout (delays: Array<string>, durations: Array<string>): number {\n+ while (delays.length < durations.length) {\n+ de...
2016-10-17T02:36:22
huggingface/transformers
4fade1148f86418dadd5a4a21b57af906e0bd5be
cdba28c3443bc95b8631d73e33579e47f754c198
[tests] `CausalLMTester` automatically infers other test classes from `base_model_class` 🐛 🔫 (#41066) * halfway through the models * update test checks * refactor all * another one * use tuples * more deletions * solve bad inheritance patterns * type * PR ready? * automatic model class inference from the b...
[ { "path": "src/transformers/models/gemma3n/configuration_gemma3n.py", "patch": "@@ -291,9 +291,7 @@ def __init__(\n \n if activation_sparsity_pattern is None:\n num_sparse_layers = 10 if num_hidden_layers > 10 else 0\n- activation_sparsity_pattern = (0.95,) * num_sparse_layers...
2025-09-29T13:05:08
denoland/deno
8c6141697e258d6cbdd6e62e0ab680669fe762b9
90ef8527e4cb2b5671524f9f2b6e953eec40bf3b
fix: update permission-broker-response.v1.json (#31328) It specified "grant" instead of "allow" by mistake.
[ { "path": "cli/schemas/permission-broker-response.v1.json", "patch": "@@ -12,7 +12,7 @@\n \"result\": {\n \"description\": \"The result of the check, tells Deno if the request should be granted or rejected\",\n \"enum\": [\n- \"grant\",\n+ \"allow\",\n \"deny\"\n ...
2025-11-18T14:27:23
ggml-org/llama.cpp
dff7551bfdbdd6e57c13e523d7dcca317640e907
0fce7a1248b74148c1eb0d368b7e18e8bcb96809
vulkan: fix mmv subgroup16 selection (#15775)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2937,9 +2937,7 @@ static void ggml_vk_load_shaders(vk_device& device) {\n \n const bool use_subgroups = device->subgroup_arithmetic && device->architecture != vk_device_architecture::AMD_GCN;\n // Ensure a subgroup size >= 16 is availab...
2025-09-03T20:55:10
vuejs/vue
4f5a47d750d4d8b61fe3b5b2251a0a63b391ac27
95bf0c000ef93418be366994b2ff846f3d7797fe
fix root v-else not rendering in prod and switched examples to minified vue for better prod coverage (#3943) * fix root v-else not rendering in production and switched examples to minified vue for better prod coverage * add dev build comment to examples * convert tabs to spaces in todomvc example for consistency
[ { "path": "examples/commits/index.html", "patch": "@@ -18,7 +18,8 @@\n font-weight: bold;\n }\n </style>\n- <script src=\"../../dist/vue.js\"></script>\n+ <!-- Delete \".min\" for console warnings in development -->\n+ <script src=\"../../dist/vue.min.js\"></script>\n </head>\n ...
2016-10-14T13:27:54
huggingface/transformers
cdba28c3443bc95b8631d73e33579e47f754c198
2dcb20dcecf8f497a6acddd02123b3d6ab671218
[XPU] Add MXFP4 support for XPU (#41117) * XPU supports gpt-oss MXFP4 * Complete MXFP4 UT file and comment information * Complete MXFP4 UT file and comment information * Fix code style * Fix code style --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/integrations/mxfp4.py", "patch": "@@ -23,6 +23,7 @@\n from accelerate import init_empty_weights\n \n import re\n+from contextlib import contextmanager\n \n \n logger = logging.get_logger(__name__)\n@@ -47,6 +48,28 @@\n ]\n \n \n+@contextmanager\n+def on_device(dev):\n+ if ...
2025-09-29T10:10:41
ggml-org/llama.cpp
661ae31c9c68201577e70278285b349a5a662caf
407c23786dd0d3a503e9429eead96e611d3950c9
CUDA: Optimize `rms_norm_f32` kernel and its fused variants, giving 1-6% perf E2E (#15715) * Add fastdiv, use it in modulo and use modulo in rms_norm_f32 Fastdiv is much faster way to do integer division, which was identified as bottleneck in rms_norm_f32 * Support more `block_size` values in `rms_norm_f32` This ma...
[ { "path": "ggml/src/ggml-cuda/common.cuh", "patch": "@@ -563,6 +563,38 @@ static __device__ __forceinline__ float ggml_cuda_e8m0_to_fp32(uint8_t x) {\n #endif // CUDART_VERSION >= 12050\n }\n \n+// See https://gmplib.org/~tege/divcnst-pldi94.pdf figure 4.1.\n+// Precompute mp (m' in the paper) and L such th...
2025-09-03T17:59:16
denoland/deno
5b53514e8ac2179f7e82b0319d99287c7df0a461
e935523541a62d455a202cd02f9bf1d009ca3803
fix(node): ensure process.argv is an array of strings (#31322) This PR resolves #30964 where process.argv returned getter functions rather than string values. --------- Co-authored-by: Daniel Rahmanto <daniel.rahmanto@gmail.com>
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1015,18 +1015,6 @@ function synchronizeListeners() {\n }\n }\n \n-// Overwrites the 1st and 2nd items with getters.\n-Object.defineProperty(argv, \"0\", { get: () => argv0 });\n-Object.defineProperty(argv, \"1\", {\n- get: () => {\n- if (Deno.ma...
2025-11-18T09:39:00
vuejs/vue
95bf0c000ef93418be366994b2ff846f3d7797fe
3bbac7e9f5beb86dbb023edbb043bdea501c98d3
Add guide for PR title (#3936) * update PR guide for a better release log * detail on pr title. and fix typo
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -45,6 +45,7 @@ Hi! I’m really excited that you are interested in contributing to Vue.js. Befo\n - Provide convincing reason to add this feature. Ideally you should open a suggestion issue first and have it greenlighted before working on it.\n \n - If fixin...
2016-10-14T13:25:09
ggml-org/llama.cpp
407c23786dd0d3a503e9429eead96e611d3950c9
cdedb70a998cea7052560fe0b0615a839443564d
model-conversion : fix pyright errors (#15770) This commit addresses type errors reported by pyright in the model conversion scripts.
[ { "path": "examples/model-conversion/scripts/causal/run-casual-gen-embeddings-org.py", "patch": "@@ -3,11 +3,10 @@\n import argparse\n import os\n import importlib\n-import sys\n import torch\n import numpy as np\n \n-from transformers import AutoTokenizer, AutoConfig, AutoModel, AutoModelForCausalLM\n+from...
2025-09-03T16:28:36
huggingface/transformers
d0d574b1e417188fdda6d2053dd27c8fb2e4bba1
071eb5334f5a9ac2c7a13515219be8a272388ec6
Modernbert fix (#41056) * Add FA to docker * Fixed padding for mdernbert * Fixed logits and hidden states extraction in ModernBertForMultipleChoice * Added a test for ModernBertForMultipleChoice * fixes * More fixes and GREEN CI * consistency * moar consistency
[ { "path": "src/transformers/models/modernbert/modeling_modernbert.py", "patch": "@@ -893,6 +893,15 @@ def forward(\n _pad_modernbert_output(inputs=hs, indices=indices, batch=batch_size, seqlen=seq_len)\n for hs in all_hidden_states\n )\n+ # If t...
2025-09-29T08:52:44
denoland/deno
e935523541a62d455a202cd02f9bf1d009ca3803
ccc9aba580edcf5058a5f11d1deb3ff94cdb44b1
fix(bundle): Deno.bundle work in Worker (#31316) Currently, `Deno.bundle` throws exception in a `Worker`. ``` error: Uncaught (in worker "") (in promise) Error: default BundleProvider does not do anything ``` This PR passes the clone of BundleProvider to workers. --- minimum reproduction: ```ts #! /usr/bin/env -S d...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -462,6 +462,7 @@ impl<TSys: DenoLibSys> LibWorkerFactorySharedState<TSys> {\n shared.npm_process_state_provider.clone(),\n ),\n permissions: args.permissions,\n+ bundle_provider: shared.bundle_provider.clone(),\n };\n l...
2025-11-18T02:41:16
vuejs/vue
3f8fa43819b74e2ea03adb3ca9a04c36e72cf6b7
d362d64633f00f8cbf1613c424d8852fb45c7596
fix duplicate attribute test case in IE
[ { "path": "test/unit/modules/compiler/parser.spec.js", "patch": "@@ -1,6 +1,7 @@\n import { parse } from 'compiler/parser/index'\n import { extend } from 'shared/util'\n import { baseOptions } from 'web/compiler/index'\n+import { isIE } from 'core/util/env'\n \n describe('parser', () => {\n it('simple ele...
2016-10-13T09:19:51
ggml-org/llama.cpp
2c8dac72eb6acd4e20c0da251535dfc46d35178b
40a751ea9a94364da73537b86502a808ebe1fc3a
llama : fix incorrect model type for Gemma 270M (#15764) This commit fixes the model type for the Gemma 270M model in llama_model.cpp which should be LLM_TYPE_270M. I incorrectly added this previously as LLM_TYPE_537M which was wrong. The motivation for this is that it causes the model to not be identified properly ...
[ { "path": "src/llama-model.cpp", "patch": "@@ -1110,7 +1110,7 @@ void llama_model::load_hparams(llama_model_loader & ml) {\n ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);\n \n switch (hparams.n_layer) {\n- case 18: type = LLM_TYPE_...
2025-09-03T11:35:49
huggingface/transformers
50d2448a1a7b75354c3d0ca879afd124abd244ac
10f6891fc51ee2d51b0b7fbf9c601f839c7b599b
Enable fa in amd docker (#41069) * Add FA to docker * Use caching mechanism for qwen2_5 * Fix a typo in important models list * Partial fixes for gemma3 * Added a commit ID for FA repo * Detailled the expectation storage format * Rebase fix * Apply style fixes --------- Co-authored-by: github-actions[bot] <g...
[ { "path": "docker/transformers-pytorch-amd-gpu/Dockerfile", "patch": "@@ -35,3 +35,10 @@ RUN python3 -m pip uninstall -y kernels\n \n # On ROCm, torchcodec is required to decode audio files and 0.4 or 0.6 fails\n RUN python3 -m pip install --no-cache-dir \"torchcodec==0.5\"\n+\n+# Install flash attention fr...
2025-09-26T11:57:58
denoland/deno
ccc9aba580edcf5058a5f11d1deb3ff94cdb44b1
5421a29944287ee015edb2461488a64f1eaea412
fix(node/assert): deepStrictEqual now correctly handles Number objects (#31233) Fixes #31172 ## Description The `deepStrictEqual` function was using `asserts.equal()` which doesn't properly handle boxed primitives like Number objects. Changed it to use `isDeepStrictEqual()` from `comparisons.ts` which correctly hand...
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -16,7 +16,10 @@ import {\n ERR_INVALID_RETURN_VALUE,\n ERR_MISSING_ARGS,\n } from \"ext:deno_node/internal/errors.ts\";\n-import { isDeepEqual } from \"ext:deno_node/internal/util/comparisons.ts\";\n+import {\n+ isDeepEqual,\n+ isDeepStrictEqual,\...
2025-11-18T02:02:21
vuejs/vue
d362d64633f00f8cbf1613c424d8852fb45c7596
a675221bb68e46710cd1bac1d0287c605fa61db4
update entities encoding/decoding (fix #3899)
[ { "path": "build/config.js", "patch": "@@ -38,7 +38,7 @@ const builds = {\n env: 'development',\n banner,\n alias: {\n- entities: './entity-decoder'\n+ he: './entity-decoder'\n }\n },\n // Runtime+compiler standalone production build.\n@@ -49,22 +49,22 @@ const builds = {\n ...
2016-10-13T09:05:35
huggingface/transformers
97ca0b47124c82cfde886450ea56160ad45c4153
53838edde77cb10f3a360150aa85a457637e9ac3
Fix flash-attn for paged_attention when no kernels (#41078) * Fix non-kernels flash attention paged implementation * Cover all cases * Style * Update src/transformers/integrations/flash_paged.py Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> * Apply style fixes --------- Co-autho...
[ { "path": "examples/pytorch/continuous_batching.py", "patch": "@@ -40,7 +40,8 @@ def generate_simple(\n attn_impl = {\n \"sdpa_paged\": \"sdpa\",\n \"eager_paged\": \"eager\",\n- \"flash_paged\": \"flash_attention_2\",\n+ \"paged_attention\": \"eager\", # TODO: this does n...
2025-09-26T08:41:21
ggml-org/llama.cpp
05c0380f2ae5c7193445e03ebc7b6de9ce49f1a6
8c3fdf44ecf08335942f2ba558955f55e88c7991
ggml-cpu : optimize RVV kernels (#15720) * ggml-cpu : optimize rvv ggml_vec_dot_f32 * ggml-cpu : optimize 128-bit rvv ggml_vec_dot_q4_K_q8_K * ggml-cpu : fix riscv arch flags * ggml-cpu : add more rvv ops * ggml-cpu : optimize rvv ggml_vec_dot_q4_K_q8_K * ggml-cpu : optimize rvv ggml_vec_dot_q6_K_q8_K * ggml-cpu...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -129,7 +129,9 @@ endif()\n option(GGML_LASX \"ggml: enable lasx\" ON)\n option(GGML_LSX \"ggml: enable lsx\" ON)\n option(GGML_RVV \"ggml: enable rvv\" ON)\n-option(GGML_RV_ZFH ...
2025-09-03T08:16:21
denoland/deno
8b31587bb4df1676a3d4339bd908c7c044f1d6db
74eff7bcd40c339f79cf47767b2912737e8db013
ci: fix 'promote_to_release' script for windows (#31321) Closes https://github.com/denoland/deno/issues/31320
[ { "path": ".github/workflows/promote_to_release.yml", "patch": "@@ -66,7 +66,7 @@ jobs:\n trusted-signing-account-name: deno-cli-code-signing\n certificate-profile-name: deno-cli-code-signing-cert\n files-folder: .\n- files-folder-filter: deno-x86_64-pc-windows-msvc-${...
2025-11-17T16:38:19
ggml-org/llama.cpp
8a2234ea0c89f212190c176d741b7742f0082582
3de008208b9b8a33f49f979097a99b4d59e6e521
CANN: Fix type float_t to float (#15736) Signed-off-by: noemotiovon <757486878@qq.com>
[ { "path": "ggml/src/ggml-cann/aclnn_ops.cpp", "patch": "@@ -1767,10 +1767,10 @@ void ggml_cann_get_rows(ggml_backend_cann_context& ctx, ggml_tensor* dst) {\n case GGML_TYPE_F16: {\n aclTensor* acl_src0 = ggml_cann_create_tensor(src0);\n ggml_cann_pool_alloc src_buffer_allocat...
2025-09-03T02:43:53
vuejs/vue
a675221bb68e46710cd1bac1d0287c605fa61db4
30bd34e965758f323dd8807a232b966f64d308f9
should not generate children for "is" component with inline-template (fix #3931)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -230,7 +230,7 @@ function genSlot (el: ASTElement): string {\n }\n \n function genComponent (el: any): string {\n- const children = genChildren(el)\n+ const children = el.inlineTemplate ? null : genChildren(el)\n return `_h(${el.component},${genDat...
2016-10-13T07:42:27
denoland/deno
74eff7bcd40c339f79cf47767b2912737e8db013
4bf3510052fd0aadebd94d00819e44563cbff270
fix(ext/node): sqlite `setAllowUnknownNamedParameters` error message (#31319) Allows https://github.com/nodejs/node/blob/v24.2.0/test/parallel/test-sqlite-named-parameters.js to pass. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Corrected an e...
[ { "path": "ext/node/ops/sqlite/validators.rs", "patch": "@@ -110,7 +110,7 @@ pub(super) fn allow_unknown_named_params_bool(\n }\n \n Err(Error::InvalidArgType(\n- \"The \\\"allowUnknownNamedParameters\\\" argument must be a boolean.\",\n+ \"The \\\"enabled\\\" argument must be a boolean.\",\n ))...
2025-11-17T16:04:13