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
huggingface/transformers
85c50557b97590538229f99a321ea88d03d6eaa7
32e49f2884cdc23c172513d1a2cafe0f03255591
Fix Qwen3-Omni RoPE (#41778) * fix qwen rope * not sure it fits in runners, let's see * fix some tests * use input ids device everywhere * fix rope in wav2code and the test * I remember pushing these changes yesterday
[ { "path": "src/transformers/models/qwen3_omni_moe/configuration_qwen3_omni_moe.py", "patch": "@@ -347,6 +347,7 @@ def __init__(\n tie_word_embeddings=tie_word_embeddings,\n **kwargs,\n )\n+ rope_config_validation(self, ignore_keys={\"mrope_section\", \"interleaved\", \...
2025-11-06T08:30:39
vuejs/vue
7b069453edbf7fd03363a63d040396d274a79757
48c0c1ceb5819aea4f9f3fce38ac2ed606456cf0
fix Object.prototype.watch test case
[ { "path": "test/unit/features/options/extends.spec.js", "patch": "@@ -46,28 +46,22 @@ describe('Options extends', () => {\n expect(vm.b).toBe(2)\n expect(vm.c).toBe(3)\n })\n-})\n \n-describe('Options extends with Object.prototype.watch', () => {\n- beforeAll(function () {\n+ it('should work wit...
2017-06-06T06:48:05
ggml-org/llama.cpp
4a5b8aff40277071dbb98e81b5d0cbbbd3c37283
d2d626938aa7b0137df6a808e0637151806a9d5a
cmake : add version to all shared object files (#17091) When compiling llama.cpp in Yocto, it fails QA checks because the generated so files aren't versioned. This applies a version to all generated so files, allowing the package to build without errors.
[ { "path": "ggml/src/CMakeLists.txt", "patch": "@@ -211,6 +211,11 @@ add_library(ggml-base\n ggml-quants.h\n gguf.cpp)\n \n+set_target_properties(ggml-base PROPERTIES\n+ VERSION ${GGML_VERSION}\n+ SOVERSION ${GGML_VERSION_MAJOR}\n+)\n+\n target_include_directories(ggml-base PRIV...
2025-11-11T11:19:50
denoland/deno
2e293c82032011d78c4ed8c17f405b0fd84c543b
fa9d25ab6682f8f9fe843451c23cd5edaf3b2a71
fix: deno install --force --compile (#32242)
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -972,10 +972,28 @@ async fn install_global_compiled(\n };\n \n let output_path = PathBuf::from(&output);\n- if output_path.is_file() && !install_flags_global.force {\n- return Err(anyhow!(\n- \"Existing installation found. Aborting (Use -f to...
2026-02-20T20:38:26
ollama/ollama
0a9d34802375641d72279fd9870e2ddfd4120fbf
3144e2a4394a544375ac054375d838525f8096c7
Fix issues with `/set template` and `/set system` (#1486)
[ { "path": "README.md", "patch": "@@ -104,7 +104,7 @@ FROM llama2\n # set the temperature to 1 [higher is more creative, lower is more coherent]\n PARAMETER temperature 1\n \n-# set the system prompt\n+# set the system message\n SYSTEM \"\"\"\n You are Mario from Super Mario Bros. Answer as Mario, the assist...
2023-12-12T19:43:19
huggingface/transformers
32e49f2884cdc23c172513d1a2cafe0f03255591
bb65d2d953a512609a86727b6de64035717b1d45
Fix AutoImageProcessor.register and documentation in auto processing modules (#41864)
[ { "path": "src/transformers/models/auto/feature_extraction_auto.py", "patch": "@@ -93,7 +93,7 @@ def feature_extractor_class_from_name(class_name: str):\n if getattr(extractor, \"__name__\", None) == class_name:\n return extractor\n \n- # We did not fine the class, but maybe it's beca...
2025-11-06T07:43:07
vuejs/vue
48c0c1ceb5819aea4f9f3fce38ac2ed606456cf0
7561b94eeb75478fc38d391da2851b91b7ebed4f
Added check in merge strat for watches if child is already an array (fix #5652) (#5653) * Added check for if child is already an array If the child is already an array it does not need to be wrapped again. Fixing #5652 * Added unit test for watch merge strat * Moved test to own describe * Added test for m...
[ { "path": "src/core/util/options.js", "patch": "@@ -172,7 +172,7 @@ strats.watch = function (parentVal: ?Object, childVal: ?Object): ?Object {\n }\n ret[key] = parent\n ? parent.concat(child)\n- : [child]\n+ : Array.isArray(child) ? child : [child]\n }\n return ret\n }", "add...
2017-06-06T05:48:31
huggingface/transformers
bb65d2d953a512609a86727b6de64035717b1d45
57bdb4a680b2f82ad739ef741996be04e3764eea
Fix `pr_slow_ci_suggestion.yml` after #42023 (#42049) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/pr_slow_ci_suggestion.yml", "patch": "@@ -23,11 +23,26 @@ jobs:\n outputs:\n jobs: ${{ steps.get_jobs.outputs.jobs_to_run }}\n steps:\n+ # This checkout to the main branch\n+ - uses: actions/checkout@v4\n+ with:\n+ fetch-depth: \"0\"\n+\n+...
2025-11-05T21:10:12
ollama/ollama
5314fc9b632e520415114b4bfd4e53bab263467c
a36b5fef3b83fc622b3720d7b3a71f1261ba193e
Fix Readme "Database -> MindsDB" link (#1479)
[ { "path": "README.md", "patch": "@@ -256,7 +256,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n \n ### Database\n \n-- [MindsDB] (https://github.com/mindsdb/mindsdb/blob/staging/mindsdb/integrations/handlers/ollama_handler/README.md)\n+- [MindsDB](https://github.com/mindsdb/mindsdb/blob...
2023-12-12T15:26:13
denoland/deno
fa9d25ab6682f8f9fe843451c23cd5edaf3b2a71
498d6efc6c6564fa68be273d6b403f7ccc881f41
feat(fmt): add --fail-fast flag to deno fmt --check (#31438) Adds a `--fail-fast` flag to `deno fmt --check` that stops checking files immediately after finding the first formatting error, matching the behavior of `deno test --fail-fast`.
[ { "path": "cli/args/flags.rs", "patch": "@@ -269,6 +269,7 @@ pub struct EvalFlags {\n #[derive(Clone, Default, Debug, Eq, PartialEq)]\n pub struct FmtFlags {\n pub check: bool,\n+ pub fail_fast: bool,\n pub files: FileFlags,\n pub permit_no_files: bool,\n pub use_tabs: Option<bool>,\n@@ -3142,6 +31...
2026-02-20T16:55:14
ggml-org/llama.cpp
85234a4b3aa1084147995a07c12ebcce6310dd9e
0c74f3263273cf0d95d1f10930a12cad94c375af
vulkan: fix validation issue introduced by #16868 (#17145)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -6831,7 +6831,7 @@ static void ggml_vk_mul_mat_vec_q_f16(ggml_backend_vk_context * ctx, vk_context&\n \n vk_buffer d_B = d_D;\n size_t b_buf_offset = 0;\n- uint64_t b_sz = 0;\n+ uint64_t b_sz = 1;\n \n if (enable_bias) {\n ...
2025-11-10T15:59:10
vuejs/vue
68522cfdef34ef49157a66e09b6b7422587e2c04
13bb643d6fa6a2dba61b5ee191548cc9086cc602
fix:the placeholder key in undefined when render async component (#5828)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -140,7 +140,9 @@ export default {\n // during entering.\n const id: string = `__transition-${this._uid}-`\n child.key = child.key == null\n- ? id + child.tag\n+ ? child.isComment\n+ ? id + 'comment'\n+ ...
2017-06-06T01:37:06
ollama/ollama
7db5bcf73bf7026970e988f56126db8f370f1b11
fa2f095bd9f002c298042aed5fdc0e7ccd50a652
fix `go-staticcheck` warning
[ { "path": "server/routes.go", "patch": "@@ -860,7 +860,7 @@ func Serve(ln net.Listener, allowOrigins []string) error {\n \tif runtime.GOOS == \"linux\" {\n \t\t// check compatibility to log warnings\n \t\tif _, err := llm.CheckVRAM(); err != nil {\n-\t\t\tlog.Printf(err.Error())\n+\t\t\tlog.Print(err.Error(...
2023-12-10T16:44:27
huggingface/transformers
57bdb4a680b2f82ad739ef741996be04e3764eea
1a0ae4bb81caf000e655cd326712377f777a7a74
Cleanup workflow - part 1 (#42023) * part 1 * part 2 * part 3 * part 4 * part 5 * fix 1 * check 1 * part 6 * part 7 * part 8 * part 9 * part 10: rename file * OK: new_model_pr_merged_notification.yml * part 11 * fix 2 * revert check * fix * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users...
[ { "path": ".github/workflows/check_failed_tests.yml", "patch": "@@ -64,13 +64,15 @@ jobs:\n - name: Check file\n id: check_file\n working-directory: /transformers\n+ env:\n+ job: ${{ inputs.job }}\n run: |\n- if [ -f ci_results_${{ inputs.job }}/new_fai...
2025-11-05T20:01:06
ggml-org/llama.cpp
0c74f3263273cf0d95d1f10930a12cad94c375af
c27efd2bd1f27b1ad2f0b7cb417dbb9b62b57d44
memory: Hybrid context shift (#17009) * feat(memory): Only fail partial erasure of recurrent tail The recurrent state is always assumed to be the state as of the last update from the final token in the sequence. When doing a partial erasure, if the range does not include the final token, the erasure can be considered...
[ { "path": "src/llama-memory-recurrent.cpp", "patch": "@@ -151,7 +151,8 @@ bool llama_memory_recurrent::seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos\n p1 = std::numeric_limits<llama_pos>::max();\n }\n \n- // models like Mamba or RWKV can't have a state partially erased\n+ // models l...
2025-11-10T15:14:23
denoland/deno
498d6efc6c6564fa68be273d6b403f7ccc881f41
dde0741dc94351724169250acbc3901fed71b0ae
fix(ext/node): `util.parseEnv` and `process.loadEnvFile` compatibility (#32183)
[ { "path": ".github/workflows/ci.yml", "patch": "@@ -1347,7 +1347,7 @@ jobs:\n if: '!startsWith(github.ref, ''refs/tags/'')'\n env:\n CARGO_PROFILE_DEV_DEBUG: 0\n- run: cargo test --locked --lib -p deno -p denort -p node_shim -p deno_lib -p deno_snapshots -p deno_bundle_runti...
2026-02-20T15:44:02
vuejs/vue
c3cdfcfa68126783307d74fca22b136cd41c474a
b4dd0be4fc20eb51681c9cf50189081fc8117e14
fix out-in transition for async components (fix #5760)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -72,19 +72,23 @@ function isSameChild (child: VNode, oldChild: VNode): boolean {\n return oldChild.key === child.key && oldChild.tag === child.tag\n }\n \n+function isAsyncPlaceholder (node: VNode): boolean {\n+ return node.isCo...
2017-06-05T11:01:23
huggingface/transformers
2418196ef41255cb686125a5f148ac44619c8622
561233cabf480b0f884700be3aebf42dbe6a7b20
Fix the order of methods in processor loading (#42031) * fix the order * add a test
[ { "path": "src/transformers/processing_utils.py", "patch": "@@ -1370,8 +1370,8 @@ def from_pretrained(\n if token is not None:\n kwargs[\"token\"] = token\n \n- processor_dict, kwargs = cls.get_processor_dict(pretrained_model_name_or_path, **kwargs)\n args = cls._get_argum...
2025-11-05T14:33:07
ollama/ollama
fa2f095bd9f002c298042aed5fdc0e7ccd50a652
045b855db9dc4fa08738dd20ee2a7252c4680e6a
fix model name returned by `/api/generate` being different than the model name provided
[ { "path": "llm/llama.go", "patch": "@@ -545,15 +545,13 @@ type prediction struct {\n const maxBufferSize = 512 * format.KiloByte\n \n type PredictOpts struct {\n-\tModel string\n \tPrompt string\n \tFormat string\n \tCheckpointStart time.Time\n \tCheckpointLoaded time.Time\n ...
2023-12-10T16:42:15
ggml-org/llama.cpp
df70bedda70550fd9ebc4bc965c5dbc3f6d78345
f914544b16a467a5c94e95ec77027775c3652c09
arm64: add i8mm route with SVE ggml_vec_dot_q4_K_q8_K and ggml_vec_dot_q6_K_… (#15277) * add i8mm route with SVE ggml_vec_dot_q4_K_q8_K and ggml_vec_dot_q6_K_q8_K * Surround SVE function with compiler directive * fix compile switch * fix coding style * ggml : fix indent --------- Co-authored-by: Georgi Gerganov ...
[ { "path": "ggml/src/ggml-cpu/arch/arm/quants.c", "patch": "@@ -2044,6 +2044,26 @@ void ggml_vec_dot_q3_K_q8_K(int n, float * GGML_RESTRICT s, size_t bs, const voi\n \n }\n \n+#ifdef __ARM_FEATURE_SVE\n+static inline svuint32_t ggml_decode_q4scales_and_mins_for_mmla(const uint32_t * vx_scales) {\n+ const ...
2025-11-10T13:12:59
denoland/deno
08d2450c90cef5ca8abe52e389fee6e5221ca159
ff153750f2b240b910b56cf36aea8c94cc603c00
fix(ci): use noble apt repo for LLVM 21 packages (#32241) The CI was configured to install LLVM 21 from the jammy (Ubuntu 22.04) apt repository, but the runners use Ubuntu 24.04 (Noble). The mismatched distro codename caused 404 errors when downloading packages.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -117,8 +117,8 @@ sudo apt-get -qq remove \\\n 'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'clang-16*' 'clang-17*' 'clang-18*' 'clang-19*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'llvm-16*' 'llvm-17*' 'llvm-18*' 'llvm-19*' 'lld-12*' 'lld-13...
2026-02-20T04:20:28
vuejs/vue
da1fc3ddc97fb78621f518d03c549ebecc9b1108
11b7d5dff276caa54da3ef5b52444c0e2c5bbf41
improve: add missing html and svg tag (#5688) * imporve: add missing html and svg tag * reivew * fix: review
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -19,7 +19,7 @@ export const isHTMLTag = makeMap(\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n- 'content,element,shadow,temp...
2017-05-30T05:33:48
huggingface/transformers
561233cabf480b0f884700be3aebf42dbe6a7b20
36b640562b11f54044841ae3665930023d4ff27d
Change trigger time for AMD CI (#42034) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-scheduled-amd-caller.yml", "patch": "@@ -2,7 +2,7 @@ name: Self-hosted runner (AMD scheduled CI caller)\n \n on:\n schedule:\n- - cron: \"17 2 * * *\"\n+ - cron: \"17 5 * * *\"\n \n jobs:\n run_scheduled_amd_ci:", "additions": 1, "deletions": 1, "langu...
2025-11-05T13:17:12
ollama/ollama
045b855db9dc4fa08738dd20ee2a7252c4680e6a
32064a064660227ea128991a14f3f300d00075f5
fix error on accumulating final chat response
[ { "path": "server/routes.go", "patch": "@@ -1025,7 +1025,10 @@ func ChatHandler(c *gin.Context) {\n \t\tfor resp := range ch {\n \t\t\tswitch r := resp.(type) {\n \t\t\tcase api.ChatResponse:\n-\t\t\t\tsb.WriteString(r.Message.Content)\n+\t\t\t\tif r.Message != nil {\n+\t\t\t\t\tsb.WriteString(r.Message.Con...
2023-12-10T16:24:39
ggml-org/llama.cpp
4b13a684c595ab9323be8dfa6266d9d0fb13c232
9898b57cbe69ab81713e16cbb84a799c6eb3e36c
mtmd: fix patch_size initialized to random value in audio models (#17128) * mtmd: fix patch_size initialized to random value in audio models * add default hparams
[ { "path": "tools/mtmd/clip.cpp", "patch": "@@ -160,13 +160,13 @@ enum patch_merge_type {\n };\n \n struct clip_hparams {\n- int32_t image_size;\n- int32_t patch_size;\n- int32_t n_embd;\n- int32_t n_ff;\n- int32_t projection_dim;\n- int32_t n_head;\n- int32_t n_layer;\n+ int32_t imag...
2025-11-10T10:41:05
vuejs/vue
11b7d5dff276caa54da3ef5b52444c0e2c5bbf41
b182ac40697edbe8253d4bd68b6ac09e93259e1c
Add handleError during event handling (#5709) * Add handleError during event handling Currently handleError is used to handle errors during lifecycle hooks. This commit adds this functionality in to the event handling for consistency. * style tweak
[ { "path": "src/core/instance/events.js", "patch": "@@ -1,7 +1,13 @@\n /* @flow */\n \n+import {\n+ tip,\n+ toArray,\n+ hyphenate,\n+ handleError,\n+ formatComponentName\n+} from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n-import { toArray, tip, hyphenate, formatComponent...
2017-05-29T06:24:25
huggingface/transformers
36b640562b11f54044841ae3665930023d4ff27d
0c4a202408365681c114b127bf46aa2bbb4bcf8a
extend fp_quant cases to xpu (#41833) * extend fp_quant UTs to xpu Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * fix style Signed-off-by: Yao, Matrix <matrix.yao@intel.com> * Update tests/quantization/fp_quant_integration/test_fp_quant.py Co-authored-by: Yih-Dar <2521628+ydshieh@users.noreply.github.com> -...
[ { "path": "src/transformers/quantizers/quantizer_fp_quant.py", "patch": "@@ -20,7 +20,7 @@\n if TYPE_CHECKING:\n from ..modeling_utils import PreTrainedModel\n \n-from ..utils import is_fp_quant_available, is_qutlass_available, is_torch_available, logging\n+from ..utils import is_fp_quant_available, is_...
2025-11-05T10:50:31
ggml-org/llama.cpp
b8595b16e69e3029e06be3b8f6635f9812b2bc3f
392e09a60852d0e879d4bbedd5ace3e6852f719e
mtmd : fix embedding size for image input (#17123)
[ { "path": "tools/mtmd/mtmd-helper.cpp", "patch": "@@ -182,7 +182,7 @@ int32_t mtmd_helper_decode_image_chunk(\n }\n \n const llama_model * model = llama_get_model(lctx);\n- int n_mmproj_embd = llama_model_n_embd(model);\n+ int n_mmproj_embd = llama_model_n_embd_inp(model);\n int n_pos_per_...
2025-11-09T16:31:02
ollama/ollama
32064a064660227ea128991a14f3f300d00075f5
d9a250e9b5151417c4b7a6e2971c1e683cbd2aff
fix empty response when receiving runner error
[ { "path": "docs/api.md", "patch": "@@ -252,7 +252,7 @@ curl http://localhost:11434/api/generate -d '{\n \"penalize_newline\": true,\n \"stop\": [\"\\n\", \"user:\"],\n \"numa\": false,\n- \"num_ctx\": 4,\n+ \"num_ctx\": 1024,\n \"num_batch\": 2,\n \"num_gqa\": 1,\n \"num_gpu\":...
2023-12-10T15:53:38
vuejs/vue
b182ac40697edbe8253d4bd68b6ac09e93259e1c
e274c96881f8b14486587e93f404be489454d781
Warn when a inject has been not provided (#5681) * warn when a inject has been not provided * typo * typo * fix when undefined is provided * use util hasOwn * refactor * test case * Revert "test case" This reverts commit 08f0a8b6c3837fc34ddd264712b8c30a05c165e5. * test case
[ { "path": "src/core/instance/inject.js", "patch": "@@ -3,6 +3,7 @@\n import { hasSymbol } from 'core/util/env'\n import { warn } from '../util/index'\n import { defineReactive } from '../observer/index'\n+import { hasOwn } from 'shared/util'\n \n export function initProvide (vm: Component) {\n const provi...
2017-05-29T05:49:49
huggingface/transformers
0c4a202408365681c114b127bf46aa2bbb4bcf8a
20396951afaf35e12979e8ef54b2289936921ac6
[tests] Add Context-parallel CI tests (#41860) * intial * simplify tests * add test_cp_equivalence * removed fsdp_transformer_layer_cls_to_wrap * use DataCollatorForLanguageModeling * remove use_cache=False. * changes from review * make script self contained * moved to fsdp folder * fix class name
[ { "path": "tests/fsdp/test_context_parallel.py", "patch": "@@ -0,0 +1,224 @@\n+# Copyright 2025 The HuggingFace Team. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the License.\n+# You may obtain a copy ...
2025-11-05T10:40:51
ggml-org/llama.cpp
392e09a60852d0e879d4bbedd5ace3e6852f719e
802cef44bfaa80987076d621c8bf5875627c197b
vulkan: fix memory allocations (#17122)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2220,9 +2220,12 @@ static vk_buffer ggml_vk_create_buffer(vk_device& device, size_t size, const std\n }\n buf->memory_property_flags = req_flags;\n \n+ bool done = false;\n+\n for (auto mtype_it = memory_type_indi...
2025-11-09T15:14:41
vuejs/vue
e6de9a5de28d466b5d4e57e6d5d3baf13d8349b0
d333a498e93acf2d2844fd396e8544658958a3c6
Add types for vue-server-renderer (fix #5772) (#5775) * add types for vue-server-renderer * add a new line to the end of files * make RenderCallback's err to be nullable * fix the server side directive types * make stricter the types of the server bundle and the client manifest
[ { "path": "packages/vue-server-renderer/package.json", "patch": "@@ -3,6 +3,7 @@\n \"version\": \"2.3.3\",\n \"description\": \"server renderer for Vue 2.0\",\n \"main\": \"index.js\",\n+ \"types\": \"types/index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://gith...
2017-05-28T12:08:58
ggml-org/llama.cpp
802cef44bfaa80987076d621c8bf5875627c197b
1c07c0c68c692d39b83f491bad9447af852bb652
convert : parse safetensors directly (#15667) * convert : parse safetensors directly * gguf-py : order safetensors tensors by name Applies to both local and remote safetensors custom parsing. This matches the behavior of the official safetensors implementation. * convert : rename from_safetensors_meta to from_local...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -218,8 +218,7 @@ def index_tensors(self, remote_hf_model_id: str | None = None) -> dict[str, Call\n logger.info(f\"gguf: indexing model part '{part_name}'\")\n ctx: ContextManager[Any]\n if is_safetensors:\n- ...
2025-11-09T14:49:40
denoland/deno
ff153750f2b240b910b56cf36aea8c94cc603c00
964288509b72a5f4217f61bb85e104f41ef09c24
fix(lsp): typescript-go basic resolution (#32016)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1296,6 +1296,49 @@ impl DocumentModules {\n module\n }\n \n+ pub fn module_for_tsgo_referrer(\n+ &self,\n+ uri: &Uri,\n+ compiler_options_key: &CompilerOptionsKey,\n+ ) -> Option<Arc<DocumentModule>> {\n+ let document = self.documents.get(u...
2026-02-19T17:50:21
ggml-org/llama.cpp
1c07c0c68c692d39b83f491bad9447af852bb652
cb1adf885105da7ce23db746b4202f4e987aa3e8
convert : handle compressed-tensors quant method (#17069) * convert : handle compressed-tensors quant method * convert : handle int-quantized models * convert : handle naive-quantized models * gguf-py : __pos__ is also unary * convert : fix flake8 lint * convert : use F32 for dequant of pack-quantized tensors
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -278,15 +278,14 @@ def dequant_bitnet(weight: Tensor, scale: Tensor) -> Tensor:\n # The scale is inverted\n return data / scale.float()\n \n- def dequant_simple(weight: Tensor, scale: Tensor) -> Tensor:\n+ ...
2025-11-09T14:45:50
ollama/ollama
bbe41ce41a49099097f30fcdb59f08e707d166e1
9e1406e4ed57a7ddcb720e9b6ec15fa7c748318a
fix: parallel queueing race condition caused silent failure (#1445) * fix: queued request failures - increase parallel requests to 2 to complete queued request, queueing is managed in ollama * log steam errors
[ { "path": "llm/llama.go", "patch": "@@ -341,6 +341,7 @@ func newLlama(model string, adapters, projectors []string, runners []ModelRunner\n \t\t\"--ctx-size\", fmt.Sprintf(\"%d\", opts.NumCtx),\n \t\t\"--batch-size\", fmt.Sprintf(\"%d\", opts.NumBatch),\n \t\t\"--n-gpu-layers\", fmt.Sprintf(\"%d\", numGPU),\...
2023-12-09T19:14:02
denoland/deno
964288509b72a5f4217f61bb85e104f41ef09c24
e64ffe6a4f61e0ddeaaff6fb5b4cea6b0264c45f
fix(ext/node): handle shell redirections in child_process exec (#32087) When child_process.exec() runs a shell command like "deno" "script.js" < "input.txt", transformDenoShellCommand failed to add run -A because shell redirections (<, >, |) were included in the args passed to the CLI parser, triggering the metacharac...
[ { "path": "ext/node/lib.rs", "patch": "@@ -291,6 +291,7 @@ deno_core::extension!(deno_node,\n ops::process::op_process_abort,\n ops::process::op_node_process_constrained_memory<TSys>,\n ops::node_cli_parser::op_node_translate_cli_args,\n+ ops::shell::op_node_parse_shell_args,\n ops::tls::...
2026-02-19T17:48:40
ggml-org/llama.cpp
7f3e9d339c99d96d6df9833c63ec27dbbc96f003
8a3519b70898b07ec05c391418a05aaa6b377c83
vulkan: iGPU memory reporting fix (#17110) * vulkan: use all device-local heaps for memory availability reporting Co-authored-by: Giuseppe Scrivano <gscrivan@redhat.com> * use all available heaps for iGPU memory reporting * Allow multiple memory types per buffer request for devices with split heaps --------- Co-a...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -2159,17 +2159,18 @@ static void ggml_vk_queue_command_pools_cleanup(vk_device& device) {\n }\n }\n \n+static std::vector<uint32_t> ggml_vk_find_memory_properties(const vk::PhysicalDeviceMemoryProperties* mem_props, vk::MemoryRequirements* m...
2025-11-09T08:54:47
vuejs/vue
f3757eb37bfe38cb2e8d87983a1f83d31ea9d30a
05195b862528e7e6c48bc4183cec41114d43b2d6
feat: Add `defer` to body scripts (#5704) * fix: prefetch should not have `as` attribute * feat: Add `async` to body script tags * Use defer instead of async * Use defer instead of async
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -209,7 +209,7 @@ export default class TemplateRenderer {\n const async = this.getUsedAsyncFiles(context)\n const needed = [initial[0]].concat(async || [], initial.slice(1))\n return needed.filter(isJS).map(file => {\n- ...
2017-05-22T09:47:55
ollama/ollama
7e9405fd0762a8fdbd7a3b3ea7a9268775fd944e
3b0b8930d4d9209ea5919452c908b372428e233d
fix: encode full previous prompt in context (#1424)
[ { "path": "server/routes.go", "patch": "@@ -277,7 +277,7 @@ func GenerateHandler(c *gin.Context) {\n \t\t\t}\n \n \t\t\tif r.Done && !req.Raw {\n-\t\t\t\tembd, err := loaded.runner.Encode(c.Request.Context(), req.Prompt+generated.String())\n+\t\t\t\tembd, err := loaded.runner.Encode(c.Request.Context(), pro...
2023-12-08T21:53:51
denoland/deno
8e15a1f450b91aa44a6f6b9881c9be717575e750
3239a3fe2d1da2cd93df4cbd099c8d0973699fa0
feat: add `navigator.platform` (#30795) Fixes https://github.com/denoland/deno/issues/24117 --------- Signed-off-by: Bedis Nbiba <bedisnbiba@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/tsc/dts/lib.deno.window.d.ts", "patch": "@@ -362,6 +362,7 @@ interface Navigator {\n readonly userAgent: string;\n readonly language: string;\n readonly languages: string[];\n+ readonly platform: string;\n }\n \n /**", "additions": 1, "deletions": 0, "language": "Unknown" ...
2026-02-19T08:19:17
huggingface/transformers
3c4cdd549d2b57c7f9d484122076f1bca9463d91
020e713ac8e70bd2e72bcd12dc6bd1ada6162562
fix `deeepspeed` in AMD docker file (#42025) fix deeepspeed in AMD docker Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "docker/transformers-pytorch-deepspeed-amd-gpu/Dockerfile", "patch": "@@ -29,7 +29,7 @@ RUN python3 -m pip uninstall -y apex torch torchvision torchaudio\n RUN python3 -m pip install torch==$PYTORCH torchvision==$TORCH_VISION torchaudio==$TORCH_AUDIO --index-url https://download.pytorch.org/whl/ro...
2025-11-05T09:40:29
ggml-org/llama.cpp
8a3519b70898b07ec05c391418a05aaa6b377c83
80a6cf63473b95742444a1b27d45164591282a7d
vulkan: fix mmq out of bounds reads (#17108) * vulkan: fix mmq out of bounds reads, streamline outdated matmul host code * fix mul_mat_id quantization call * Fix compiler warnings
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -586,7 +586,6 @@ struct vk_device_struct {\n vk_matmul_pipeline2 pipeline_dequant_mul_mat_mat_id_q8_1[GGML_TYPE_COUNT];\n \n vk_pipeline pipeline_matmul_split_k_reduce;\n- vk_pipeline pipeline_quantize_q8_1;\n vk_pipeline pipeline...
2025-11-09T08:52:57
vuejs/vue
f061d802d36a5f88a4b37c598fe4b4c17ab5f238
55d8bfd6fdda38f31b17cffa07e5ab743c9f2670
fix v-if false rendering
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -135,7 +135,7 @@ function elementToSegments (el, state): Array<StringSegment> {\n el.ifProcessed = true\n return [{\n type: EXPRESSION,\n- value: genIf(el, state, elementToString, '\"\"')\n+ value: genIf(el, state, e...
2017-05-18T08:53:35
ollama/ollama
3b0b8930d4d9209ea5919452c908b372428e233d
e3f925fc1baeb97a9aa2e08d79dcb829487b7820
fix: only flush template in chat when current role encountered (#1426)
[ { "path": "server/images.go", "patch": "@@ -103,16 +103,16 @@ func (m *Model) ChatPrompt(msgs []api.Message) (string, error) {\n \t}\n \n \tfor _, msg := range msgs {\n-\t\tswitch msg.Role {\n+\t\tswitch strings.ToLower(msg.Role) {\n \t\tcase \"system\":\n-\t\t\tif currentVars.Prompt != \"\" || currentVars....
2023-12-08T21:44:24
huggingface/transformers
371ef0f4a2c5264f0b04270f07ee86c104c76f0a
6efc1799c1d0665c41717c555f3551d974e4d61a
[v5] Deprecate Text2Text and related pipelines (#41996) * Deprecate Text2Text and related pipelines * Try a restructure * make fixup * logging -> logger
[ { "path": "src/transformers/pipelines/__init__.py", "patch": "@@ -59,6 +59,7 @@\n get_default_model_and_revision,\n load_model,\n )\n+from .deprecated import SummarizationPipeline, Text2TextGenerationPipeline, TranslationPipeline\n from .depth_estimation import DepthEstimationPipeline\n from .docume...
2025-11-04T16:47:06
denoland/deno
e945e5c74ada0a249d26d89dc0a71dd024333b7f
cad67da32d917bf1437b0f66ebdaee07f815a384
ci: fix saving wpt cache (#32228)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -1171,6 +1171,15 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n }\n \n if (buildItem.wpt.isPossiblyTrue()) {\n+ const buildCacheSteps = createRestoreAndSaveCacheSteps({\n+ name: \"wpt and autobahn test run hashes\",\n+ pa...
2026-02-19T00:41:18
ggml-org/llama.cpp
333f2595a3e0e4c0abf233f2f29ef1710acd134d
53d7d21e6128af43020190100b7f91d7bdce93c5
webui: fix keyboard shortcuts for new chat & edit chat title (#17007)
[ { "path": "tools/server/webui/src/routes/+layout.svelte", "patch": "@@ -44,12 +44,12 @@\n \t\t\t}\n \t\t}\n \n-\t\tif (isCtrlOrCmd && event.shiftKey && event.key === 'o') {\n+\t\tif (isCtrlOrCmd && event.shiftKey && event.key === 'O') {\n \t\t\tevent.preventDefault();\n \t\t\tgoto('?new_chat=true#/');\n \t\...
2025-11-08T19:52:35
vuejs/vue
66387a46398b020eded55c4529a21e1c0f451dfb
41acdc0ff145653cf3a86a4f108fae3125ad291a
fix enumerated/boolean attr
[ { "path": "src/server/optimizing-compiler/modules.js", "patch": "@@ -11,6 +11,11 @@ import {\n isRenderableAttr\n } from 'web/server/util'\n \n+import {\n+ isBooleanAttr,\n+ isEnumeratedAttr\n+} from 'web/util/attrs'\n+\n import type { StringSegment } from './codegen'\n import type { CodegenState } from...
2017-05-18T08:19:37
ollama/ollama
e3f925fc1baeb97a9aa2e08d79dcb829487b7820
2a2289fb6b7e01c862a89c2c97dd856f1407c2b5
fix: restore modelfile system in prompt template (#1425)
[ { "path": "server/images.go", "patch": "@@ -64,6 +64,11 @@ func (m *Model) Prompt(p PromptVars) (string, error) {\n \t\treturn \"\", err\n \t}\n \n+\tif p.System == \"\" {\n+\t\t// use the default system prompt for this model if one is not specified\n+\t\tp.System = m.System\n+\t}\n+\n \tvars := map[string]...
2023-12-08T19:20:19
huggingface/transformers
6efc1799c1d0665c41717c555f3551d974e4d61a
325810e7fccf8273599c58a525ae0011ea8ba3e6
[kernels] Fix XPU layernorm kernel (#41583) * fix * add comment * better fix * style * Update src/transformers/modeling_utils.py Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> --------- Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com>
[ { "path": "src/transformers/integrations/hub_kernels.py", "patch": "@@ -19,6 +19,7 @@\n \n from ..modeling_flash_attention_utils import lazy_import_flash_attention\n from ..utils import logging\n+from ..utils.import_utils import is_kernels_available\n from .flash_attention import flash_attention_forward\n \...
2025-11-04T15:59:07
denoland/deno
ec11e5416eaca5c3b3db3ff836a6398c427eb83a
409b1d4ffadcca8f67f2b424f49f8b67c4c0cfae
fix(ext/node): preserve streaming body on stale keepalive retry (#32215) Streaming writes (e.g. pipeline, node-fetch) bypass outputData and go directly to _bodyWriter, so they were lost when a stale keepalive connection triggered a retry. This caused timeouts for libraries like node-fetch and gaxios that use pipeline(...
[ { "path": "ext/node/polyfills/_http_outgoing.ts", "patch": "@@ -530,7 +530,13 @@ Object.defineProperties(\n }\n \n const { data, encoding, callback } = this.outputData.shift();\n- const ret = this._writeRaw(data, encoding, callback);\n+ this._flushingBuffer = true;\n+ let ret;\n+ ...
2026-02-18T13:03:10
ggml-org/llama.cpp
eeee367de51fb34d46c8103fc0ae827e84d94470
64fe17fbb84f493dbc33e4c13042953c4f5bfaeb
server: fix correct time_ms calculation in prompt_progress (#17093) * fix: correct time_ms calculation in send_partial_response The time_ms field was incorrectly calculated. The division was happening before the subtraction leading to incorrect values. Before: (ggml_time_us() - slot.t_start_process_prompt / 1000) Af...
[ { "path": "tools/server/README.md", "patch": "@@ -512,7 +512,7 @@ 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-11-08T13:12:11
vuejs/vue
41acdc0ff145653cf3a86a4f108fae3125ad291a
2f4ad14d9f010054178e3a02d0044e8ac8f5d5ce
fix v-html/v-text on root element
[ { "path": "src/server/optimizing-compiler/optimizer.js", "patch": "@@ -60,8 +60,7 @@ function walk (node: ASTNode, isRoot?: boolean) {\n }\n }\n if (node.ssrOptimizability == null ||\n- node.attrsMap['v-html'] ||\n- node.attrsMap['v-text']\n+ (!isRoot && (node.attrsMap['v-html']...
2017-05-18T08:07:49
huggingface/transformers
325810e7fccf8273599c58a525ae0011ea8ba3e6
9a19171fad3025f57fae72d8f3598f44b68102e5
add fuyu fast image processors (#41817) * added fast processor for fuyu (#36978) * updated docs for fuyu model (#36978) * updated test_image_processing and image_processing_fuyu_fast * updated fuyu.md and image_processing_fuyu_fast (#36978) * updated test_image_processing_fuyu (#36978) * formatted image_processi...
[ { "path": "docs/source/en/model_doc/fuyu.md", "patch": "@@ -75,11 +75,11 @@ A processor requires an image_processor and a tokenizer. Hence, inputs can be lo\n from PIL import Image\n from transformers import AutoTokenizer\n from transformers.models.fuyu.processing_fuyu import FuyuProcessor\n-from transforme...
2025-11-04T15:45:02
denoland/deno
409b1d4ffadcca8f67f2b424f49f8b67c4c0cfae
d590fb60f6e1f1069c392bf69ec55faaf9da160e
fix(audit): properly handle npm registries in subpaths (#32164) Fixes #32106
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -149,7 +149,7 @@ mod npm {\n npm_url: Url,\n body: serde_json::Value,\n ) -> Result<AuditResponse, AnyError> {\n- let url = npm_url.join(\"/-/npm/v1/security/audits\").unwrap();\n+ let url = npm_url.join(\"-/npm/v1/security/audits\").unwrap();\...
2026-02-18T13:01:11
vuejs/vue
24bde02e5b49aea5fb7d854e2df3af15f5e3d783
bdd3f5d05d851d44f0d4a0a6aaabf48e2481e918
fix ssrNode children normalization
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -57,8 +57,6 @@ function genSSRElement (el: ASTElement, state: CodegenState): string {\n return genSSRChildren(el, state) || 'void 0'\n }\n \n- // TODO optimize merge sibling nodes\n-\n switch (el.ssrOptimizability) {\n case opt...
2017-05-18T05:44:17
ggml-org/llama.cpp
d6fe40fa0040bf7207b2380d0f3628fb56d6a86f
e14e842e87103ec2a004770cec95a3f94f861bda
vulkan: Fix test-thread-safety crashes (#17024) The std::map pipeline_flash_attn_f32_f16 could be searched and inserted at the same time, which needs to hold the lock. To be safe, hold the lock for all of ggml_vk_load_shaders.
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -130,9 +130,9 @@ struct vk_pipeline_struct {\n // true if fields have been set by ggml_vk_create_pipeline\n bool initialized {};\n // set to true to request the pipeline is compiled\n- bool needed {};\n+ std::atomic<bool> neede...
2025-11-08T07:39:45
ollama/ollama
16c75484604a7f5f0acf50961fc026e04ddec464
f9b7d65e2b9253d358b0f4c5f12da67512dc4b5e
fix redundant newline
[ { "path": "cmd/cmd.go", "patch": "@@ -714,11 +714,11 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {\n \t\t\tcase MultilineSystem:\n \t\t\t\topts.System = prompt\n \t\t\t\tprompt = \"\"\n-\t\t\t\tfmt.Println(\"Set system template.\\n\")\n+\t\t\t\tfmt.Println(\"Set system templa...
2023-12-07T21:44:45
huggingface/transformers
9a19171fad3025f57fae72d8f3598f44b68102e5
26fca863126f6255a23eb47a2a77db938f87ef58
Add GLPNImageProcessorFast (#41725) * Add GLPNImageProcessorFast for torch backend * Address review feedback - Simplified to_dict() method - Keep tensors as torch instead of converting to numpy for heterogeneous shapes - Removed unnecessary shape guards in post_process_depth_estimation - Improved variable names (tg...
[ { "path": "docs/source/en/model_doc/glpn.md", "patch": "@@ -61,6 +61,11 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h\n [[autodoc]] GLPNImageProcessor\n - preprocess\n \n+## GLPNImageProcessorFast\n+\n+[[autodoc]] GLPNImageProcessorFast\n+ - preprocess\n+\n ## GLPN...
2025-11-04T15:44:52
denoland/deno
d590fb60f6e1f1069c392bf69ec55faaf9da160e
476f0d9e93f0abea761c95e92eda908abb85d802
fix(ext/node): add missing `process.constrainedMemory()` API (#32209) ## Summary - Extracts the cgroup v1/v2 parsing logic used by `process.constrainedMemory()` into a shared public `cgroup` module in `ext/node/ops/process.rs` - Reuses the shared parser from `cli/lib/worker.rs` (V8 heap limit configuration) instead o...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -155,6 +155,9 @@ pub fn create_isolate_create_params<TSys: DenoLibSys>(\n \n #[cfg(any(target_os = \"android\", target_os = \"linux\"))]\n mod linux {\n+ use deno_runtime::deno_node::ops::process::cgroup::CgroupVersion;\n+ use deno_runtime::deno_node::ops::proce...
2026-02-18T11:50:11
vuejs/vue
7cf1e654a6bf903b17fba12025bbf298ce0d2a6b
9fbca0dc792e94eb775a8f08694a04963dc20e07
fix root node optimizability
[ { "path": "src/server/optimizing-compiler/codegen.js", "patch": "@@ -99,7 +99,7 @@ function genStringElement (el, state, stringifyChildren) {\n const children = genSSRChildren(el, state, true)\n return `_ssrNode(${\n flattenSegments(elementToOpenTagSegments(el, state))\n- }\",\"${el.tag}\"$...
2017-05-17T08:41:22
ggml-org/llama.cpp
e14e842e87103ec2a004770cec95a3f94f861bda
647b960bd8017ee882d6633bc2e43e2ae82ee85c
CUDA: fix MMQ stream-k fixup ne1 indices (#17089)
[ { "path": "ggml/src/ggml-cuda/mmq.cuh", "patch": "@@ -3494,7 +3494,7 @@ static __global__ void mul_mat_q_stream_k_fixup(\n const int col_diff = col_high - col_low;\n \n for (int j = threadIdx.y*warp_size + threadIdx.x; j < mmq_x; j += nwarps*warp_size) {\n- ids_dst_shared[j] = ids_dst[col_low...
2025-11-08T07:26:18
ollama/ollama
97c569694570e099c835e3c78a805613ac0777f5
32f62fbb8e0b1ecb4ec8369586562abce86c8e50
fix base urls in chat examples
[ { "path": "docs/api.md", "patch": "@@ -291,6 +291,7 @@ curl http://localhost:11434/api/generate -d '{\n ```\n \n ## Send Chat Messages\n+\n ```shell\n POST /api/chat\n ```\n@@ -312,10 +313,11 @@ Advanced parameters (optional):\n ### Examples\n \n #### Request\n+\n Send a chat message with a streaming respon...
2023-12-06T20:10:20
huggingface/transformers
26fca863126f6255a23eb47a2a77db938f87ef58
900cf9d33bc091f3e47f8e598cba464f8b93bdd7
Fix default image_rows and image_cols initialization in Idefics3 and SmolVLM processors (#41871) * Fix default image_rows and image_cols initialization in Idefics3 and SmolVLM processors * Fix default initialization of image_rows and image_cols in Idefics3 and SmolVLM processors
[ { "path": "src/transformers/models/idefics3/processing_idefics3.py", "patch": "@@ -286,8 +286,8 @@ def __call__(\n f\"The number of images in the text {n_images_in_text} and images {n_images_in_images} should be the same.\"\n )\n \n- image_rows = in...
2025-11-04T15:42:47
denoland/deno
951455ed1774e275b20e223e4bf3e649f6fb76a2
f01347e771191b0aa486e9a057c981d933c3f861
fix(bundle): let esbuild handle data urls (#32213) Fixes #32206. Instead of resolving them (which forces us to load them), just let esbuild handle them
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -1235,6 +1235,9 @@ impl DenoPluginHandler {\n kind,\n with\n );\n+ if path.starts_with(\"data:\") {\n+ return Ok(None);\n+ }\n let mut resolve_dir = resolve_dir.unwrap_or(\"\").to_string();\n let resolver = self.resolver.cl...
2026-02-17T23:23:19
vuejs/vue
9fbca0dc792e94eb775a8f08694a04963dc20e07
5b58526a525f67ed7a3dffcaf38a51ab2affd357
remove unused, fix type
[ { "path": "flow/component.js", "patch": "@@ -1,6 +1,7 @@\n import type { Config } from '../src/core/config'\n import type VNode from '../src/core/vdom/vnode'\n import type Watcher from '../src/core/observer/watcher'\n+import type StringNode from '../src/server/optimizing-compiler/runtime-helpers'\n \n decla...
2017-05-17T06:40:06
ggml-org/llama.cpp
65156105069fa86a4a81b6cb0e8cb583f6420677
7956bb4d7f430f23f3c4726f7e6404b89f6e20a4
CUDA: fix should_use_mmvf for ne11 == 1 (#17085) * CUDA: fix should_use_mmvf for ne11 == 1 * Apply suggestion from @am17an Co-authored-by: Aman Gupta <amangupta052@gmail.com> --------- Co-authored-by: Aman Gupta <amangupta052@gmail.com>
[ { "path": "ggml/src/ggml-cuda/mmf.cu", "patch": "@@ -129,7 +129,13 @@ bool ggml_cuda_should_use_mmf(enum ggml_type type, int cc, int warp_size, const\n if (src0_ne[0] % (warp_size * (4/ts)) != 0) {\n return false;\n }\n- for (size_t i = 0; i < GGML_MAX_DIMS; ++i) {\n+\n+ if (src0_nb[0]...
2025-11-07T19:53:14
huggingface/transformers
900cf9d33bc091f3e47f8e598cba464f8b93bdd7
154d5101a4c1ad91153ece4dc233333f208ac754
Fix issue with from pretrained and kwargs in image processors (#41997) * accept kwargs in image proc from_pretrained * only use kwargs that are in cls.valid_kwargs * remove specific logic for _from_auto * add image_seq_length to Images_kwargs for backward compatibility * fix missing image kwargs in pix2struct
[ { "path": "src/transformers/image_processing_base.py", "patch": "@@ -362,25 +362,13 @@ def from_dict(cls, image_processor_dict: dict[str, Any], **kwargs):\n \"\"\"\n image_processor_dict = image_processor_dict.copy()\n return_unused_kwargs = kwargs.pop(\"return_unused_kwargs\", False...
2025-11-04T15:35:39
vuejs/vue
ebca266d10febb5ab5ca0cfbcd0dfbff2f2c2170
34bc14e7679e0d779ff361b7a42e900ad5043798
fix: prefetch should not have `as` attribute (#5683)
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -181,7 +181,7 @@ export default class TemplateRenderer {\n }\n return this.prefetchFiles.map(file => {\n if (!alreadyRendered(file)) {\n- return `<link rel=\"prefetch\" href=\"${this.publicPath}/${file}\" as=\"scrip...
2017-05-16T16:18:02
ggml-org/llama.cpp
aa374175c30184aeb1813ec71fc68780dd073906
5b180c3d60f3df61cd9955bc5c69e64537958f92
CUDA: fix crash on uneven context without FA (#16988)
[ { "path": "ggml/src/ggml-cuda/ggml-cuda.cu", "patch": "@@ -2113,7 +2113,7 @@ static bool ggml_cuda_should_fuse_mul_mat_vec_f(const ggml_tensor * tensor) {\n src1->type == GGML_TYPE_F32 && dst->type == GGML_TYPE_F32;\n \n const int cc = ggml_cuda_info().devices[ggml_cuda_get_device()].cc;\n-...
2025-11-06T13:05:47
denoland/deno
f01347e771191b0aa486e9a057c981d933c3f861
3550a052e718bac916576fb91ec83d559cf915b7
ci: fix release rebuilding on prs (#32210)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -769,8 +769,8 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n sysRootStep,\n )(\n {\n+ // do this on PRs as well as main so that PRs can use the cargo build cache from main\n nam...
2026-02-17T21:10:17
ollama/ollama
38fe1a368bc96b127c02ca40634282a75ada58b2
00d06619a11356a155362013b8fc0bc9d0d8a146
fix: trim space in modelfile fields
[ { "path": "parser/parser.go", "patch": "@@ -37,10 +37,13 @@ func Parse(reader io.Reader) ([]Command, error) {\n \t\tswitch string(bytes.ToUpper(fields[0])) {\n \t\tcase \"FROM\":\n \t\t\tcommand.Name = \"model\"\n-\t\t\tcommand.Args = string(fields[1])\n+\t\t\tcommand.Args = string(bytes.TrimSpace(fields[1]...
2023-12-05T19:57:21
ggml-org/llama.cpp
5b180c3d60f3df61cd9955bc5c69e64537958f92
b7f9010d24766792d8887c227a883ed3b315d2be
metal : initial Metal4 tensor API support (#16634) * metal : rework mat-mat multiplication * metal : initial Metal4 support * cont * metal : detect tensor support * cont : better ifdefs * metal : support tensors in mul_mm_id * metal : add env for disabling tensor API * tests : restore * metal : remove unused c...
[ { "path": "ggml/src/ggml-metal/ggml-metal-context.m", "patch": "@@ -35,7 +35,6 @@\n // additional, inference-time compiled pipelines\n ggml_metal_pipelines_t pipelines_ext;\n \n- bool use_bfloat;\n bool use_fusion;\n bool use_concurrency;\n bool use_graph_optimize;\n@@ -121,11 +120,10...
2025-11-06T12:45:10
huggingface/transformers
154d5101a4c1ad91153ece4dc233333f208ac754
e3d4fa692ea3a6b844a28ddc100a418a32e72130
add back `logging_dir` (#42013) * add back * Apply style fixes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
[ { "path": "src/transformers/training_args.py", "patch": "@@ -885,6 +885,12 @@ class TrainingArguments:\n )\n },\n )\n+ logging_dir: Optional[str] = field(\n+ default=None,\n+ metadata={\n+ \"help\": \"Deprecated and will be removed in v5.2. Set env var `TE...
2025-11-04T15:22:58
vuejs/vue
3cda98a541cd2c84847a9c53a7b38fccf1329a11
0b2f11036d86f1242370726fec230db77a49d95e
Added picture to isHTMLTag map (#5675) This change will make sure the below error is not seen while unit testing components using <picture> in their template. [Vue warn]: Unknown custom element: <picture> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -11,7 +11,7 @@ export const namespaceMap = {\n export const isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n- 'div,dd,dl,dt,figcaption,figur...
2017-05-16T01:21:54
denoland/deno
3550a052e718bac916576fb91ec83d559cf915b7
ac8f443b94a288fb6d0ea6503d9135933ff50644
fix(ext/node): improve process event handling and add missing APIs (#32200) ## Summary - Freeze `process.config` and its nested objects for Node.js compatibility (immutability) - Add `process.availableMemory()` using `Deno.systemMemoryInfo().available` - Fix `process.on/off/emit/prependListener` to handle Symbol even...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -346,6 +346,10 @@ memoryUsage.rss = function (): number {\n return memoryUsage().rss;\n };\n \n+export function availableMemory(): number {\n+ return Deno.systemMemoryInfo().available;\n+}\n+\n // Returns a negative error code than can be recognized...
2026-02-17T19:30:22
ollama/ollama
00d06619a11356a155362013b8fc0bc9d0d8a146
f1ef3f9947ecf0a63cd7544d3c2d26c2ff5e0915
Revert "chat api (#991)" while context variable is fixed This reverts commit 7a0899d62dee8a55810446dd7655b9e682ddf8ac.
[ { "path": "api/client.go", "patch": "@@ -221,19 +221,6 @@ func (c *Client) Generate(ctx context.Context, req *GenerateRequest, fn Generate\n \t})\n }\n \n-type ChatResponseFunc func(ChatResponse) error\n-\n-func (c *Client) Chat(ctx context.Context, req *ChatRequest, fn ChatResponseFunc) error {\n-\treturn ...
2023-12-05T05:16:27
ggml-org/llama.cpp
4882f0ff786088871b3ab3abd9e525a4213ee218
9d7c518d642db8657e2a53a9793c5f039ed8ea5a
clip: implement minicpm-v sinusoidal embd using GGML (#17036) * clip: implement minicpm-v sinusoidal embd using GGML * fix repeat op
[ { "path": "tools/mtmd/clip.cpp", "patch": "@@ -1083,16 +1083,24 @@ struct clip_graph {\n }\n \n ggml_cgraph * build_minicpmv() {\n- const int batch_size = 1;\n-\n GGML_ASSERT(model.class_embedding == nullptr);\n- const int n_pos = n_patches;\n+ const int n_pos = n_...
2025-11-06T10:02:54
huggingface/transformers
e3d4fa692ea3a6b844a28ddc100a418a32e72130
dd4e048e75d61512a92faba59d7651aad1ce9519
Fix continuous batching tests (#42012) * Fix continuous batching tests * make fixup
[ { "path": "tests/generation/test_continuous_batching.py", "patch": "@@ -350,9 +350,9 @@ def test_streaming_request(self) -> None:\n \n messages = [{\"content\": \"What is the Transformers library known for?\", \"role\": \"user\"}]\n \n- inputs = tokenizer.apply_chat_template(messages, return_...
2025-11-04T15:10:35
denoland/deno
7659f3c7d7e06220cf835865fa7e96558dfa4927
a8f201f9e8552bd5ea0823ec6454ce251fedb48f
fix(ext/node): normalize trailing dot in TLS servername (#32166) Fixes #30170 Node.js strips trailing dots from FQDN server names before TLS certificate verification, but Deno was passing the servername with the trailing dot directly to rustls. This caused certificate validation failures when connecting with a traili...
[ { "path": "ext/node/polyfills/_tls_wrap.js", "patch": "@@ -86,8 +86,14 @@ export class TLSSocket extends net.Socket {\n constructor(socket, opts = kEmptyObject) {\n const tlsOptions = { ...opts };\n \n- const hostname = opts.servername ?? opts.host ?? socket?._host ??\n+ let hostname = opts.serv...
2026-02-17T12:22:50
vuejs/vue
7694c855642d6765f9ebfe925d9a73ba8198b183
da1db7af31b397eab1608217d1f6dee26f753a59
fix static tree optimization for v-else(-if) conditions
[ { "path": "src/compiler/optimizer.js", "patch": "@@ -55,6 +55,15 @@ function markStatic (node: ASTNode) {\n node.static = false\n }\n }\n+ if (node.ifConditions) {\n+ for (let i = 1, l = node.ifConditions.length; i < l; i++) {\n+ const block = node.ifConditions[i].block\n+ ...
2017-05-15T04:05:19
ggml-org/llama.cpp
9d7c518d642db8657e2a53a9793c5f039ed8ea5a
22c8c3c6ad8d6239c366ce3a84ace8b0ac59ef88
sycl: add CONCAT operator support (#16047) * sycl: add CONCAT operator support * cleanup: remove stray lines added by mistake * fix: code format issues in concat.cpp and tests/test-backend-ops.cpp * chore: fix editorconfig violations * cleanup: drop unnecessary i16 type support * docs: update sycl-csv and regener...
[ { "path": "docs/ops.md", "patch": "@@ -24,7 +24,7 @@ Legend:\n | ARGSORT | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |\n | CEIL | ❌ | ❌ | ✅ | 🟡 | ❌ | ❌ | ✅ | ❌ | ❌ |\n | CLAMP | ❌ | ✅ | ✅ | ✅ | 🟡 | 🟡 | ✅ | 🟡 | ❌ |\n-| ...
2025-11-06T10:02:33
ollama/ollama
70a93057cdfcc660684db556d2044c9497651778
b2816bca67ae5e47f1c285c5ee72929769932585
refactor layer creation previous layer creation was not ideal because: 1. it required reading the input file multiple times, once to calculate the sha256 checksum, another to write it to disk, and potentially one more to decode the underlying gguf 2. used io.ReadSeeker which is prone to user error. if the file ...
[ { "path": "server/images.go", "patch": "@@ -19,8 +19,6 @@ import (\n \t\"strings\"\n \t\"text/template\"\n \n-\t\"golang.org/x/exp/slices\"\n-\n \t\"github.com/jmorganca/ollama/api\"\n \t\"github.com/jmorganca/ollama/llm\"\n \t\"github.com/jmorganca/ollama/parser\"\n@@ -128,22 +126,10 @@ func (m *Model) Cha...
2023-11-22T21:28:49
huggingface/transformers
6ff4fabd9d1d02b8de1a0019e0dc48af09da5de4
6d4450e341da386c47ebfd4f37374693d2788257
Correct syntax error in trainer.md (#42001) A comma is missing between two parameters in the signature of compute_loss function.
[ { "path": "docs/source/en/trainer.md", "patch": "@@ -187,7 +187,7 @@ from torch import nn\n from transformers import Trainer\n \n class CustomTrainer(Trainer):\n- def compute_loss(self, model: nn.Module, inputs: dict[str, Union[torch.Tensor, Any]], return_outputs: bool = False num_items_in_batch: Optiona...
2025-11-04T12:36:54
vuejs/vue
0b2f11036d86f1242370726fec230db77a49d95e
d6bd667e1a984378cf27d688f69b02a1f7332482
fix typo (#5667)
[ { "path": "packages/vue-server-renderer/README.md", "patch": "@@ -4,5 +4,5 @@\n \n This package offers Node.js server-side rendering for Vue 2.0.\n \n-- [API Reference](ssr.vuejs.org/en/api.html)\n+- [API Reference](https://ssr.vuejs.org/en/api.html)\n - [Vue.js Server-Side Rendering Guide](https://ssr.vuej...
2017-05-14T03:53:12
denoland/deno
a8f201f9e8552bd5ea0823ec6454ce251fedb48f
cd14853b7f67821df990eec8d43a4c772b5019bb
fix(ext/node): use primordials in ext/node/polyfills/_fs/_fs_lchown.ts (#32195) Towards #24236 Use primordials in `ext/node/polyfills/_fs/_fs_lchown.ts`. Changes: - Remove `prefer-primordials` lint ignore directive - Use `getValidatedPathToString` instead of `getValidatedPath().toString()` - Use `PromisePrototypeThe...
[ { "path": "ext/node/polyfills/_fs/_fs_lchown.ts", "patch": "@@ -1,20 +1,20 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import {\n type CallbackWithError,\n makeCallba...
2026-02-17T10:39:50
ggml-org/llama.cpp
a44d77126c911d105f7f800c17da21b2a5b112d1
5886f4f545591dafbbd9d6117a46d7399ce13bfa
vulkan: Fix GGML_VULKAN_CHECK_RESULTS to better handle fusion (#16919)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -14104,30 +14104,18 @@ size_t comp_size;\n size_t comp_nb[GGML_MAX_DIMS];\n size_t check_counter = 0;\n static void ggml_vk_check_results_0(ggml_backend_vk_context * ctx, ggml_cgraph * cgraph, int tensor_idx) {\n- ggml_tensor * tensor = cgrap...
2025-11-05T18:51:03
huggingface/transformers
6d4450e341da386c47ebfd4f37374693d2788257
aee5c2384a176e110377af6259c799ea8cc29696
Fix `torch+deepspeed` docker file (#41985) * fix * delete --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/build-docker-images.yml", "patch": "@@ -97,7 +97,7 @@ jobs:\n latest-torch-deepspeed-docker:\n name: \"Latest PyTorch + DeepSpeed\"\n runs-on:\n- group: aws-g4dn-2xlarge-cache\n+ group: aws-general-8-plus\n steps:\n -\n name: Set up Docker B...
2025-11-04T10:41:22
denoland/deno
cd14853b7f67821df990eec8d43a4c772b5019bb
bdbe8bea09dd02712c03db0c28d244dad604cb44
ci: fix mtime cache for node types (#32205) The CI was rebuilding due to the node types directory being watched and the mtimes cache not working with directories.
[ { "path": "cli/build.rs", "patch": "@@ -155,8 +155,6 @@ fn process_node_types(out_dir: &Path) {\n Ok(())\n }\n \n- println!(\"cargo:rerun-if-changed={}\", node_dir.display());\n-\n let mut paths = Vec::new();\n visit_dirs(&node_dir, &mut |path| {\n paths.push(path.to_path_buf());\n@@ -166,6 +...
2026-02-17T04:47:47
ggml-org/llama.cpp
13b339bcd91de64d59512f308f6f69eaca688103
2f0c2db43e2adfa9ffbdfa1176b3b6bd9c9ed536
server : do not default to multiple slots with speculative decoding (#17017) * server : do not default to multiple slots with speculative decoding * cont : fix
[ { "path": "common/common.h", "patch": "@@ -507,6 +507,10 @@ struct common_params {\n // return false from callback to abort model loading or true to continue\n llama_progress_callback load_progress_callback = NULL;\n void * load_progress_callback_user_data = NULL;\n+\n+ bool ...
2025-11-05T12:32:55
ollama/ollama
95cb38ae474848f5c5787916344a96def8c7ce81
1f126afb2d5c742e5534a10d4d518b74ea1f2bf7
install: fix rocky kernel packages
[ { "path": "scripts/install.sh", "patch": "@@ -217,7 +217,7 @@ fi\n \n if ! check_gpu nvidia-smi || [ -z \"$(nvidia-smi | grep -o \"CUDA Version: [0-9]*\\.[0-9]*\")\" ]; then\n case $OS_NAME in\n-\tcentos|rhel) install_cuda_driver_yum 'rhel' $(echo $OS_VERSION | cut -d '.' -f 1) ;;\n+ centos|rhel)...
2023-12-02T00:18:21
vuejs/vue
38759a695779b74065947f2cc3e0c010d50c2c6c
8d54aecdd04202d39659a7625eef846673064ab3
fix test case in IE
[ { "path": "test/unit/modules/vdom/create-element.spec.js", "patch": "@@ -170,12 +170,12 @@ describe('create-element', () => {\n return h('div', [[...list, input]])\n }\n }).$mount()\n- expect(vm.$el.innerHTML).toBe('<span>0</span><input value=\"a\" type=\"text\">')\n+ expect(vm.$el.i...
2017-05-09T16:37:41
huggingface/transformers
aee5c2384a176e110377af6259c799ea8cc29696
5b6c209bc5a19b80c866279ee0c8e124ff7e4e49
DOC Fix typo in argument name: pseudoquant (#41994) The correct argument name is pseudoquantization. Since there is no error on passing wrong arguments name (which is arguably an anti-pattern), this is difficult for users to debug.
[ { "path": "docs/source/en/quantization/fp_quant.md", "patch": "@@ -40,7 +40,7 @@ You can choose between MXFP4 and NVFP4 with `FPQuantConfig(forward_dtype=\"mxfp4\"\n \n A **Blackwell-generation GPU is required** to run the kernels. Runtime support for FP-Quant is implemented through the [QuTLASS](https://gi...
2025-11-04T09:48:39
denoland/deno
25b79aab0267bbff2889c5ba1a9ba2f8112e1a95
8012d48ec911d2e8619a3530008496d06da01dc1
fix(node/http): preserve request body on stale keepalive retry (#32148) Closes https://github.com/denoland/deno/issues/32006 When a reused keepAlive socket goes stale, the retry logic was not re-sending the request body for POST/PUT/PATCH requests. The body data in outputData was consumed by _flushBuffer() before the...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -572,6 +572,11 @@ class ClientRequest extends OutgoingMessage {\n this._bodyWriteRid,\n baseConnRid,\n );\n+ // Save body data before flushing so it can be restored if\n+ // a stale keepAlive socket fails during t...
2026-02-16T19:26:51
ggml-org/llama.cpp
9f052478c2c38ec10cb378109b110a1f7033ce11
03ea04175da3cdd7fd8cc1835f33490e3483928a
model : add openPangu-Embedded (#16941) * Model: add openPangu-Embedded * fixed according to reviewer's comments * fixed the chat template check condition * Apply suggestions from code review change the chat-template check condition and some formatting issue Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@s...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -7187,6 +7187,42 @@ 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(\"PanguEmbeddedForCausalLM\")\n+class PanguEmbeddedModel(TextModel):\n+ ...
2025-11-05T09:28:58
vuejs/vue
8d54aecdd04202d39659a7625eef846673064ab3
3139605bb10fed0a0219e31a2117c533e31fe773
async components: timeout should not trigger if already resolved (fix #5635)
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -97,11 +97,13 @@ export function resolveAsyncComponent (\n \n if (isDef(res.timeout)) {\n setTimeout(() => {\n- reject(\n- process.env.NODE_ENV !== 'production'\n- ? `timeout (...
2017-05-09T15:35:09
huggingface/transformers
258c76e4dc00953c67bde7900602586fb8754006
64397a830188a35b5e9056036e13bb6ccfe434d8
Fix `run slow v2`: empty report when there is only one model (#42002) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-scheduled.yml", "patch": "@@ -102,8 +102,10 @@ jobs:\n working-directory: /transformers/tests\n run: |\n if [ \"${{ inputs.job }}\" = \"run_models_gpu\" ]; then\n- echo \"folder_slices=$(python3 ../utils/split_model_tests.py --subdirs '$...
2025-11-04T05:46:21
ollama/ollama
bb80a597dbb3dcdcb8465d7813aa4fe3905a4be2
6681d378617fa83da16861c06f8439304b1188f8
Fix adapter loading from SHA hash
[ { "path": "server/images.go", "patch": "@@ -375,6 +375,15 @@ func CreateModel(ctx context.Context, name, modelFileDir string, commands []pars\n \t\t\tlayer.MediaType = mediatype\n \t\t\tlayers = append(layers, layer)\n \t\tcase \"adapter\":\n+\t\t\tif strings.HasPrefix(c.Args, \"@\") {\n+\t\t\t\tblobPath, e...
2023-12-01T18:50:55