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
ea7f0790f91d389995d2db97bf953da58c2c2205
749270fd5d08f52f3015dd3ac8f3f66d1378cb42
fix(ext/node): enable 8 already-passing child_process compat tests (#32710) These tests already pass but were not enabled in the node compat config. Adding them to prevent regressions. Newly enabled: - test-child-process-exec-maxbuf.js - test-child-process-execsync-maxbuf.js - test-child-process-fork-url.mjs - test-c...
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -210,6 +210,7 @@\n \"parallel/test-child-process-exec-env.js\": {},\n \"parallel/test-child-process-exec-error.js\": {},\n \"parallel/test-child-process-exec-kill-throws.js\": {},\n+ \"parallel/test-child-process-exec-maxbuf.js\": {},\n...
2026-03-14T17:50:53
vuejs/vue
1a979c44d6543d89f8a7e26ad7f995b1bf2aee3c
a6169d1eb71d64eacddf1738e72d21725e2bff00
fix(ssr): fix v-show inline style rendering when style binding is array (#7814) fix #7813
[ { "path": "src/platforms/web/server/directives/show.js", "patch": "@@ -3,6 +3,10 @@\n export default function show (node: VNodeWithData, dir: VNodeDirective) {\n if (!dir.value) {\n const style: any = node.data.style || (node.data.style = {})\n- style.display = 'none'\n+ if (Array.isArray(style)...
2018-03-13T15:07:58
ggml-org/llama.cpp
4cbafad4f09c82f1b32c76b714302f3937be1df7
c18428423018ed214c004e6ecaedb0cbdda06805
model: support MiMo-V2-Flash (#18328) * mimov2: convert ok * rename mimov2 --> mimo2 * fix conversion * runnable not incorrect * use sink * add_sliding_window_pattern * add swa and per-layer n_head_kv * correct params * somewhat working * correct gating func * nits * mimo2: wire RMS eps + MoE bias + convert...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -7362,6 +7362,90 @@ def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None):\n return super().modify_tensors(data_torch, name, bid)\n \n \n+@ModelBase.register(\"MiMoV2FlashForCausalLM\")\n+class MimoV2Model(TextModel):\n+ model_arc...
2025-12-24T22:07:08
huggingface/transformers
0e0af808686ff6bb77dd00d2f9d35ca2bac3abfb
e8e142de378e15626ace04b02256a9d8ee158550
Fix failing `ColPaliModelIntegrationTest` (#42705) Fixed failing ColPaliModelIntegrationTest
[ { "path": "tests/models/colpali/test_modeling_colpali.py", "patch": "@@ -270,8 +270,8 @@ def test_model_integration_test(self):\n ds = load_dataset(\"hf-internal-testing/document-visual-retrieval-test\", split=\"test\")\n \n # Preprocess the examples\n- batch_images = self.processor(i...
2025-12-08T16:32:17
denoland/deno
749270fd5d08f52f3015dd3ac8f3f66d1378cb42
b177ff637e5f1ee9258e366030541c2b1c17fd62
fix(ext/node): include prototype env vars in child_process spawn (#32699) The env key collection loop had `Object.hasOwn()` filtering despite the comment saying "Prototype values are intentionally included". This made `for...in` pointless since it only kept own properties. Node.js includes prototype-chain env vars wh...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1148,10 +1148,9 @@ export function normalizeSpawnArguments(\n \n let envKeys: string[] = [];\n // Prototype values are intentionally included.\n+ // deno-lint-ignore guard-for-in\n for (const key in env) {\n- if (Object.hasOwn...
2026-03-14T17:50:45
vuejs/vue
a6169d1eb71d64eacddf1738e72d21725e2bff00
6dd73e9ee44c09f04d3f616fcce18750a55e2e4f
fix(model): fix static input type being overwritten by v-bind object (#7819) fix #7811
[ { "path": "src/platforms/web/compiler/modules/model.js", "patch": "@@ -34,7 +34,7 @@ function preTransformNode (el: ASTElement, options: CompilerOptions) {\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type')\n }\n- if (!typeBinding && map['v-bind']) {\n+ ...
2018-03-13T15:05:58
ollama/ollama
63bc884e2503ebefc580c499a82460affe50628b
3f71ba406a6cbacd73b56e09389d416c5f9428c2
types/model: fix parser for empty values
[ { "path": "types/model/file.go", "patch": "@@ -249,10 +249,6 @@ func quote(s string) string {\n }\n \n func unquote(s string) (string, bool) {\n-\tif len(s) == 0 {\n-\t\treturn \"\", false\n-\t}\n-\n \t// TODO: single quotes\n \tif len(s) >= 3 && s[:3] == `\"\"\"` {\n \t\tif len(s) >= 6 && s[len(s)-3:] == `...
2024-05-07T16:59:21
ggml-org/llama.cpp
c18428423018ed214c004e6ecaedb0cbdda06805
c8a2417d7b65705231eeb5b4080d3e0428c9c5d2
fit-params : fix race condition in fit-params output (#18276)
[ { "path": "tools/fit-params/fit-params.cpp", "patch": "@@ -35,7 +35,7 @@ int main(int argc, char ** argv) {\n }\n \n LOG_INF(\"%s: printing fitted CLI arguments to stdout...\\n\", __func__);\n- std::this_thread::sleep_for(10ms); // to avoid a race between stderr and stdout\n+ common_log_flush(...
2025-12-24T14:57:38
denoland/deno
b177ff637e5f1ee9258e366030541c2b1c17fd62
f00f798dc85ffd53802e5d127dfe9bb04ac1554e
fix(ext/node): fix perm checks in TCPWrap (#32721)
[ { "path": "ext/node/ops/libuv_stream.rs", "patch": "@@ -20,6 +20,7 @@ use deno_core::uv_compat::UvStream;\n use deno_core::uv_compat::UvTcp;\n use deno_core::uv_compat::UvWrite;\n use deno_core::v8;\n+use deno_permissions::PermissionsContainer;\n use socket2::SockAddr as Socket2SockAddr;\n \n use super::han...
2026-03-14T16:46:47
huggingface/transformers
e8e142de378e15626ace04b02256a9d8ee158550
ad5410453c2938f3d1bd73d140fbba7108013049
Fixed failing `BioGPT` batch generation test (#42677) Fixed failing BioGPT batch generation test
[ { "path": "tests/models/biogpt/test_modeling_biogpt.py", "patch": "@@ -335,7 +335,9 @@ def test_batch_generation(self):\n \n num_paddings = inputs_non_padded.shape[-1] - inputs[\"attention_mask\"][-1].long().sum().item()\n inputs_padded = tokenizer(sentences[1], return_tensors=\"pt\").input_...
2025-12-08T16:12:00
vuejs/vue
6dd73e9ee44c09f04d3f616fcce18750a55e2e4f
215f877d1b7eb6583f7adf15676ead8611f07379
fix: named slots for nested functional components Named slots should be respecred when passing raw children down multiple layers of functional components. fix #7710
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -10,6 +10,7 @@ import { installRenderHelpers } from '../instance/render-helpers/index'\n import {\n isDef,\n isTrue,\n+ hasOwn,\n camelize,\n emptyObject,\n validateProp\n@@ -23,6 +24,21 @@ export function FunctionalRenderCont...
2018-03-12T19:39:39
ggml-org/llama.cpp
c8a2417d7b65705231eeb5b4080d3e0428c9c5d2
54132f1b1fa16b419d589ac03d3266178259eb25
CUDA: experimental native mxfp4 support for blackwell (#17906) * CUDA: experimental native mxfp4 support for blackwell * optimize load_tiles * optimize quantize_mxfp4 * cleanup * first pass review: formatting * use interleaved layout for mma * mmq: add assert for size * use __nv_fp4x4_e2m1 * use iter_k as 512,...
[ { "path": "ggml/src/ggml-cuda/CMakeLists.txt", "patch": "@@ -15,6 +15,7 @@ if (CUDAToolkit_FOUND)\n # 80 == Ampere, asynchronous data loading, faster tensor core instructions\n # 86 == RTX 3000, needs CUDA v11.1\n # 89 == RTX 4000, needs CUDA v11.8\n+ # 120 == B...
2025-12-24T14:28:26
denoland/deno
f00f798dc85ffd53802e5d127dfe9bb04ac1554e
2c3b295e2e78c095d1cda9761a8510af8940cfab
fix(runtime): use XML-valid entity in flamegraph SVG (#32716) - Replace ` ` with ` ` in the CPU flamegraph SVG template - ` ` is an HTML entity not recognized by XML parsers, causing `XML Parsing Error: undefined entity` when opening the SVG standalone Fixes #32708 Co-authored-by: Claude Opus 4.6 (1M ...
[ { "path": "runtime/cpu_profiler/flamegraph.rs", "patch": "@@ -153,10 +153,10 @@ pub(crate) fn generate_flamegraph_svg(\n ]]></script>\n <rect x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" fill=\"url(#background)\"/>\n <text id=\"title\" x=\"50%\" y=\"24\" text-anchor=\"middle\" style=\"font-size:17px\">CPU...
2026-03-14T14:30:42
huggingface/transformers
142ae3d9182e68dfcbf6b595a18a25a7f2d503ea
75beab1c7643ba604798e9ec0718b8c436963b6e
Fix PEFT integration with new weight loader (#42701) simplify
[ { "path": "src/transformers/conversion_mapping.py", "patch": "@@ -228,7 +228,7 @@ def get_model_conversion_mapping(\n \"\"\"\n weight_conversions = []\n \n- # Load models with key mapping\n+ # Load models with explicit, user-provided key mapping\n if key_mapping is not None:\n weig...
2025-12-08T14:51:22
vuejs/vue
215f877d1b7eb6583f7adf15676ead8611f07379
4378fc5124067c2b3a3517dd7f527edd9be2ad37
fix(keep-alive): run prune after render for correct active component check fix #7566
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -71,13 +71,13 @@ export default {\n }\n },\n \n- watch: {\n- include (val: string | RegExp | Array<string>) {\n+ mounted () {\n+ this.$watch('include', val => {\n pruneCache(this, name => matches(val, name))\n- },\n- exclu...
2018-03-12T17:05:31
ollama/ollama
4d4f75a8a8a349e73dfd85ec0737ad42f5171eb0
3f71ba406a6cbacd73b56e09389d416c5f9428c2
Revert "fix golangci workflow missing gofmt and goimports (#4190)" This reverts commit 04f971c84be907b90edfdd409f84b892a3586705.
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -269,7 +269,7 @@ jobs:\n mkdir -p llm/build/darwin/$ARCH/stub/bin\n touch llm/build/darwin/$ARCH/stub/bin/ollama_llama_server\n if: ${{ startsWith(matrix.os, 'macos-') }}\n- - uses: golangci/golangci-lint-action@v5\n+ ...
2024-05-07T17:35:44
ggml-org/llama.cpp
2a9ea2020c6d2bfe243ecd63f3c564babccc2004
ce7a6dc0fc1dbeec492d262414856223a98dd4a2
vulkan: fix command buffer corruption in ggml_backend_vk_event_wait (#18302)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -13718,6 +13718,7 @@ static void ggml_vk_graph_optimize(ggml_backend_t backend, struct ggml_cgraph *\n }\n \n static void ggml_backend_vk_event_record(ggml_backend_t backend, ggml_backend_event_t event) {\n+ VK_LOG_DEBUG(\"ggml_backend_vk_eve...
2025-12-24T11:36:34
denoland/deno
2c3b295e2e78c095d1cda9761a8510af8940cfab
7ab15ad5d32cc5cd31d5dd579eec2ae54b5cd2fe
fix(ext/node): support encrypted PEM export and deprecated hash option in crypto keygen (#32703) ## Summary - Fix `generateKeyPair` for `rsa-pss` to fall back to deprecated `hash` option when `hashAlgorithm` is not provided, matching Node.js behavior - Implement encrypted PEM private key export with legacy OpenSSL fo...
[ { "path": "ext/node/polyfills/internal/crypto/keygen.ts", "patch": "@@ -1093,15 +1093,15 @@ function createJob(mode, type, options) {\n return op_node_generate_rsa_pss_key(\n modulusLength,\n publicExponent,\n- hashAlgorithm,\n+ hashAlgorithm ?? hash,\n ...
2026-03-14T13:55:41
huggingface/transformers
75beab1c7643ba604798e9ec0718b8c436963b6e
d3ee06b8cb5e45aab51b85aafd54f4b3f7cad2e2
Fixed paged|FA2 kernel loading logic and UT. (#42547) * Fixed UT and kernel loading logic. * Revision based on comments * Simplify code * make style * simplify CB part * retrigger ci --------- Co-authored-by: vasqu <antonprogamer@gmail.com> Co-authored-by: Anton Vlasjuk <73884904+vasqu@users.noreply.github.com>
[ { "path": "src/transformers/generation/continuous_batching/continuous_api.py", "patch": "@@ -763,15 +763,9 @@ def __init__(\n num_kv_padding_intervals: (optional) Number of intervals used to pad the keys/values dimension\n allow_prefix_sharing: (optional) Whether to allow prefix shar...
2025-12-08T14:16:09
ggml-org/llama.cpp
1ce0126b18c58b9c5d6586a606fdf2780162afa1
7f459c98e716054b61323440b49896b397375397
docs: Fix typos in SYCL documentation (#18269)
[ { "path": "docs/backend/SYCL.md", "patch": "@@ -829,7 +829,7 @@ use 1 SYCL GPUs: [0] with Max compute units:512\n \n No. We can't support Ollama issue directly, because we aren't familiar with Ollama.\n \n- Sugguest reproducing on llama.cpp and report similar issue to llama.cpp. We will surpport it.\n+ ...
2025-12-24T09:19:47
ollama/ollama
04f971c84be907b90edfdd409f84b892a3586705
70edb9bc4d0b4ad9728054cf354f555c2271b43d
fix golangci workflow missing gofmt and goimports (#4190)
[ { "path": ".gitattributes", "patch": "@@ -1 +1,2 @@\n llm/ext_server/* linguist-vendored\n+*.go text eol=lf\n\\ No newline at end of file", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": ".github/workflows/test.yaml", "patch": "@@ -269,7 +269,7 @@ jobs:\n ...
2024-05-07T16:49:40
huggingface/transformers
d3ee06b8cb5e45aab51b85aafd54f4b3f7cad2e2
8eef4bbf2b73e717df8348ae7dcba3488c39fc34
FIX Error when trying to load non-LoRA PEFT (#42663) * FIX Error when trying to load non-LoRA PEFT This PR fixes a bug that prevented non-LoRA PEFT adapters to be loaded into a transformers model. A test for this has been added. Additionally, also testing if a non-LoRA adapter can be added to a transformers model. T...
[ { "path": "src/transformers/integrations/peft.py", "patch": "@@ -279,9 +279,6 @@ def load_adapter(\n )\n peft_config.inference_mode = not is_trainable\n \n- if peft_config.peft_type != PeftType.LORA:\n- raise ValueError(\"Hotswapping is currently only supported for ...
2025-12-08T13:54:57
vuejs/vue
4378fc5124067c2b3a3517dd7f527edd9be2ad37
984927a1a98d10ad8af44f2accfb08d34d517610
fix: fix keyName checking for arrow keys in IE11 fix #7806
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -22,10 +22,11 @@ const keyNames: { [key: string]: string | Array<string> } = {\n tab: 'Tab',\n enter: 'Enter',\n space: ' ',\n- up: 'ArrowUp',\n- left: 'ArrowLeft',\n- right: 'ArrowRight',\n- down: 'ArrowDown',\n+ // #7806: IE11 uses key na...
2018-03-12T15:40:35
denoland/deno
7ab15ad5d32cc5cd31d5dd579eec2ae54b5cd2fe
bfd96854f2f2060e57f1b472bc6fad5a86b25c2d
fix(ext/napi): keep event loop alive while uv_async_t handle is active (#32702) ## Summary - Add `ref_op()` in `uv_async_init` and `unref_op()` in `uv_close` to match libuv semantics where an active `uv_async_t` handle keeps the event loop alive until closed - Fix `libuv_sys_lite::setup()` to run on all platforms in ...
[ { "path": "ext/napi/uv.rs", "patch": "@@ -175,6 +175,12 @@ unsafe extern \"C\" fn _napi_uv_async_init(\n r#async.cast(),\n addr_of_mut!((*r#async).work),\n );\n+\n+ // In libuv, uv_async_init starts the handle and keeps the event loop\n+ // alive until uv_close is called. Ref the event...
2026-03-14T13:55:18
ollama/ollama
7c5330413b268ca0023bcc2f62736730cea58d7e
39d9d22ca3d20d9b76d7f767ac846eb995e1669b
note on naming restrictions (#2625) * note on naming restrictions else push would fail with cryptic retrieving manifest Error: file does not exist ==> maybe change that in code too * Update docs/import.md --------- Co-authored-by: C-4-5-3 <154636388+C-4-5-3@users.noreply.github.com> Co-authored-by: Je...
[ { "path": "docs/import.md", "patch": "@@ -136,6 +136,8 @@ Next, copy your model to your username's namespace:\n ollama cp example <your username>/example\n ```\n \n+> Note: model names may only contain lowercase letters, digits, and the characters `.`, `-`, and `_`.\n+\n Then push the model:\n \n ```", ...
2024-05-06T23:03:21
vuejs/vue
984927a1a98d10ad8af44f2accfb08d34d517610
cf0b1b745f6b98f4e010f2e0b4c2351bb5a7b812
fix: fix regression on duplicate component init when using shared data objects fix #7805
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -32,7 +32,7 @@ import {\n renderRecyclableComponentTemplate\n } from 'weex/runtime/recycle-list/render-component-template'\n \n-// hooks to be invoked on component VNodes during patch\n+// inline hooks to be invoked on component VNodes during pat...
2018-03-12T14:50:27
huggingface/transformers
e3ceeafde80b9e00bb3a4685217cfd4cbdeb83c7
5ee9ffe386c5ecc77d8009ab648b8c4c109931ea
[`mRope`] Fix warnings (#42660) fix warning
[ { "path": "src/transformers/models/glm4v/configuration_glm4v.py", "patch": "@@ -234,7 +234,9 @@ def __init__(\n self.attention_dropout = attention_dropout\n self.rope_parameters = rope_parameters\n \n- super().__init__(tie_word_embeddings=tie_word_embeddings, ignore_keys_at_rope_valid...
2025-12-08T12:59:42
huggingface/transformers
ba1ad5359394c6dab864d5fb56658f35516c5fa5
ca1698ef52b516ec9133b8be922fad772486541a
Use hfh's is_offline_mode helper (#42657) * Use hfh's is_offline_mode helper * fix tests
[ { "path": "examples/pytorch/summarization/run_summarization.py", "patch": "@@ -45,6 +45,7 @@\n import numpy as np\n from datasets import load_dataset\n from filelock import FileLock\n+from huggingface_hub import is_offline_mode\n \n import transformers\n from transformers import (\n@@ -61,7 +62,7 @@\n S...
2025-12-08T09:24:59
denoland/deno
bfd96854f2f2060e57f1b472bc6fad5a86b25c2d
4d45fe5b7ad2830d8ef2a3cc8bddd259531e7522
fix(tsc): move more node resolution errors to typescript diagnostics (#32697)
[ { "path": "cli/graph_util.rs", "patch": "@@ -286,23 +286,6 @@ pub struct ResolutionErrorRef<'a> {\n pub fn resolution_error_for_tsc_diagnostic(\n error: &ResolutionError,\n ) -> Option<ResolutionErrorRef<'_>> {\n- fn is_module_not_found_code(code: NodeJsErrorCode) -> bool {\n- match code {\n- Nod...
2026-03-14T13:19:37
ollama/ollama
ed740a2504f18663f4cb0b326c1c48fbc54c2cbd
c9f98622b1daba55477dcb330de1739fb2f02ce6
Fix `no slots available` error with concurrent requests (#4160)
[ { "path": "llm/server.go", "patch": "@@ -338,7 +338,7 @@ type ServerStatus int\n \n const ( // iota is reset to 0\n \tServerStatusReady ServerStatus = iota\n-\tServerStatusNoSlotsAvaialble\n+\tServerStatusNoSlotsAvailable\n \tServerStatusLoadingModel\n \tServerStatusNotResponding\n \tServerStatusError\n@@ -...
2024-05-06T21:22:53
vuejs/vue
702000971c5a355c937607edb930b67311c78f5d
35dc8c2555da884bfb65451391887966bc411a98
chore: fix typo
[ { "path": "src/server/render.js", "patch": "@@ -191,7 +191,8 @@ function renderAsyncComponent (node, isRoot, context) {\n tag\n )\n if (resolvedNode) {\n- if (resolvedNode.componnetInstance) {\n+ if (resolvedNode.componentOptions) {\n+ // normal component\n renderCompo...
2018-03-12T13:27:50
huggingface/transformers
ca1698ef52b516ec9133b8be922fad772486541a
81b84175e2d9e69da042cd3160b60464e95de18e
[Quantization] Fix FP8 experts replacing (#42654) small fix Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -606,7 +606,7 @@ def replace_with_fp8_linear(\n module_kwargs = {} if pre_quantized else {\"dtype\": None}\n new_module = None\n with init_empty_weights():\n- if \"gate_up_proj\" in module_name or \...
2025-12-08T09:20:55
ggml-org/llama.cpp
849d021104aeedfae7dcceb6ee1ca10ae3e7e9b7
8e3ead6e4d1a4c455c8dac1b4690c49366769856
server: fix crash with model not having BOS/EOS (#18321)
[ { "path": "tools/server/server-context.cpp", "patch": "@@ -2784,6 +2784,12 @@ server_response_reader server_context::get_response_reader() {\n \n server_context_meta server_context::get_meta() const {\n auto tool_use_src = common_chat_templates_source(impl->chat_templates.get(), \"tool_use\");\n+\n+ ...
2025-12-23T13:39:36
denoland/deno
4d45fe5b7ad2830d8ef2a3cc8bddd259531e7522
cae85170b9e5297a5b49e6d1de0b1e9e36419bd4
fix(ext/node): set up stdio streams on failed child_process spawn (#32698) In Node.js, stdio pipes are created before the OS spawn call, so child.stdout/stderr/stdin are valid stream objects even when spawn fails (e.g. ENOENT). Deno's implementation only created these after a successful Deno.Command().spawn(), leaving...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -564,7 +564,51 @@ export class ChildProcess extends EventEmitter {\n // args.slice(1) to exclude argv0 (prepended by normalizeSpawnArguments)\n e = _createSpawnError(\"ENOENT\", command, args.slice(1));\n }\n+\n+ ...
2026-03-14T11:38:47
ollama/ollama
0a954e50661f0fa6fc74ab81809ef7d76c6e1d66
aa93423fbf003ad75c56a0a3577244638d24f9c5
Fix stale test logic The model processing was recently changed to be deferred but this test scenario hadn't been adjusted for that change in behavior.
[ { "path": "server/sched_test.go", "patch": "@@ -352,11 +352,9 @@ func TestGetRunner(t *testing.T) {\n \tscenario1c.req.model.ModelPath = \"bad path\"\n \tslog.Info(\"scenario1c\")\n \tsuccessCh1c, errCh1c := s.GetRunner(scenario1c.ctx, scenario1c.req.model, scenario1c.req.opts, scenario1c.req.sessionDuratio...
2024-05-06T21:15:37
vuejs/vue
882e7199fd8eee039291c4b9f7f324dcf46f32fd
666cdbd71e15de01e4b4468cb5b52ec882cae159
fix(ssr): fix SSR for async functional components fix #7784
[ { "path": "src/server/render-context.js", "patch": "@@ -67,13 +67,18 @@ export class RenderContext {\n }\n switch (lastState.type) {\n case 'Element':\n+ case 'Fragment':\n const { children, total } = lastState\n const rendered = lastState.rendered++\n if (rendered...
2018-03-11T21:09:51
ggml-org/llama.cpp
8e3ead6e4d1a4c455c8dac1b4690c49366769856
12ee1763a6f6130ce820a366d220bbadff54b818
model-conversion : add device option to run-org-model.py (#18318) * model-conversion : add device option to run-org-model.py This commit refactors the `run-org-model.py` script to include a `--device` argument, to allow users to specify the device on which to run the model (e.g., cpu, cuda, mps, auto). It also extrac...
[ { "path": "examples/model-conversion/Makefile", "patch": "@@ -25,6 +25,8 @@ define quantize_model\n \t@echo \"Export the quantized model path to $(2) variable in your environment\"\n endef\n \n+DEVICE ?= auto\n+\n ###\n ### Casual Model targets/recipes\n ###\n@@ -53,7 +55,7 @@ causal-convert-mm-model:\n \n ...
2025-12-23T13:07:25
huggingface/transformers
ff13eb668aa03f151ded71636d723f2e490ad967
e3673ed42936e4597074e98ba017fcaab3d4a8eb
Lasr model (#42648) * nit on dac! * first commit * fixes * passing all API tests * nit * update * test update * make style * make * fixes * fix * test update * return attention mask by default * doc update * make * make * fix
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -901,6 +901,8 @@\n title: Hubert\n - local: model_doc/kyutai_speech_to_text\n title: Kyutai Speech-To-Text\n+ - local: model_doc/lasr\n+ title: LASR\n - local: model_doc/mimi\n title: Mimi\n - local: ...
2025-12-05T19:14:35
ollama/ollama
1b0e6c9c0e5d53aa6110530da0befab7c95d1755
dfa2f32ca07dbb6586bf06dd12c82a04c1fee79d
Fix llava models not working after first request (#4164) * fix llava models not working after first request * individual requests only for llava models
[ { "path": "llm/patches/05-clip-fix.diff", "patch": "@@ -0,0 +1,24 @@\n+diff --git a/examples/llava/clip.cpp b/examples/llava/clip.cpp\n+index e3c9bcd4..b43f892d 100644\n+--- a/examples/llava/clip.cpp\n++++ b/examples/llava/clip.cpp\n+@@ -573,14 +573,16 @@ static ggml_cgraph * clip_image_build_graph(clip_ctx...
2024-05-06T03:50:31
denoland/deno
e88d18a79db233f8563826f0b6adac383ed0e192
081e2e8476415c2e3ba0da3e6327da407f2f1be5
feat: add --cpu-prof-flamegraph to generate interactive SVG flamegraphs (#32572) ## Summary Builds on top of #31909 to add interactive SVG flamegraph generation for CPU profiles, plus improvements to the existing `--cpu-prof` functionality. ### New: `--cpu-prof-flamegraph` flag Generates a self-contained, interacti...
[ { "path": "cli/args/flags.rs", "patch": "@@ -269,9 +269,10 @@ pub struct CpuProfFlags {\n pub name: Option<String>,\n pub interval: Option<u32>,\n pub md: bool,\n+ pub flamegraph: bool,\n }\n \n-#[derive(Clone, Debug, Eq, PartialEq)]\n+#[derive(Clone, Default, Debug, Eq, PartialEq)]\n pub struct Eval...
2026-03-14T07:25:58
huggingface/transformers
e3673ed42936e4597074e98ba017fcaab3d4a8eb
1d86d00ec3c9de948cf7d60e8d7d845560c8b8d1
[docs] Attention backends + continuous batching (#42329) * attention * continuous batching * fix import * feedback * link to blog post * feedback * fix import
[ { "path": "docs/source/en/_toctree.yml", "patch": "@@ -23,8 +23,6 @@\n title: Legacy model contribution\n - local: auto_docstring\n title: Documenting a model\n- - local: attention_interface\n- title: Customizing attention function\n title: Models\n - sections:\n - local: f...
2025-12-05T19:02:22
denoland/deno
7607cb2053fc0c41ebf55e40e40ea26f151383e5
8ac8de128a1db7e71c37063dd101369f9abb4a3d
fix(ext/napi): prevent spurious TypeError from napi_coerce_to_object on null/undefined (#32695) Fixes #31306 Fixes #28682 - `napi_coerce_to_object(null/undefined)` was letting V8's `ToObject()` throw a TypeError, which got stored in `env.last_exception` by the `napi_wrap!` try-catch, then re-thrown by `call_fn` as a ...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -2447,7 +2447,15 @@ fn napi_coerce_to_object<'s>(\n check_arg!(env, result);\n \n v8::callback_scope!(unsafe scope, env.context());\n- let Some(coerced) = value.unwrap().to_object(scope) else {\n+ let val = value.unwrap();\n+ // Check for null/undef...
2026-03-13T21:24:09
ggml-org/llama.cpp
ed759777178e7a30d064b81e35d1fc320bf3970b
847c35f7d5cbc686dfd5ae70f5702bafb84a8be9
ggml-hexagon: create generalized functions for cpu side op (#17500) * refactor: replace ggml_hexagon_mul_mat with template-based binary operation for improved flexibility * refactor: replace ggml_hexagon_mul_mat_id with template-based binary operation for improved flexibility * refactor: initialize buffer types and ...
[ { "path": "docs/backend/hexagon/README.md", "patch": "@@ -106,7 +106,7 @@ Here are some examples of running various llama.cpp tools via ADB.\n Simple question for Llama-3.2-1B\n \n ```\n-~/src/llama.cpp$ M=Llama-3.2-1B-Instruct-Q4_0.gguf D=HTP0 ./scripts/snapdragon/adb/run-cli.sh -no-cnv -p \"what is the mo...
2025-12-23T07:13:24
vuejs/vue
71b4b25375fa4bcd929e1161c35cab133e4a7c23
af5453cd5e90461531f1711b5ecb6bd47136e7b0
fix: allow multiline expression in v-for fix #7792
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -21,7 +21,7 @@ import {\n \n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n-export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n+export const forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/\n export const forIteratorRE = /,([^,\\...
2018-03-11T15:51:51
huggingface/transformers
1d86d00ec3c9de948cf7d60e8d7d845560c8b8d1
fccb04998af44166524c2a7cfe0d946b99aef497
[loading] Correctly load params during offloading & careful memory considerations (#42632) * do not load everything in advance * fix * fix * fix * fix * fix memory leaks during conversion * oupsi * fix device_map * add doc * fix * doc * make it a method * doc * first shot at test * fix test * fix * rev...
[ { "path": "src/transformers/core_model_loading.py", "patch": "@@ -20,7 +20,7 @@\n import re\n from abc import abstractmethod\n from collections import defaultdict\n-from collections.abc import MutableMapping, MutableSet\n+from collections.abc import Callable, MutableMapping, MutableSet\n from concurrent.fut...
2025-12-05T17:33:51
vuejs/vue
84a9a9d61057f6f40a9ad2bee456b39ef0a8f001
387d2567ebec83db47d2049eec006a1ffc83451a
fix: do not traverse VNodes when regsitering dependencies fix #7786
[ { "path": "src/core/observer/traverse.js", "patch": "@@ -2,6 +2,7 @@\n \n import { _Set as Set, isObject } from '../util/index'\n import type { SimpleSet } from '../util/index'\n+import VNode from '../vdom/vnode'\n \n const seenObjects = new Set()\n \n@@ -18,7 +19,7 @@ export function traverse (val: any) {\...
2018-03-10T18:39:29
ggml-org/llama.cpp
847c35f7d5cbc686dfd5ae70f5702bafb84a8be9
a6a552e4ec43c2b6ed29b05d8da6921c59f05ed7
model-conversion : add trust_remote_code for embedding scripts (#18288) This commit adds the trust_remote_code=True parameter when loading models and configurations in the embedding model conversion scripts. It also adds a cast to float for models that might use a data type that is not supported by python, for example...
[ { "path": "examples/model-conversion/scripts/embedding/run-original-model.py", "patch": "@@ -45,7 +45,7 @@ def read_prompt_from_file(file_path):\n else:\n tokenizer = AutoTokenizer.from_pretrained(model_path)\n \n- config = AutoConfig.from_pretrained(model_path)\n+ config = AutoConfig.from_pretrai...
2025-12-23T06:27:37
huggingface/transformers
4ad279fb981ea341a09c04a5239e862fb33262cb
01267073bc5393cb8d1c21ffd2816b803705cc74
Fixing typo in documentation (philosophy) (#42647) Just a small typo fix in philosphy.md: out current, stable principles. -> our current, stable principles.
[ { "path": "docs/source/en/philosophy.md", "patch": "@@ -21,7 +21,7 @@ Transformers is a PyTorch-first library. It provides models that are faithful to\n A longer, in-depth article with examples, visualizations and timelines is available [here](https://huggingface.co/spaces/transformers-community/Transformer...
2025-12-05T14:49:49
denoland/deno
8ac8de128a1db7e71c37063dd101369f9abb4a3d
975db92d8dd33ba9fe1f45f42baad9eba3e0d51d
fix: restore --env-file parent directory traversal and do not error in `deno compile` for not found env file (#32686) Co-authored-by: David Sherret <dsherret@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -2274,7 +2274,9 @@ dependencies = [\n name = \"deno_dotenv\"\n version = \"0.7.0\"\n dependencies = [\n+ \"deno_path_util\",\n \"sys_traits\",\n+ \"thiserror 2.0.12\",\n ]\n \n [[package]]", "additions": 2, "deletions": 0, "language": "Unknown" }, { ...
2026-03-13T18:01:23
ggml-org/llama.cpp
96e33a814e100025648d12eb6a827154b48277d9
dfc959b886d2613a4d3f06d8f3523628c654e8a3
model : fix div-by-zero for Nemotron V2 (#18309) * llama-model : fix Nemotron V2 crash by moving MoE parameters calculation * remove whitespace --------- Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
[ { "path": "src/llama-model.cpp", "patch": "@@ -5243,9 +5243,6 @@ bool llama_model::load_tensors(llama_model_loader & ml) {\n const int64_t n_group = hparams.ssm_n_group;\n const int64_t d_in_proj = 2*d_inner + 2*n_group*d_state + n_ssm_head;\n \n- ...
2025-12-23T02:04:57
denoland/deno
975db92d8dd33ba9fe1f45f42baad9eba3e0d51d
d3aaa2420a957d73641cef024c9929e23899e4dc
fix(ext/node): improve X509Certificate Node.js compatibility (#32671) ## Summary - Fixes multiple compatibility issues with `crypto.X509Certificate` to pass the Node.js `test-crypto-x509.js` test suite - Adds `isX509Certificate()`, `signatureAlgorithm`, `signatureAlgorithmOid` getters - Fixes `emailAddress` label, dat...
[ { "path": "ext/node/polyfills/internal/crypto/x509.ts", "patch": "@@ -18,6 +18,8 @@ import {\n op_node_x509_get_issuer,\n op_node_x509_get_raw,\n op_node_x509_get_serial_number,\n+ op_node_x509_get_signature_algorithm_name,\n+ op_node_x509_get_signature_algorithm_oid,\n op_node_x509_get_subject,\n...
2026-03-13T13:28:27
huggingface/transformers
01267073bc5393cb8d1c21ffd2816b803705cc74
626875b65f8c9ff9366f7522193a10df8b99d950
small cleaning of quantization class (#42633) * small cleaning * fix * Apply suggestions from code review Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com> --------- Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "docs/source/en/quantization/contribute.md", "patch": "@@ -46,26 +46,30 @@ Some quantization methods may require \"pre-quantizing\" the model through data ca\n \n ## Create new HFQuantizer class\n \n+0. The best starting point would be to have a look at another quantization method such as Finegrai...
2025-12-05T14:48:51
vuejs/vue
81e1e47cabbd479e2a285f03120944f1efffe749
a2cd412876c68ff0fac8e70c82676684c6f82770
fix: respect type order when boolean casting multi-typed props fix #7485
[ { "path": "src/core/util/props.js", "patch": "@@ -27,12 +27,18 @@ export function validateProp (\n const prop = propOptions[key]\n const absent = !hasOwn(propsData, key)\n let value = propsData[key]\n- // handle boolean props\n- if (isType(Boolean, prop.type)) {\n+ // boolean casting\n+ const bool...
2018-03-09T19:46:00
ollama/ollama
42fa9d7f0a6067018feb0d5a4387f3eb39069dc3
b7a87a22b6eb5082b61370e8f8ce1bd42b9f3a25
Fix lint warnings
[ { "path": "convert/safetensors.go", "patch": "@@ -53,7 +53,7 @@ func (m *SafetensorFormat) GetTensors(dirpath string, params *Params) ([]llm.Ten\n \t\tvar err error\n \t\tt, offset, err = m.readTensors(f, offset, params)\n \t\tif err != nil {\n-\t\t\tslog.Error(\"%v\", err)\n+\t\t\tslog.Error(err.Error())\n...
2024-05-03T23:44:19
ggml-org/llama.cpp
dfc959b886d2613a4d3f06d8f3523628c654e8a3
8f48807380305a5985df78f67e29862664c9afec
model : Granite Embedding support (#15641) ModernBERT but without `head.norm` so will currently fail to convert and run any other ModernBERT models, PRs with `head.norm` support welcome! * constants and tensor mappings for modern bert support, model not supported yet but working on getting conversion to work for enco...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -1212,6 +1212,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"a1e163ecab2e718a4c829d1148b6e86824ec36163bb71941c3dca9cd5ac25756\":\n # ref: https://huggingface.co/JetBrains/Mellum-4b-base\n res = \"mellum\"\...
2025-12-22T23:28:19
huggingface/transformers
626875b65f8c9ff9366f7522193a10df8b99d950
28906c3c25cf7cc2fa6bc6ff261f6170ea79b508
[kernels] fix typing for Kernel mapping (#42623) * fix * fix
[ { "path": "src/transformers/integrations/hub_kernels.py", "patch": "@@ -78,7 +78,7 @@ def use_kernel_func_from_hub(func_name: str):\n )\n return lambda func: func\n \n- _KERNEL_MAPPING: dict[str, dict[Device | str, LayerRepository]] = {\n+ _KERNEL_MAPPING: dict[str, dict[De...
2025-12-05T14:30:27
denoland/deno
d3aaa2420a957d73641cef024c9929e23899e4dc
9ab5c0ce6fef7ef4e40002d09058cecb4e87a6b9
fix(lsp): align organize imports output with tsgo (#32677)
[ { "path": "cli/lsp/code_lens.rs", "patch": "@@ -3,7 +3,6 @@\n use std::cell::RefCell;\n use std::collections::HashSet;\n use std::rc::Rc;\n-use std::sync::Arc;\n \n use deno_ast::ParsedSource;\n use deno_ast::SourceRange;\n@@ -399,7 +398,7 @@ pub fn collect_test(\n pub fn collect_tsc(\n uri: &Uri,\n cod...
2026-03-13T13:21:53
ollama/ollama
b1ad3a43cb58c3c01dae8b68a5e8fac34a5620f8
267e25a750cb2e44e48206408f96d60b3dabc0b9
Skip PhysX cudart library For some reason this library gives incorrect GPU information, so skip it
[ { "path": "gpu/gpu.go", "patch": "@@ -220,6 +220,11 @@ func FindGPULibs(baseLibName string, patterns []string) []string {\n \t}\n \tslog.Debug(\"gpu library search\", \"globs\", patterns)\n \tfor _, pattern := range patterns {\n+\n+\t\t// Nvidia PhysX known to return bogus results\n+\t\tif strings.Contains(...
2024-05-03T18:55:32
vuejs/vue
318f29fcdf3372ff57a09be6d1dc595d14c92e70
d7d9b002fd60d246b1ef65f71b55b45f46563b4d
fix(core): disable dependency collection in lifecycle hooks and data getter (#7596) This fixes the parent being updated more than necessary due to collecting child props as dependencies during its own update computation. fix #7573
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -7,6 +7,7 @@ import { createEmptyVNode } from '../vdom/vnode'\n import { observerState } from '../observer/index'\n import { updateComponentListeners } from './events'\n import { resolveSlots } from './render-helpers/resolve-slots'\n+import { pushTarg...
2018-03-09T18:13:16
ggml-org/llama.cpp
bf6bc3c1551491b5eb019f0fb56c743f25d3eb79
179fd82a722cbca2cf5fc7cb072324782e762318
ggml-hexagon: gelu optimization (#18151) * feat: working gelu with src0 put on vtcm * feat: gelu ping-pong for both in and out * fix: fixu compile error * break: distinguish dma ddr->vtcm and vtcm->ddr operation * fix: fix dma queue size * break: update dma api to either pop src or dst ptr * fix: fix activation...
[ { "path": "ggml/src/ggml-hexagon/ggml-hexagon.cpp", "patch": "@@ -2668,7 +2668,7 @@ static void ggml_hexagon_unary(const struct ggml_tensor * op, uint32_t flags) {\n req.op = HTP_OP_UNARY_SILU;\n supported = true;\n }\n- else if (ggml_get_unary_op(ds...
2025-12-22T18:56:52
huggingface/transformers
28906c3c25cf7cc2fa6bc6ff261f6170ea79b508
e5aad213628b356674e9f36078f88ae5feaf1619
Compress (#42643) * fix compressed tensor tests Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * update comment Signed-off-by: jiqing-feng <jiqing.feng@intel.com> * format Signed-off-by: jiqing-feng <jiqing.feng@intel.com> --------- Signed-off-by...
[ { "path": "tests/quantization/compressed_tensors_integration/test_compressed_models.py", "patch": "@@ -80,7 +80,9 @@ def _has_nested_attr(obj, attr_path):\n if comp_decomp_obj is not None and hasattr(submodule, \"weight\"):\n if \"sparse-only\" in uncompressed_mod...
2025-12-05T14:28:57
denoland/deno
9ab5c0ce6fef7ef4e40002d09058cecb4e87a6b9
6c5ef85de45ecde1db3f4c9951dc47bdb824f798
fix(npm): resolve bundled npm deps in packages properly when not using a `node_modules` directory (#32679) We now attempt to find bundled dependencies at the start instead of on error. Previously we were doing it only on error... and sometimes it wouldn't error leading to bad resolution.
[ { "path": "cli/lsp/resolver.rs", "patch": "@@ -220,19 +220,19 @@ impl LspScopedResolver {\n }\n CliNpmResolver::Managed(managed_npm_resolver) => {\n CliNpmResolverCreateOptions::Managed({\n- let sys = CliSys::default();\n+ let sys = &factory.sys;\n ...
2026-03-13T11:44:13
vuejs/vue
d7d9b002fd60d246b1ef65f71b55b45f46563b4d
6bc75cacb72c0cc7f3d1041b5d9ff447ac2f5f69
chore: fix typo (#7781)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -26,7 +26,7 @@ export default class VNode {\n ssrContext: Object | void;\n fnContext: Component | void; // real context vm for functional nodes\n fnOptions: ?ComponentOptions; // for SSR caching\n- fnScopeId: ?string; // functioanl scope id support\n+ ...
2018-03-09T13:54:55
huggingface/transformers
e5aad213628b356674e9f36078f88ae5feaf1619
20890e3b901b264ffa2a5c31b4c26304bc3a5e61
Fix saving multiple tokenizers for custom processors (#42630) fix saving multiple tokenizers for custom processors
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -696,14 +696,10 @@ def to_dict(self) -> dict[str, Any]:\n # extra attributes to be kept\n attrs_to_save += [\"auto_map\"]\n \n- if \"tokenizer\" in output:\n- del output[\"tokenizer\"]\n- if \"qformer_tok...
2025-12-05T14:21:19
denoland/deno
6c5ef85de45ecde1db3f4c9951dc47bdb824f798
ae8a10d220641061b725ce9d3a6f4d960a4ec7f8
fix(ext/web): support %j JSON format specifier in console.log (#32684) ## Summary - Add support for the `%j` format specifier in `console.log` and related methods, which JSON-stringifies the argument (matching Node.js behavior) - Circular references output `[Circular]` instead of throwing Closes #32680 --------- Co...
[ { "path": "ext/web/01_console.js", "patch": "@@ -195,6 +195,7 @@ const {\n Uint32Array,\n WeakMap,\n WeakMapPrototype,\n+ JSONStringify,\n WeakSet,\n WeakSetPrototype,\n } = primordials;\n@@ -250,6 +251,34 @@ function assert(cond, msg = \"Assertion failed\") {\n }\n }\n \n+// Attempt to JSON.st...
2026-03-13T11:36:19
vuejs/vue
6bc75cacb72c0cc7f3d1041b5d9ff447ac2f5f69
db584931e20f9ad4b423cfc14d587f9d0240a565
fix(v-on): return handler value when using modifiers (#7704)
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -132,9 +132,9 @@ function genHandler (\n code += genModifierCode\n }\n const handlerCode = isMethodPath\n- ? handler.value + '($event)'\n+ ? `return ${handler.value}($event)`\n : isFunctionExpression\n- ? `(${handl...
2018-03-08T22:09:53
ollama/ollama
94c369095f96773b135df705672a2cc5c7865644
9164b0161bcb24e543cba835a8863b80af2c0c21
fix line ending replace CRLF with LF
[ { "path": "docs/windows.md", "patch": "@@ -1,47 +1,47 @@\n-# Ollama Windows Preview\r\n-\r\n-Welcome to the Ollama Windows preview.\r\n-\r\n-No more WSL required!\r\n-\r\n-Ollama now runs as a native Windows application, including NVIDIA and AMD Radeon GPU support.\r\n-After installing Ollama Windows Previe...
2024-05-02T21:52:21
huggingface/transformers
20890e3b901b264ffa2a5c31b4c26304bc3a5e61
366de9a6c399ccfc062602a49174260c3ccc33d0
Offloading need to add the prefix into the offload_index (#42624) * add prefix * stupide typing rules * peft integration as well
[ { "path": "src/transformers/integrations/accelerate.py", "patch": "@@ -466,10 +466,10 @@ def expand_device_map(device_map, param_names):\n \n \n def accelerate_disk_offload(\n+ model: \"PreTrainedModel\",\n disk_offload_folder: str | None,\n checkpoint_files: list[str] | None,\n device_map: d...
2025-12-05T14:15:22
ggml-org/llama.cpp
6ce863c8039b2dbfef2a22408f347842d438f03d
3997c78e339be05d8f64934f0765a6eead413e6e
server: prevent data race from HTTP threads (#18263) * server: prevent data race from HTTP threads * fix params * fix default_generation_settings * nits: make handle_completions_impl looks less strange * stricter const * fix GGML_ASSERT(idx < states.size()) * move index to be managed by server_response_reader *...
[ { "path": "tools/cli/cli.cpp", "patch": "@@ -216,7 +216,7 @@ int main(int argc, char ** argv) {\n ctx_cli.ctx_server.start_loop();\n });\n \n- auto inf = ctx_cli.ctx_server.get_info();\n+ auto inf = ctx_cli.ctx_server.get_meta();\n std::string modalities = \"text\";\n if (inf.has_i...
2025-12-22T13:23:34
denoland/deno
ae8a10d220641061b725ce9d3a6f4d960a4ec7f8
4da9f0b34805b146d3d965946e904d6c335c187a
fix(watch): dispatch unload and process exit events on restart (#32664) ## Summary - Fix `unload` event not firing when watch mode restarts a script blocked on a top-level await - Fix Node.js `process.on("exit")` handlers not firing on watch restart ### What changed In `FileWatcherModuleExecutor::execute()`, `pendi...
[ { "path": "cli/worker.rs", "patch": "@@ -194,9 +194,16 @@ impl CliMainWorker {\n /// Execute the given main module emitting load and unload events before and after execution\n /// respectively.\n pub async fn execute(&mut self) -> Result<(), CoreError> {\n- self.inner.execute_main_m...
2026-03-13T11:32:25
vuejs/vue
db584931e20f9ad4b423cfc14d587f9d0240a565
550c3c0d14af5485bb7e507c504664a7136e9bf9
fix(v-model): handle trailing whitespaces in expression (#7737)
[ { "path": "src/compiler/directives/model.js", "patch": "@@ -15,8 +15,8 @@ export function genComponentModel (\n if (trim) {\n valueExpression =\n `(typeof ${baseValueExpression} === 'string'` +\n- `? ${baseValueExpression}.trim()` +\n- `: ${baseValueExpression})`\n+ `? ${baseV...
2018-03-08T22:01:38
ggml-org/llama.cpp
3997c78e339be05d8f64934f0765a6eead413e6e
ee746429821d9e1dd8b386c0f490072e47eea24b
server: fix data race in to_json_anthropic (#18283)
[ { "path": "tools/server/server-task.cpp", "patch": "@@ -1153,7 +1153,7 @@ json server_task_result_rerank::to_json() {\n json server_task_result_cmpl_partial::to_json_anthropic() {\n json events = json::array();\n bool first = (n_decoded == 1);\n- static bool text_block_started = false;\n+ bool...
2025-12-22T12:21:43
huggingface/transformers
366de9a6c399ccfc062602a49174260c3ccc33d0
75ae02f0f8b4bb04b7ee147e8b57ebe76e27ac7c
Fix a typo in GGML integration of Qwen2 MoE (#42650) Just like `"qwen3_moe"` below, name of the key must be `"qwen2_moe"` with one underscore. Signed-off-by: Tsukasa OI <floss_llm@irq.a4lg.com>
[ { "path": "src/transformers/integrations/ggml.py", "patch": "@@ -76,7 +76,7 @@\n \"attention.layer_norm_rms_epsilon\": \"rms_norm_eps\",\n \"vocab_size\": \"vocab_size\",\n },\n- \"qwen2moe\": {\n+ \"qwen2_moe\": {\n \"context_length\": \"max_position_embeddings\",\n ...
2025-12-05T14:12:25
denoland/deno
5b7680fc07e69ba7d065c1aad59038e74a6b94a0
653c3c5ed04d818b733a65003d9566dcb3b9e365
fix(web): support structuredClone for DOMException (#32675) ## Summary - Enables `structuredClone()` and `postMessage()` for `DOMException` objects using the cloneable resource registry from #32672 - Serializes `message`, `name`, and `stack`; `code` is derived from `name` on deserialization - Supersedes #31156 Ref #3...
[ { "path": "ext/web/01_dom_exception.js", "patch": "@@ -7,7 +7,7 @@\n /// <reference path=\"../web/internal.d.ts\" />\n /// <reference path=\"../../cli/tsc/dts/lib.deno_web.d.ts\" />\n \n-import { primordials } from \"ext:core/mod.js\";\n+import { core, primordials } from \"ext:core/mod.js\";\n const {\n E...
2026-03-13T10:23:15
vuejs/vue
550c3c0d14af5485bb7e507c504664a7136e9bf9
144bf5a99e2ebd644f80bc8ab61cd1bf0366961a
fix(model): fix array index binding for v-model checkbox (#7671) Closes #7670
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -86,8 +86,8 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$el.checked){$$i<0&&(${value}=$$a.con...
2018-03-08T21:54:33
ollama/ollama
68755f1f5e57a3c595b3baf87fff8e997ae88b85
4fd064bea670f20df84144974093a8db0a1ded74
chore: fix typo in docs/development.md (#4073)
[ { "path": "docs/development.md", "patch": "@@ -51,7 +51,7 @@ Typically the build scripts will auto-detect CUDA, however, if your Linux distro\n or installation approach uses unusual paths, you can specify the location by\n specifying an environment variable `CUDA_LIB_DIR` to the location of the shared\n lib...
2024-05-01T19:39:11
ggml-org/llama.cpp
a28310488c3fc68511a0d404d9836b0eae4e498b
86af848153294b65442f7bddfa3d24baa5cb0c81
convert: rework ftype heuristics (#18214) * convert: rework ftype heuristics Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> convert: fix type-check Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> convert: bring back heuristics comment Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * convert: revert to using first te...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -141,16 +141,24 @@ def __init__(self, dir_model: Path, ftype: gguf.LlamaFileType, fname_out: Path,\n self.model_name = model_name\n self.dir_model_card = dir_model # overridden in convert_lora_to_gguf.py\n \n- # Apply heuristics to figu...
2025-12-22T12:03:49
huggingface/transformers
afa43c73a2cea3c44d78585e424fc2b4ad2ba068
ee7e67bf6abf0fe994bb02b1d3e6a30a4ea0970f
test ci training for text model only (#42597) * begin test ci training * add better logging * add better logging + training loop * fix sentence + grad_norm assert * create circlci config fort training * fix ci to detect training_ci job * add -s for pytest CI * add generate assert as well * make training ci tri...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -318,6 +318,14 @@ def job_name(self):\n parallelism=6,\n )\n \n+training_ci_job = CircleCIJob(\n+ \"training_ci\",\n+ additional_env={\"RUN_TRAINING_TESTS\": True},\n+ docker_image=[{\"image\": \"huggingface/transformers-torch-light\...
2025-12-05T12:56:49
denoland/deno
653c3c5ed04d818b733a65003d9566dcb3b9e365
7fa991eba96e14bc35429c223e3d009afa5191aa
fix(ext/node): implement safe, add, rem options for crypto.generatePrime (#32618) ## Summary - Implements the previously stubbed `safe`, `add`, and `rem` options for `crypto.generatePrime()` / `crypto.generatePrimeSync()`, matching Node.js/OpenSSL behavior - Fixes `checkPrime` / `checkPrimeSync` bigint truncation bug...
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -136,7 +136,7 @@ export class DiffieHellmanImpl {\n }\n \n this.#prime = Buffer.from(\n- op_node_gen_prime(this.#primeLength).buffer,\n+ op_node_gen_prime(this.#primeLength, false, null, null).buffer,\n ...
2026-03-13T09:51:07
vuejs/vue
144bf5a99e2ebd644f80bc8ab61cd1bf0366961a
68b51f2620a8245398d7c95b8afd523d0917d10b
fix(types): prefer normal component over functional one (#7687)
[ { "path": "types/options.d.ts", "patch": "@@ -31,20 +31,21 @@ export type Accessors<T> = {\n [K in keyof T]: (() => T[K]) | ComputedOptions<T[K]>\n }\n \n+type DataDef<Data, Props, V> = Data | ((this: Readonly<Props> & V) => Data)\n /**\n * This type should be used when an array of strings is used for a ...
2018-03-08T18:55:52
ollama/ollama
8867e744ff3c5a59467f316f0f23c272fe66700a
a3e60d9058d4459aac3a06f7cab80b0e894e1b38
types/model: fix name for hostport
[ { "path": "types/model/name.go", "patch": "@@ -143,7 +143,11 @@ func ParseNameBare(s string) Name {\n \t\tn.RawDigest = MissingPart\n \t}\n \n-\ts, n.Tag, _ = cutPromised(s, \":\")\n+\t// \"/\" is an illegal tag character, so we can use it to split the host\n+\tif strings.LastIndex(s, \":\") > strings.LastI...
2024-05-01T19:14:53
huggingface/transformers
35f32e947e29a98f712817fc3b571ea01ec53989
390dca67e554b2b8f131064d4b6d991bf3ab3105
regression from tokenizers v5 to fix fast reference for pipeline (#42628)
[ { "path": "src/transformers/pipelines/document_question_answering.py", "patch": "@@ -146,7 +146,9 @@ class DocumentQuestionAnsweringPipeline(ChunkPipeline):\n \n def __init__(self, *args, **kwargs):\n super().__init__(*args, **kwargs)\n- if self.tokenizer is not None and not self.tokenize...
2025-12-05T10:05:16
ggml-org/llama.cpp
0e1ccf15c7b6d05c720551b537857ecf6194d420
5e25ddebff0d456db91aa7274ff6a33f4a17ffea
llama: fix RPC for -fit on (#18233)
[ { "path": "ggml/src/ggml-rpc/ggml-rpc.cpp", "patch": "@@ -583,7 +583,7 @@ static rpc_tensor serialize_tensor(const ggml_tensor * tensor) {\n if (tensor->buffer) {\n ggml_backend_buffer_t buffer = tensor->buffer;\n ggml_backend_rpc_buffer_context * ctx = (ggml_backend_rpc_buffer_context *...
2025-12-21T18:33:08
vuejs/vue
68b51f2620a8245398d7c95b8afd523d0917d10b
6931a47c5c5664d4df2a99dd5c1b275ccef625bc
chore: fix comment grammar mistake (#7739)
[ { "path": "src/core/observer/index.js", "patch": "@@ -27,10 +27,10 @@ export const observerState = {\n }\n \n /**\n- * Observer class that are attached to each observed\n- * object. Once attached, the observer converts target\n+ * Observer class that is attached to each observed\n+ * object. Once attached, ...
2018-03-08T17:21:57
denoland/deno
7fa991eba96e14bc35429c223e3d009afa5191aa
7e58228ebde1f2813ae6537ddbe7aa323e5fb3eb
fix(ext/crypto): support structuredClone for CryptoKey (#32674) ## Summary - Enables `structuredClone()` and `postMessage()` for `CryptoKey` objects using the cloneable resource registry from #32672 - Works for all key types (AES, RSA, HMAC, EC, Ed25519, X25519, X448) including **non-extractable** keys - Clones intern...
[ { "path": "ext/crypto/00_crypto.js", "patch": "@@ -65,6 +65,7 @@ const {\n JSONStringify,\n MathCeil,\n ObjectAssign,\n+ ObjectDefineProperty,\n ObjectHasOwn,\n ObjectPrototypeIsPrototypeOf,\n SafeArrayIterator,\n@@ -438,9 +439,35 @@ function constructKey(type, extractable, usages, algorithm, h...
2026-03-13T09:50:19
huggingface/transformers
390dca67e554b2b8f131064d4b6d991bf3ab3105
328396d9675771b05a7c265df62a5f7b29f5bdd0
Fixed convert_batch_to_list_format staticmethod function call (#42476) Fixed TypeError: TokenizerTesterMixin.convert_batch_to_list_format() takes 1 positional argument but 2 were given
[ { "path": "tests/test_tokenization_common.py", "patch": "@@ -2302,7 +2302,9 @@ def test_batch_encode_plus_batch_sequence_length(self):\n \n encoded_sequences = [tokenizer(sequence) for sequence in sequences]\n encoded_sequences_batch = tokenizer(sequences, padding=False)\n- self.asser...
2025-12-05T09:17:21
ggml-org/llama.cpp
fd05c51cec7e233bddf2d2bae85ddf8aa6b0226c
b365c3ff010256c76fa030a621a4a96fc06a8442
vulkan: fix im2col overflowing maxworkgroupcount (#18180)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -1261,6 +1261,7 @@ struct vk_op_im2col_push_constants {\n int32_t s0; int32_t s1;\n int32_t p0; int32_t p1;\n int32_t d0; int32_t d1;\n+ uint32_t batch_IC;\n };\n \n struct vk_op_im2col_3d_push_constants {\n@@ -5902,6 +5903,9 @@ s...
2025-12-21T09:32:58
vuejs/vue
6b8516b2dde52be643ee6855b45b253a17ed0461
2b0fc381fcc2888b05fbbdf314b8450d3f31d396
fix(types): fix wrong errorCaptured type (#7712)
[ { "path": "types/options.d.ts", "patch": "@@ -80,7 +80,7 @@ export interface ComponentOptions<\n updated?(): void;\n activated?(): void;\n deactivated?(): void;\n- errorCaptured?(): boolean | void;\n+ errorCaptured?(err: Error, vm: Vue, info: string): boolean | void;\n \n directives?: { [key: stri...
2018-03-08T17:05:03
ollama/ollama
ba26c7aa00635c78c2028aba680556801c02fd64
63c763685f1dc94f7efe4742b00b226be99505d0
it will always return an error due to Kill() discarding Wait() errors
[ { "path": "llm/server.go", "patch": "@@ -903,9 +903,7 @@ func (s *llmServer) Close() error {\n \t\t\treturn err\n \t\t}\n \n-\t\tif err := s.cmd.Wait(); err != nil {\n-\t\t\treturn err\n-\t\t}\n+\t\t_ = s.cmd.Wait()\n \n \t\tslog.Debug(\"llama server stopped\")\n \t}", "additions": 1, "deletions": 3...
2024-04-29T22:48:14
denoland/deno
7e58228ebde1f2813ae6537ddbe7aa323e5fb3eb
92ca1fe1bf13032703b419314d6ddc2ab442318f
perf(fmt): speed up file diffing (#30644) This swaps out dissimilar for imara which is substantially faster at diffing strings. Note that this is a proof of concept and I did not have enough time to make the output pretty. I just shows that the diff is fast. Applying colors should be doable without changing much abou...
[ { "path": "Cargo.lock", "patch": "@@ -3119,9 +3119,9 @@ dependencies = [\n \"deno_semver\",\n \"deno_terminal\",\n \"deno_unsync\",\n- \"dissimilar\",\n \"futures\",\n \"http 1.4.0\",\n+ \"imara-diff\",\n \"import_map\",\n \"indexmap 2.12.0\",\n \"jsonc-parser 0.28.0\",\n@@ -5917,14 +5917,24 @@ depe...
2026-03-13T08:30:01
huggingface/transformers
f8e69286fb4b7f4cc778514e1c83c8a1f579f328
91865a69db92496b312847a41cf82b48c8589826
Move max_new_tokens recommendation into GenerationConfig docstring (#42384) * docs: clarify recommended usage of max_new_tokens in generate() * Move max_new_tokens recommendation into GenerationConfig docstring * Remove Note about max_new_tokens and max_length * Update src/transformers/generation/configuration_util...
[ { "path": "docs/source/en/main_classes/text_generation.md", "patch": "@@ -41,4 +41,4 @@ like token streaming.\n \n [[autodoc]] GenerationMixin\n - generate\n- - compute_transition_scores\n+ - compute_transition_scores\n\\ No newline at end of file", "additions": 1, "deletions": 1, "lan...
2025-12-05T06:14:26
ggml-org/llama.cpp
b365c3ff010256c76fa030a621a4a96fc06a8442
cb64222b0cbad6aa8c5d05837efb315eeff847ac
vulkan/cuda: fix topk_moe with exp_probs_b (#18071) I updated test_topk_moe to more closely match llm_graph_context::build_moe_ffn and added coverage for exp_probs_b and some other missing combinations. This exposed a bug in both CUDA and Vulkan backends where they were assuming the input to argsort and the input to g...
[ { "path": "ggml/src/ggml-cuda/ggml-cuda.cu", "patch": "@@ -3076,16 +3076,23 @@ static bool ggml_cuda_can_fuse(const struct ggml_cgraph * cgraph, int node_idx,\n ggml_can_fuse_subgraph(cgraph, node_idx, ops, { node_idx + 3, node_idx + 9 })) {\n ggml_tensor * softmax = cgraph->nodes[node_idx];...
2025-12-21T09:27:34
vuejs/vue
b2092dbff9ab0ccfa8e59ed3ca540cca0715c683
ec9152f67ac6b910012059df7f3a67e5517e205f
fix(types): make render option in functional components to optional (#7663)
[ { "path": "types/options.d.ts", "patch": "@@ -110,7 +110,7 @@ export interface FunctionalComponentOptions<Props = DefaultProps, PropDefs = Pro\n props?: PropDefs;\n inject?: InjectOptions;\n functional: boolean;\n- render(this: undefined, createElement: CreateElement, context: RenderContext<Props>): ...
2018-03-08T16:55:27
ollama/ollama
63c763685f1dc94f7efe4742b00b226be99505d0
34a4a94f13d283ef794ba02f84ded96a794bb5d2
log when the waiting for the process to stop to help debug when other tasks execute during this wait. expire timer clear the timer reference because it will not be reused. close will clean up expireTimer if calling code has not already done this.
[ { "path": "llm/server.go", "patch": "@@ -902,7 +902,12 @@ func (s *llmServer) Close() error {\n \t\tif err := s.cmd.Process.Kill(); err != nil {\n \t\t\treturn err\n \t\t}\n-\t\treturn s.cmd.Wait()\n+\n+\t\tif err := s.cmd.Wait(); err != nil {\n+\t\t\treturn err\n+\t\t}\n+\n+\t\tslog.Debug(\"llama server st...
2024-04-29T18:06:56
denoland/deno
92ca1fe1bf13032703b419314d6ddc2ab442318f
1ea5ff00c943fbca3c0b850118460fb21d4776e6
fix(ext/node): remove extra properties from node:fs exports (#32670) ## Summary - Remove 18 flag constants (`F_OK`, `R_OK`, `W_OK`, `X_OK`, `O_RDONLY`, `O_WRONLY`, etc.) from `node:fs` default and named exports — Node.js only exposes these via `fs.constants`, not as top-level properties - Remove internal promise hel...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -155,27 +155,6 @@ const {\n Uint8Array,\n } = primordials;\n \n-const {\n- F_OK,\n- R_OK,\n- W_OK,\n- X_OK,\n- O_RDONLY,\n- O_WRONLY,\n- O_RDWR,\n- O_NOCTTY,\n- O_TRUNC,\n- O_APPEND,\n- O_DIRECTORY,\n- O_NOFOLLOW,\n- O_SYNC,\n- O_DSYNC,\n- ...
2026-03-13T07:28:43
huggingface/transformers
91865a69db92496b312847a41cf82b48c8589826
3a8d291ac439fca3decb9b800ea22500cffeaf50
Fix FSDP bnb error (#42600) * fix * Apply style fixes * Fix * Apply style fixes * rm --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Mohamed Mekkouri <93391238+MekkCyber@users.noreply.github.com>
[ { "path": "src/transformers/integrations/bitsandbytes.py", "patch": "@@ -223,7 +223,9 @@ def _replace_with_bnb_linear(\n if pre_quantized:\n # this is kind of an edge case when supporting both loading and quantization ...\n ...
2025-12-05T05:39:25
ggml-org/llama.cpp
4117ae555773c7cb20f50d22cd065974fd9f7ec3
65e96a246490b4095acc11869da1d5300f89a493
Vulkan: some improvement on mul_mat_iq2_xs (#18031) * Some improvement on mul_mat_iq2_xs Refactor calculations for db values and grid data to optimize performance and reduce redundancy. * Fix trailing whitespace
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq2_xs.comp", "patch": "@@ -11,36 +11,54 @@ void calc_superblock(const uint a_offset, const uint b_offset, const uint itid,\n const uint y_idx = i * QUANT_K + 16 * itid;\n const uint nibble_shift = 4 * (itid & 1);\n const uint ib32 = iti...
2025-12-21T08:59:52
ollama/ollama
34a4a94f13d283ef794ba02f84ded96a794bb5d2
f4a73d57a4e3182a4dd25dae93a779a13423dfc0
ignore debug bin files
[ { "path": ".gitignore", "patch": "@@ -11,4 +11,5 @@ ggml-metal.metal\n .idea\n test_data\n *.crt\n-llm/build\n\\ No newline at end of file\n+llm/build\n+__debug_bin*\n\\ No newline at end of file", "additions": 2, "deletions": 1, "language": "Unknown" } ]
2024-04-29T15:05:54
vuejs/vue
db1b18ceec51761f1bcd6160c51e02b36b86a9c2
dc97a39c2f41ce57431d42d8b41811866f8e105c
fix(types): add missing `listeners` type on RenderContext (#7584)
[ { "path": "types/options.d.ts", "patch": "@@ -119,6 +119,7 @@ export interface RenderContext<Props=DefaultProps> {\n slots(): any;\n data: VNodeData;\n parent: Vue;\n+ listeners: { [key: string]: Function | Function[] };\n injections: any\n }\n ", "additions": 1, "deletions": 0, "langua...
2018-03-08T16:52:01
huggingface/transformers
3a8d291ac439fca3decb9b800ea22500cffeaf50
4c9fde2a2a3aece0bcf1be93f696e88297da9397
Fix interactions between require_read_token and staticmethod (#42522) * Fix interactions between require_read_token and staticmethod * Trigger tests
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -638,6 +638,9 @@ def require_read_token(test_case):\n if getattr(attr, \"__require_read_token__\", False):\n continue\n wrapped = require_read_token(attr)\n+ if isinstance(inspect.g...
2025-12-04T20:03:14