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 | bdee0889714e9cb3e53d3b1b2a626919479d356c | 07bfd2f8ecd0776591b3c051a061fbfd81848052 | [`Attn Masks`] Lift bidirectional mask restriction on eager (#42325)
* remove restriction
* fix
* add test and refactor tests
* style
* add docstring | [
{
"path": "src/transformers/masking_utils.py",
"patch": "@@ -340,9 +340,6 @@ def sdpa_mask(\n allow_is_causal_skip (`bool`, optional):\n Whether to allow to return `None` for the mask under conditions where we can use the `is_causal` argument in\n `torch.sdpa` instead. Defaul... | 2025-11-21T17:51:08 |
ggml-org/llama.cpp | 7ca5991d2b7238ab04bc3dca9c2a9b92f4548238 | b3e3060f4e20030438d6281035abf7d624f728c7 | ggml webgpu: add support for emscripten builds (#17184)
* Faster tensors (#8)
Add fast matrix and matrix/vector multiplication.
* Use map for shader replacements instead of pair of strings
* Wasm (#9)
* webgpu : fix build on emscripten
* more debugging stuff
* test-backend-ops: force single thread on wasm
* fix... | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -547,6 +547,46 @@ jobs:\n # This is using llvmpipe and runs slower than other backends\n ctest -L main --verbose --timeout 3600\n \n+ ubuntu-24-wasm-webgpu:\n+ runs-on: ubuntu-24.04\n+\n+ steps:\n+ - name: Clone\n+ ... | 2025-12-03T09:25:34 |
vuejs/vue | 6ad44e13e990951ff152a0fd7042613c5a87f1c0 | baabd6d14016c730fe40a4202ae9b8f75e80041c | fix(ref): preserve ref on components after removing root element (#6718)
fix #6632, #6641 | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -697,6 +697,8 @@ export function createPatchFunction (backend) {\n insert.fns[i]()\n }\n }\n+ } else {\n+ registerRef(ancestor)\n }\n ancestor = ancestor.parent\n ... | 2017-10-03T22:04:23 |
denoland/deno | c76ab60e5b8068bd5457da5033145792e13a6154 | 124de8b54f2675732346da76a577fbb061ba8d65 | chore: upgrade rustyline to 17.0 and nix to 0.30 (#32344)
Upgrade rustyline to v17.0.0 (with custom-bindings feature)
and rustyline-derive to v0.11.1. Upgrade nix to v0.30.1 to align
with rustyline 17's dependency.
API changes:
- highlight_char: bool → CmdKind parameter
- set_keyseq_timeout: i32 → Option<i32>
- Readl... | [
{
"path": "Cargo.lock",
"patch": "@@ -1708,7 +1708,7 @@ dependencies = [\n \"malva\",\n \"markup_fmt\",\n \"memchr\",\n- \"nix 0.27.1\",\n+ \"nix 0.30.1\",\n \"node_resolver\",\n \"node_shim\",\n \"notify\",\n@@ -2184,7 +2184,7 @@ dependencies = [\n \"filetime\",\n \"junction\",\n \"libc\",\n- \"ni... | 2026-02-26T21:22:57 |
huggingface/transformers | 07bfd2f8ecd0776591b3c051a061fbfd81848052 | 9162e190da31c2ee9aec81f052dbeb5fced72b24 | [XPU] Add flash_attn2 support for XPU (#41956)
* Add flash_attention_2 and kernels-community/flash-attn support for XPU
* Add flash-attn-2 support for XPU
* Delete deterministic algorithm for xpu
* Fix code style
* Modify repo_id to match the latest kernels-community/flash-attn2
* Fix code style
* Update
* Make... | [
{
"path": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -24,6 +24,7 @@\n is_flash_attn_3_available,\n is_flash_attn_greater_or_equal_2_10,\n is_torch_npu_available,\n+ is_torch_xpu_available,\n logging,\n )\n \n@@ -45,7 +46,12 @@ def flash_attn_supports_top_left_mask(... | 2025-11-21T16:43:48 |
ggml-org/llama.cpp | a96283adc4295f1e4585a2795f0338deb444e057 | 4eba8d945163ff7523a302b438129fb6c1e22f6e | mtmd: fix --no-warmup (#17695) | [
{
"path": "common/arg.cpp",
"patch": "@@ -1226,7 +1226,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n [](common_params & params) {\n params.warmup = false;\n }\n- ).set_examples({LLAMA_EXAMPLE_MAIN, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_E... | 2025-12-02T21:48:08 |
ollama/ollama | caf2b13c10f912bef00dbab98cb1ed232aa5854c | 1d263449ff4926448e95f9656a6db740b5483481 | Fix infinite keep_alive (#2480) | [
{
"path": "api/types.go",
"patch": "@@ -415,8 +415,7 @@ func (d *Duration) UnmarshalJSON(b []byte) (err error) {\n \tswitch t := v.(type) {\n \tcase float64:\n \t\tif t < 0 {\n-\t\t\tt = math.MaxFloat64\n-\t\t\td.Duration = time.Duration(t)\n+\t\t\td.Duration = time.Duration(math.MaxInt64)\n \t\t} else {\n ... | 2024-02-13T23:40:32 |
vuejs/vue | baabd6d14016c730fe40a4202ae9b8f75e80041c | c5d0fa0503631b53338e5255bc8640da4b2fd4cb | fix(compiler): warn when inline-template component has no children (fix #6703) (#6715) | [
{
"path": "src/compiler/codegen/index.js",
"patch": "@@ -309,7 +309,7 @@ function genDirectives (el: ASTElement, state: CodegenState): string | void {\n function genInlineTemplate (el: ASTElement, state: CodegenState): ?string {\n const ast = el.children[0]\n if (process.env.NODE_ENV !== 'production' &&... | 2017-10-03T22:00:52 |
ggml-org/llama.cpp | 4eba8d945163ff7523a302b438129fb6c1e22f6e | 61bde8e21f4a1f9a98c9205831ca3e55457b4c78 | ci : RVV1.0 builds with tests (#16682)
* Added RISC-V supported tests
* Added default value for LLAMA_FATAL_WARNINGS and option to specify by user
* Added RISC-V supported tests
* Added default value for LLAMA_FATAL_WARNINGS and option to specify by user
* Removed apt prompt
* Added RISC-V specific tests with cor... | [
{
"path": ".github/workflows/build-riscv-native.yml",
"patch": "@@ -1,120 +0,0 @@\n-name: Build on RISCV Linux Machine by Cloud-V\n-on:\n- pull_request:\n- workflow_dispatch:\n- workflow_call:\n-\n-jobs:\n- debian-13-riscv64-native: # Bianbu 2.2\n- runs-on: [self-hosted, RISCV64]\n-\n- steps:\n- ... | 2025-12-02T20:46:10 |
denoland/deno | 124de8b54f2675732346da76a577fbb061ba8d65 | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | fix(lsp): tsgo typings for bytes/text imports (#32333) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -42,6 +42,7 @@ use node_resolver::NodeResolutionKind;\n use node_resolver::ResolutionMode;\n use node_resolver::cache::NodeResolutionThreadLocalCache;\n use once_cell::sync::Lazy;\n+use percent_encoding::percent_decode_str;\n use serde::Serialize;\n use tower_l... | 2026-02-26T20:42:01 |
ollama/ollama | 48a273f80ba1f0fc7a5ed8881c0dc14fc664ea4e | 939c60473f6f8783e31a055c2847caa6099f3e2c | Fix issues with templating prompt in chat mode (#2460) | [
{
"path": "docs/modelfile.md",
"patch": "@@ -86,7 +86,7 @@ There are two ways to view `Modelfile`s underlying the models in [ollama.com/lib\n # FROM llama2:13b\n \n FROM /root/.ollama/models/blobs/sha256:123abc\n- TEMPLATE \"\"\"[INST] {{ if and .First .System }}<<SYS>>{{ .System }}<</SYS>>\n+ TEMPLAT... | 2024-02-12T23:06:57 |
huggingface/transformers | ce7a5e0066e8b789e7ad7a8b6fdc12993cbe0f72 | f15b95e67c89a9f62df40ed0caff8f08f0ddd496 | Correctly create tied key mapping in post_init, and dynamic tie weight (#42270)
* add dynamic
* improve
* doc
* true dynamic
* everywhere
* improve
* fix
* more
* small fix
* small fix
* fix duplicates
* fix
* doc
* fix
* improve doc
* comment
* more doc
* style | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -1297,11 +1297,8 @@ def post_init(self):\n # Attach the different parallel plans and tied weight keys to the top-most model, so that everything is\n # easily available\n self._tp_plan, self._ep_plan, self._pp_plan = {}, {},... | 2025-11-21T16:02:50 |
vuejs/vue | cf3be87b68260d9d7e9f3480d9aefeb8bad69e2e | c64f9ae1649175ee8cac1c7ecf3283897c948202 | refactor: improve error msg for non-reactive properties (#6735)
close #6657 | [
{
"path": "src/core/instance/proxy.js",
"patch": "@@ -15,9 +15,11 @@ if (process.env.NODE_ENV !== 'production') {\n \n const warnNonPresent = (target, key) => {\n warn(\n- `Property or method \"${key}\" is not defined on the instance but ` +\n- `referenced during render. Make sure to declare... | 2017-10-03T15:45:38 |
ggml-org/llama.cpp | c4357dcc35ba3dc6bab1c9db4f49630d261a4353 | e148380c7cb92f10dabff939ebfa567dcdadbde0 | Server: Change Invalid Schema from Server Error (500) to User Error (400) (#17572)
* Make invalid schema a user error (400)
* Move invalid_argument exception handler to ex_wrapper
* Fix test
* Simplify test back to original pattern | [
{
"path": "common/chat.cpp",
"patch": "@@ -163,7 +163,7 @@ common_chat_tool_choice common_chat_tool_choice_parse_oaicompat(const std::strin\n if (tool_choice == \"required\") {\n return COMMON_CHAT_TOOL_CHOICE_REQUIRED;\n }\n- throw std::runtime_error(\"Invalid tool_choice: \" + tool_choi... | 2025-12-02T16:33:50 |
ollama/ollama | a0a199b108e1ae241df357c9b989fd27e0bd19d9 | ab0d37fde489510f49b927139379d46d64dc39e1 | Fix hanging issue when sending empty content (#2399) | [
{
"path": "server/images.go",
"patch": "@@ -181,16 +181,19 @@ func (m *Model) ChatPrompts(msgs []api.Message) (*ChatHistory, error) {\n \t\t\t}\n \n \t\t\tcurrentVars.Prompt = msg.Content\n-\t\t\tfor i := range msg.Images {\n-\t\t\t\tid := len(images) + i\n-\t\t\t\tcurrentVars.Prompt += fmt.Sprintf(\" [img-... | 2024-02-08T00:30:33 |
denoland/deno | e224b7e166c2edd26b7b4d2c47480fb3e2c5868b | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | fix(install): do not panic if lockfile incorrectly says package has a bin (#32345)
Confirmed added test panics before this PR, passes after | [
{
"path": "libs/npm_installer/bin_entries.rs",
"patch": "@@ -81,10 +81,14 @@ impl<'a, TSys: SetupBinEntrySys> BinEntries<'a, TSys> {\n extra: &'b NpmPackageExtraInfo,\n package_path: PathBuf,\n ) {\n+ let Some(bin) = extra.bin.as_ref() else {\n+ // likely lockfile incorrectly said that the... | 2026-02-26T20:15:10 |
huggingface/transformers | 923cebd2845f339ffb04b614275e807dd6b0b0a8 | 7e0ea6997411f2633712cec5c475b791efe69785 | Fix gpt2 modeling tests (#42321)
* fix gpt2 modeling tests
* use Expectations
* ruff format | [
{
"path": "tests/models/gpt2/test_modeling_gpt2.py",
"patch": "@@ -171,6 +171,7 @@ class GPT2ModelTest(CausalLMModelTest, unittest.TestCase):\n )\n test_missing_keys = False\n model_tester_class = GPT2ModelTester\n+ model_split_percents = [0.5, 0.6, 0.7]\n \n def _prepare_for_class(self, ... | 2025-11-21T13:51:32 |
vuejs/vue | c64f9ae1649175ee8cac1c7ecf3283897c948202 | a5e5b31455e0d64f834dd691b7488e0e105d32c3 | fix: properly render value on <progress> in IE/Edge
fix #6666 | [
{
"path": "src/platforms/web/runtime/modules/attrs.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isIE9 } from 'core/util/env'\n+import { isIE9, isEdge } from 'core/util/env'\n \n import {\n extend,\n@@ -42,8 +42,9 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n ... | 2017-10-03T04:02:27 |
ggml-org/llama.cpp | f3a9674ae896972154ec110b0c3da03438196189 | 2c453c6c7786df267b3ae6fd5019eee126a35a29 | llama : fix signed comparison warning on FreeBSD (#17497)
This ensures correct RLIM_INFINITY handling and compatibility on all platforms (32/64-bit).
warning: comparison of integers of different signs: 'rlim_t' (aka 'long') and 'size_t' (aka 'unsigned long') [-Wsign-compare]
488 | if (suggest && (lo... | [
{
"path": "src/llama-mmap.cpp",
"patch": "@@ -485,7 +485,7 @@ struct llama_mlock::impl {\n if (suggest && getrlimit(RLIMIT_MEMLOCK, &lock_limit)) {\n suggest = false;\n }\n- if (suggest && (lock_limit.rlim_max > lock_limit.rlim_cur + size)) {\n+ if (suggest && ((uin... | 2025-12-02T11:05:38 |
denoland/deno | f6cedf7dcc2e1bec8640c44a122abfa8bfc6b8c5 | dca6b1a9ed2561ff5300aaa47437b4910646e44b | fix(install): global install should not warn about using node_modules dir for npm specifiers (#32341) | [
{
"path": "cli/args/mod.rs",
"patch": "@@ -1184,6 +1184,9 @@ impl CliOptions {\n .first()\n .and_then(|url| file_to_url(url))\n .map(|url| vec![url]),\n+ DenoSubcommand::Install(InstallFlags::Local(\n+ InstallFlagsLocal::Entrypoints(flags),\n+ )) => Some(... | 2026-02-26T17:01:30 |
huggingface/transformers | 7e0ea6997411f2633712cec5c475b791efe69785 | afdc40dbb5a1a8bfb687c3ae49565c53c74c0c8f | HF Trainer: ALST/Ulysses sequence parallelism integration via HF Accelerate (#41832)
* HF Trainer: ALST/Ulysses sequence parallelism integration via HF Accelerate
Signed-off-by: Stas Bekman <stas.bekman@snowflake.com>
* make it work + tests
Signed-off-by: Stas Bekman <stas.bekman@snowflake.com>
* cleanup
Signed-o... | [
{
"path": "docs/source/en/deepspeed.md",
"patch": "@@ -368,6 +368,108 @@ The example ZeRO-3 and ZeRO-Infinity config below sets most of the parameter val\n }\n ```\n \n+### Sequence Parallelism\n+\n+DeepSpeed's ALST/Ulysses sequence parallelism enables training with very long sequences by splitting the sequ... | 2025-11-21T13:19:42 |
vuejs/vue | cf1ff5b0dc3d15c1e16821cb5e4fc984c74f07c1 | 894d380e40d213771285ffdbee8f0305cbc15bd8 | fix: use correct ns inside <foreignObject> as root node
fix #6642 | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -122,17 +122,18 @@ export function _createElement (\n }\n }\n \n-function applyNS (vnode, ns) {\n+function applyNS (vnode, ns, force) {\n vnode.ns = ns\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n... | 2017-10-02T21:35:47 |
ggml-org/llama.cpp | 2c453c6c7786df267b3ae6fd5019eee126a35a29 | 5d6bd842ead1fa8c67da078e503381bc012cd6ee | convert: add error message for mistral3 quantized weight (#17686) | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -2842,6 +2842,10 @@ def set_gguf_parameters(self):\n self.gguf_writer.add_attn_temperature_scale(rope_params[\"llama_4_scaling_beta\"])\n \n def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None):\n+ # TODO: probably no... | 2025-12-02T10:48:31 |
ollama/ollama | e805ac1d59977725547ed57ee3f166c2d41d4185 | b9229ffca577ca0360706770a077de2ac519e0c3 | fix response on token error | [
{
"path": "server/auth.go",
"patch": "@@ -111,8 +111,14 @@ func getAuthToken(ctx context.Context, redirData AuthRedirect) (string, error) {\n \tdefer resp.Body.Close()\n \n \tif resp.StatusCode >= http.StatusBadRequest {\n-\t\tbody, _ := io.ReadAll(resp.Body)\n-\t\treturn \"\", fmt.Errorf(\"on pull registry... | 2024-02-07T19:00:06 |
denoland/deno | dca6b1a9ed2561ff5300aaa47437b4910646e44b | 126b6fb5da78621cdbbd9465a805f415e9fdb794 | Revert "fix(ext/node): implement `after`, `afterEach`, `before`, and … (#32340)
…`beforeEach` of `node:test` (#32320)"
This reverts commit 9612761ee60df178b418ca756c181ff0757483dd.
The tests from this commit are flaky and failing on `main`. | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,8 +21,6 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n-type HookFn = () => void | Promise<void>;\n-\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -63,3... | 2026-02-26T16:35:15 |
ggml-org/llama.cpp | 5d6bd842ead1fa8c67da078e503381bc012cd6ee | fd3abe849ee49ba199c62333e1c4bdb0badd6ebc | server: remove default "gpt-3.5-turbo" model name (#17668)
* server: remove default "gpt-3.5-turbo" model name
* do not reflect back model name from request
* fix test | [
{
"path": "tools/server/server-common.cpp",
"patch": "@@ -1263,7 +1263,11 @@ json convert_anthropic_to_oai(const json & body) {\n return oai_body;\n }\n \n-json format_embeddings_response_oaicompat(const json & request, const json & embeddings, bool use_base64) {\n+json format_embeddings_response_oaicom... | 2025-12-02T10:38:57 |
huggingface/transformers | afdc40dbb5a1a8bfb687c3ae49565c53c74c0c8f | 4799952dca3383e577a686ca5feb25b90399d7a3 | Fix typo from side_dict to size_dict (#42319) | [
{
"path": "src/transformers/models/siglip2/image_processing_siglip2_fast.py",
"patch": "@@ -116,8 +116,8 @@ def _preprocess(\n patch_size=patch_size,\n max_num_patches=max_num_patches,\n )\n- side_dict = SizeDict(height=height, width=wid... | 2025-11-21T12:21:15 |
vuejs/vue | 0f2cb09444e8b2a5fa41aaf8c94e6f2f43e00c2f | dd505438296dcbaae74fd28061600cea07cf25c0 | fix: work around old Chrome bug
fix #6601 | [
{
"path": "src/platforms/web/runtime/modules/dom-props.js",
"patch": "@@ -28,6 +28,11 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) vnode.children.length = 0\n if (cur === oldProps[key]... | 2017-10-02T21:11:36 |
ollama/ollama | 09a6f76f4c30fb8a9708680c519d08feeb504197 | e135167484c9867cfe6d406ed8ef2d84c4b1780f | fix error on `ollama run` with a non-existent model | [
{
"path": "cmd/cmd.go",
"patch": "@@ -147,6 +147,7 @@ func RunHandler(cmd *cobra.Command, args []string) error {\n \t}\n \n \tname := args[0]\n+\n \t// check if the model exists on the server\n \tshow, err := client.Show(cmd.Context(), &api.ShowRequest{Name: name})\n \tvar statusError api.StatusError\n@@ -1... | 2024-02-02T07:11:52 |
denoland/deno | d7208c94811c07b17e8113fd964a9d7b58baca56 | 8209f3d4198325289192743d4881b2b334e84b7e | chore: fix duplicate words in source comments (#32314) | [
{
"path": "libs/lockfile/graphs.rs",
"patch": "@@ -276,7 +276,7 @@ impl LockfilePackageGraph {\n \n fn remove_root_pkg_by_id(&mut self, id: &LockfilePkgId) {\n // The ideal goal here is to only disassociate the package\n- // from the root so that the the current dependencies can be\n+ // from th... | 2026-02-26T14:40:57 |
ggml-org/llama.cpp | fd3abe849ee49ba199c62333e1c4bdb0badd6ebc | 682e6658bb8de53f56bfbf16efee98697db1b21f | server: fixing naming conflict res_error in server-models.cpp (#17679) | [
{
"path": "tools/server/server-models.cpp",
"patch": "@@ -642,26 +642,26 @@ static void res_ok(std::unique_ptr<server_http_res> & res, const json & response\n res->data = safe_json_to_str(response_data);\n }\n \n-static void res_error(std::unique_ptr<server_http_res> & res, const json & error_data) {\n+... | 2025-12-02T10:18:39 |
huggingface/transformers | 4799952dca3383e577a686ca5feb25b90399d7a3 | f2738ee3756483538c20e10e4f104324675fb406 | [loading] Fix device detection (#42323)
fix | [
{
"path": "src/transformers/core_model_loading.py",
"patch": "@@ -610,7 +610,7 @@ def convert_and_load_state_dict_in_model(\n tp_plan = tp_plan or {}\n device_map = device_map or {\"\": \"cpu\"}\n device_map_regex = re.compile(\n- \"|\".join(rf\"({k})\" for k in sorted(device_map.keys(), ... | 2025-11-21T12:20:49 |
vuejs/vue | dd505438296dcbaae74fd28061600cea07cf25c0 | 5fe7dc28d1249737cea57a26d13a9e9342b9007f | docs: typo fix (#6729)
https://github.com/vuejs/vue/blob/94512f3e8cee4030a1096121700ed49afab48073/src/platforms/web/entry-compiler.js#L5 | [
{
"path": "packages/vue-template-compiler/README.md",
"patch": "@@ -90,7 +90,7 @@ This is used by default in `vue-loader@>=12` and can be disabled using the [`opt\n \n ---\n \n-### compiler.ssrCompileToFunction(template)\n+### compiler.ssrCompileToFunctions(template)\n \n > 2.4.0+\n ",
"additions": 1,
... | 2017-10-02T20:04:02 |
denoland/deno | defb168115d29be50d40d8f61aa2b854bfaacdd9 | 9612761ee60df178b418ca756c181ff0757483dd | fix(ext/node): rename conflict callback field typo (#32306)
Co-authored-by: Rohan Santhosh <181558744+Rohan5commit@users.noreply.github.com> | [
{
"path": "ext/node_sqlite/database.rs",
"patch": "@@ -1084,7 +1084,7 @@ impl DatabaseSync {\n \n struct HandlerCtx<'a, 'b, 'c> {\n scope: &'a mut v8::PinScope<'b, 'c>,\n- confict: Option<v8::Local<'b, v8::Function>>,\n+ conflict: Option<v8::Local<'b, v8::Function>>,\n filter: Opti... | 2026-02-26T09:30:21 |
huggingface/transformers | f2738ee3756483538c20e10e4f104324675fb406 | decde58eda17aec894f17b15e7a5cdf4bf82d46a | fix tests/models/xcodec/test_modeling_xcodec.py::XcodecIntegrationTest (#42272)
fix tests/models/xcodec/test_modeling_xcodec.py::XcodecIntegrationTest failure
Signed-off-by: Wang, Yi <yi.a.wang@intel.com> | [
{
"path": "src/transformers/models/xcodec/modeling_xcodec.py",
"patch": "@@ -403,8 +403,9 @@ def __init__(self, config):\n super().__init__(config)\n self.config = config\n self.pad = config.hop_length // 2\n- self.acoustic_model = AutoModel.from_config(config.acoustic_model_c... | 2025-11-21T07:36:43 |
vuejs/vue | 4fd2ce813cd0a59bd544defe07f44a5731e45f84 | 4361a2b3aee55a30e0e6a779c1ef55cdf93a6f52 | fix: allow an object's Symbols to be observed (#6704)
Attempting to parseFloat on a Symbol throws the error
`Cannot convert a Symbol value to a string`.
A Symbol can be cast to a string using `.toString()` or `String()` though,
so explicitly casting before parsing resolves the issue, allowing `Vue.set` to
be cal... | [
{
"path": "src/shared/util.js",
"patch": "@@ -56,7 +56,7 @@ export function isRegExp (v: any): boolean {\n * Check if val is a valid array index.\n */\n export function isValidArrayIndex (val: any): boolean {\n- const n = parseFloat(val)\n+ const n = parseFloat(String(val))\n return n >= 0 && Math.flo... | 2017-09-28T14:53:40 |
ollama/ollama | 3d6f48507a3a729334c68a70bb5133bf1bc4fe42 | 1ca386aa9e211450f2be33d7ba60b326786f1871 | structured debug prompt | [
{
"path": "server/routes.go",
"patch": "@@ -253,7 +253,7 @@ func GenerateHandler(c *gin.Context) {\n \t\tprompt = rebuild.String()\n \t}\n \n-\tslog.Debug(fmt.Sprintf(\"prompt: %s\", prompt))\n+\tslog.Debug(\"generate handler\", \"prompt\", prompt)\n \n \tch := make(chan any)\n \tvar generated strings.Build... | 2024-02-01T00:47:26 |
huggingface/transformers | decde58eda17aec894f17b15e7a5cdf4bf82d46a | e04c7a6074322c3a78516fbae4c77608c3924bae | Fix post processing methods in keypoints matching models (#42018)
Fix out of bound issue and incorrect post processing function in fast processors | [
{
"path": "src/transformers/models/efficientloftr/modular_efficientloftr.py",
"patch": "@@ -1,8 +1,71 @@\n+from typing import Union\n+\n+import torch\n+\n+from ...utils import TensorType\n from ..superglue.image_processing_superglue_fast import SuperGlueImageProcessorFast\n+from .modeling_efficientloftr imp... | 2025-11-20T22:27:45 |
vuejs/vue | 2deda3d4328eb7aea0adb0eaf01d68537ed0e0af | 4441e0f9d16e924f409a3711140932c50590ced6 | refactor(weex): Adjust the weex platform entry file to fit the new weex runtime (#6620)
* trim trailing whitespace
* revert(weex): remove the new Function hack for V8, as Weex uses JSC now
Remove the `callFunctionNative` method and `compileBundle`, which is provided by modified V8. In
order to maintain the cons... | [
{
"path": "build/config.js",
"patch": "@@ -17,7 +17,7 @@ const banner =\n \n const weexFactoryPlugin = {\n intro () {\n- return 'module.exports = function weexFactory (exports, renderer) {'\n+ return 'module.exports = function weexFactory (exports, document) {'\n },\n outro () {\n return '}'... | 2017-09-18T19:38:27 |
denoland/deno | 9612761ee60df178b418ca756c181ff0757483dd | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | fix(ext/node): implement `after`, `afterEach`, `before`, and `beforeEach` of `node:test` (#32320) | [
{
"path": "ext/node/polyfills/testing.ts",
"patch": "@@ -21,6 +21,8 @@ const {\n import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import assert from \"node:assert\";\n \n+type HookFn = () => void | Promise<void>;\n+\n const methodsToCopy = [\n \"deepEqual\",\n \"deepStrictEqual\",\n@@ -61,1... | 2026-02-26T09:19:43 |
ollama/ollama | e49dc9f3d882ca5a4d56f9b4dea1987c39ab8aef | d125510b4b7fef09b8a5795f30692da354a0d9cd | fix tests | [
{
"path": "server/images_test.go",
"patch": "@@ -238,18 +238,37 @@ func chatHistoryEqual(a, b ChatHistory) bool {\n \tif len(a.Prompts) != len(b.Prompts) {\n \t\treturn false\n \t}\n-\tif len(a.CurrentImages) != len(b.CurrentImages) {\n-\t\treturn false\n-\t}\n \tfor i, v := range a.Prompts {\n-\t\tif v != ... | 2024-02-01T19:48:11 |
ggml-org/llama.cpp | cee92af5532148328999da814fef75f6c17dc4ec | ed320899275ef9a193aa177d97a0d08745dc48fe | Add context info to server error (#17663)
* fix: Add context info to server error
* chore: update webui build output | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte",
"patch": "@@ -575,6 +575,7 @@\n \n <DialogChatError\n \tmessage={activeErrorDialog?.message ?? ''}\n+\tcontextInfo={activeErrorDialog?.contextInfo}\n \tonOpenChange={handleErrorDialogOpenChange}\n \topen={Boolean(active... | 2025-12-02T08:20:57 |
huggingface/transformers | c3fb1b1a6ca1102f62b139c83a088a97e5a55477 | a1afecaeb0fb0fc4d80142044b5d1815155ffdcf | [SAM3 Video] Add support for multi prompts (#42293)
* add support for multi prompts + fix checkpoints in tests
* Make sure to apply heuristics per prompt group
* simplify NMS to probs | [
{
"path": "docs/source/en/model_doc/sam3_video.md",
"patch": "@@ -97,6 +97,39 @@ Processed 51 frames\n >>> print(f\"Masks shape: {frame_0_outputs['masks'].shape}\")\n ```\n \n+You can also track multiple object categories simultaneously by providing multiple prompts. The model efficiently reuses vision feat... | 2025-11-20T22:25:10 |
denoland/deno | 7a2fdf504f94ef695c6498f4591068e1145fdd63 | 1df618d969894353731981a17784816167ad82fb | fix(node/buffer): fix base64 decoding for strings with hyphens (#32298)
## Summary
- Fix `Buffer.from(str, "base64")` throwing on strings containing `-`
characters (e.g. `"base64-encoded-bytes-from-browser"`)
- Two bugs in `base64ToBytes` / `base64clean`:
1. Base64url character replacements (`-`→`+`, `_`→`/`) were app... | [
{
"path": "ext/node/polyfills/internal_binding/_utils.ts",
"patch": "@@ -21,8 +21,10 @@ export function base64ToBytes(str: string) {\n try {\n return forgivingBase64Decode(str);\n } catch {\n- str = base64clean(str);\n+ // Convert base64url characters to standard base64 before cleaning,\n+ ... | 2026-02-26T08:14:16 |
vuejs/vue | 4459b87de902cf3ba496a104304ca80d1c9824c1 | 8164ce6169851d673ed0904289ece4c22ca20e95 | fix(core): avoid observing VNodes
fix #6610 | [
{
"path": "src/core/observer/index.js",
"patch": "@@ -1,6 +1,7 @@\n /* @flow */\n \n import Dep from './dep'\n+import VNode from '../vdom/vnode'\n import { arrayMethods } from './array'\n import {\n def,\n@@ -104,7 +105,7 @@ function copyAugment (target: Object, src: Object, keys: Array<string>) {\n * or... | 2017-09-15T14:16:39 |
ollama/ollama | 8ac08a0eec1e59a10dd1dab4513d4640013cdb3b | 60f47be64c5934dc41af8b1860e4dfe4f7d30309 | update slog handler options
- consistent format by using text handler for debug and non-debug
- truncate source file to just the file name | [
{
"path": "server/routes.go",
"patch": "@@ -938,13 +938,26 @@ func (s *Server) GenerateRoutes() http.Handler {\n }\n \n func Serve(ln net.Listener) error {\n+\tlevel := slog.LevelInfo\n \tif debug := os.Getenv(\"OLLAMA_DEBUG\"); debug != \"\" {\n-\t\tvar programLevel = new(slog.LevelVar)\n-\t\th := slog.New... | 2024-01-31T22:59:32 |
ggml-org/llama.cpp | 7b6d7453649be7e7aa37589a2da6d2f60ca9e548 | 98bd9ab1e4fdef1497da628574bb90d0890539e7 | release: fix duplicate libs, store symbolic links (#17299) | [
{
"path": ".github/workflows/release.yml",
"patch": "@@ -66,14 +66,21 @@ jobs:\n id: pack_artifacts\n run: |\n cp LICENSE ./build/bin/\n- zip -r llama-${{ steps.tag.outputs.name }}-bin-macos-arm64.zip ./build/bin/*\n+ zip -y -r llama-${{ steps.tag.outputs.name }}-... | 2025-12-02T03:52:05 |
huggingface/transformers | a1afecaeb0fb0fc4d80142044b5d1815155ffdcf | b63e6e07fd845149b999405056dd1cf268edcb1a | fix(granitemoe*): Only create block_sparse_moe if num_local_experts > 0 (#42036)
* fix(granitemoehybid): Only set self.block_sparse_moe if num_local_experts > 0
Branch: GraniteMoeAsDenseFix
Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
* fix(granitemoehybrid): Regenerate modeling_granitemoehybrid.py
Branch: Gran... | [
{
"path": "src/transformers/models/granitemoehybrid/modeling_granitemoehybrid.py",
"patch": "@@ -927,52 +927,6 @@ def forward(self, x, position_ids):\n return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)\n \n \n-class GraniteFlashAttentionKwargs(TypedDict, total=False):\n- \"\"\"\n- Keyword ar... | 2025-11-20T18:55:31 |
denoland/deno | c08e78ddf4e6a3b1e8457039c0e2965ae147b3d4 | 1b4eac4c0a3ca77c64d0071f9716316c497ce864 | ci: fix script for release builds (#32321)
Without this condition, tagged builds were marked as canary, instead of
"stable" | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -772,6 +772,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n {\n // do this on PRs as well as main so that PRs can use the cargo build cache from main\n name: \"Configure canary build\",\n+ ... | 2026-02-25T14:08:32 |
vuejs/vue | b080a14138262f0f274d0888555a11bd7387d576 | 94512f3e8cee4030a1096121700ed49afab48073 | fix(ssr): fix hydration mismatch with adjacent text node from slots
fix vuejs/vue-loader#974 | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -42,28 +42,35 @@ function isTextNode (node): boolean {\n \n function normalizeArrayChildren (children: any, nestedIndex?: string): Array<VNode> {\n const res = []\n- let i, c, last\n+ let i, c, lastIndex, last\n for (i = 0; i < chil... | 2017-09-14T16:25:22 |
ollama/ollama | f2245c7c770fdb36e26253045382e3428f30b484 | e4b9b72f2af1d66e9b806e670c955a6cd60a9a47 | print prompt with `OLLAMA_DEBUG=1` (#2245) | [
{
"path": "server/routes.go",
"patch": "@@ -253,6 +253,8 @@ func GenerateHandler(c *gin.Context) {\n \t\tprompt = rebuild.String()\n \t}\n \n+\tslog.Debug(fmt.Sprintf(\"prompt: %s\", prompt))\n+\n \tch := make(chan any)\n \tvar generated strings.Builder\n \tgo func() {\n@@ -1125,6 +1127,8 @@ func ChatHandle... | 2024-01-28T23:22:35 |
ggml-org/llama.cpp | 00c361fe53e5fc105a077f90a0a22d4c60936ffe | ec18edfcba94dacb166e6523612fc0129cead67a | fix: llama arch implementation (#17665) | [
{
"path": "src/llama-model.cpp",
"patch": "@@ -626,6 +626,8 @@ void llama_model::load_hparams(llama_model_loader & ml) {\n switch (arch) {\n case LLM_ARCH_LLAMA:\n {\n+ ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);\n+\n if (hpa... | 2025-12-01T20:21:13 |
vuejs/vue | a2f73f2c2e28771e6597334bd86f82851ce0955e | 0c9534ff0069b5289ea9598bcb4f5e5ac346c979 | fix(ssr): fix style injection regression
fix #6603, (regression caused by attempt to fix #6353) | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -106,7 +106,7 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n // slightly differently.\n let runner // lazy creation so that errors can be caught by user\n let initialContext\n- ret... | 2017-09-14T14:54:59 |
denoland/deno | ede0e2ae4901ffa3d85d618c1a198430f76915b0 | 9c4102a765e10958fd36de3679702c61de3b7bb5 | fix(permissions): allow /proc/pressure/* files with --allow-read (#30780)
The /proc/pressure/* files (memory, cpu, io) are read-only system
monitoring files that only expose PSI (Pressure Stall Information)
metrics. These files are safe to read and commonly used for system
monitoring and performance analysis.
Previou... | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -4268,6 +4268,9 @@ impl PermissionsContainer {\n {\n if path.ends_with(\"/environ\") {\n self.check_env_all()?;\n+ } else if path.starts_with(\"/proc/pressure/\") {\n+ // Allow /proc/pressure/* files with just --all... | 2026-02-24T16:58:47 |
huggingface/transformers | b63e6e07fd845149b999405056dd1cf268edcb1a | 7b84f726c518658e7c65ceb20a38ca82bab75289 | Update conversion mapping to separate renaming from converting (#42254)
* inital commit
* up
* update unexpected later on
* fix
* update
* simplify our lives
* isolate a bit more
* fixup
* small nits
* style
* nit
* fix common cases
* fix post merge
* bnb needs missing keys
* small fix
* bettrer documen... | [
{
"path": "src/transformers/conversion_mapping.py",
"patch": "@@ -15,7 +15,7 @@\n \n from copy import deepcopy\n \n-from .core_model_loading import Concatenate, MergeModulelist, WeightConverter\n+from .core_model_loading import Concatenate, MergeModulelist, WeightConverter, WeightRenaming\n from .utils impo... | 2025-11-20T17:43:26 |
ollama/ollama | f07f8b7a9ed8cd8c07860a5b7852702ef9737429 | e02ecfb6c8ab236a1d8db1eda51320316d6fb214 | Harden for zero detected GPUs
At least with the ROCm libraries, its possible to have the library
present with zero GPUs. This fix avoids a divide by zero bug in llm.go
when we try to calculate GPU memory with zero GPUs. | [
{
"path": "gpu/gpu.go",
"patch": "@@ -135,7 +135,7 @@ func GetGPUInfo() GpuInfo {\n \t\tif memInfo.err != nil {\n \t\t\tslog.Info(fmt.Sprintf(\"error looking up CUDA GPU memory: %s\", C.GoString(memInfo.err)))\n \t\t\tC.free(unsafe.Pointer(memInfo.err))\n-\t\t} else {\n+\t\t} else if memInfo.count > 0 {\n \... | 2024-01-28T21:13:10 |
vuejs/vue | 0c9534ff0069b5289ea9598bcb4f5e5ac346c979 | 5376dab415591011f6a9650a06e224fab4614af4 | fix(ssr): fix bundleRenderer Promise rejection regression | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -106,7 +106,7 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n // slightly differently.\n let runner // lazy creation so that errors can be caught by user\n let initialContext\n- ret... | 2017-09-14T13:50:33 |
denoland/deno | 745f7d9d93fa49ca238951ccc93af2e31e5a1300 | 8b8b10dd147929a02f94f276cff7bd1e4e60c861 | fix(ext/node): `createServer().listen().address()` returns port 0 (#32248)
## Summary
- Bind the TCP/TLS port synchronously in `Server.listen()` so that
`address()` immediately returns the OS-assigned port, matching Node.js
behavior
- Previously the port binding was deferred to `nextTick` via
`Deno.serve()`, causing ... | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -70,7 +70,8 @@ import {\n } from \"ext:deno_node/internal/errors.ts\";\n import { getTimerDuration } from \"ext:deno_node/internal/timers.mjs\";\n import { getIPFamily } from \"ext:deno_node/internal/net.ts\";\n-import { serve, upgradeHttpRaw } from \"ext... | 2026-02-24T13:16:31 |
huggingface/transformers | 26785ae93ab1b312d9460a23d5b1b0d945d152f2 | 6bc8121b83cc694b60c52031850b99b2f32a3479 | Fix the init_weights for the MoE models (#42306)
* fix the modulars
* apply modulars
* forgot jamba
* fix doc | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -2140,12 +2140,6 @@ def _init_weights(self, module):\n init.ones_(module.weight)\n if hasattr(module, \"bias\") and module.bias is not None:\n init.zeros_(module.bias)\n- if isinstance(getattr(mod... | 2025-11-20T16:52:28 |
ggml-org/llama.cpp | ec18edfcba94dacb166e6523612fc0129cead67a | 773340973473952df872b179f97b5a484a0b063d | server: introduce API for serving / loading / unloading multiple models (#17470)
* server: add model management and proxy
* fix compile error
* does this fix windows?
* fix windows build
* use subprocess.h, better logging
* add test
* fix windows
* feat: Model/Router server architecture WIP
* more stable
* fi... | [
{
"path": "README.md",
"patch": "@@ -613,3 +613,4 @@ $ echo \"source ~/.llama-completion.bash\" >> ~/.bashrc\n - [linenoise.cpp](./tools/run/linenoise.cpp/linenoise.cpp) - C++ library that provides readline-like line editing capabilities, used by `llama-run` - BSD 2-Clause License\n - [curl](https://curl.se... | 2025-12-01T18:41:04 |
huggingface/transformers | 6bc8121b83cc694b60c52031850b99b2f32a3479 | 3eba206b0ca4de67aa2291667eadfa7498cb4609 | Fix Mac mps dataloader_num_workers > 1 causes RuntimeError: _share_filename_: only available on CPU (#38819)
* Update trainer.py: add multiprocessing_context for mps devices
* Fix multiprocessing context for MPS with workers
* Apply style fixes
---------
Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.git... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -1023,12 +1023,16 @@ def _get_dataloader(\n else:\n data_collator = self._get_collator_with_removed_columns(self.data_collator, description=description)\n \n+ # MPS requrires forking if multiple workers are specified\n+ ... | 2025-11-20T16:28:00 |
ggml-org/llama.cpp | 90c72a614a6dc99064fe245b6ab85235c5f2de6a | 6eea6669125af4a6c6a8e186ba5a019152e4e868 | ggml : extend the GGML_SCHED_NO_REALLOC debug logic of the scheduler (#17617) | [
{
"path": "ggml/src/ggml-backend.cpp",
"patch": "@@ -723,6 +723,12 @@ struct ggml_backend_sched {\n bool op_offload;\n \n int debug;\n+\n+ // used for debugging graph reallocations [GGML_SCHED_DEBUG_REALLOC]\n+ // ref: https://github.com/ggml-org/llama.cpp/pull/17617\n+ int debug_realloc;\n... | 2025-12-01T10:49:33 |
denoland/deno | 8b8b10dd147929a02f94f276cff7bd1e4e60c861 | f817b31ed21ed0ba8cc59f26e5fa3356a430b9db | feat(compile): add `--self-extracting` flag (#32227)
Adds a `--self-extracting` flag to `deno compile`. Instead of serving
files from the in-memory virtual file system, the compiled binary
extracts all embedded files to disk on first run and uses real file
system operations at runtime.
This unlocks full Node API supp... | [
{
"path": "Cargo.lock",
"patch": "@@ -3356,6 +3356,7 @@ dependencies = [\n \"deno_terminal\",\n \"import_map\",\n \"indexmap 2.9.0\",\n+ \"junction\",\n \"libsui\",\n \"log\",\n \"memmap2\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/args/flags.rs",
... | 2026-02-24T13:03:13 |
ollama/ollama | 667a2ba18add1031cc4b208eba7cedf8b33548e6 | e054ebe059d5a40c5f0b6e93b684e4ec402a33cb | Detect lack of AVX and fallback to CPU mode
We build the GPU libraries with AVX enabled to ensure that if not all
layers fit on the GPU we get better performance in a mixed mode.
If the user is using a virtualization/emulation system that lacks AVX
this used to result in an illegal instruction error and crash before t... | [
{
"path": "gpu/gpu.go",
"patch": "@@ -122,9 +122,15 @@ func GetGPUInfo() GpuInfo {\n \t\tinitGPUHandles()\n \t}\n \n+\t// All our GPU builds have AVX enabled, so fallback to CPU if we don't detect at least AVX\n+\tcpuVariant := GetCPUVariant()\n+\tif cpuVariant == \"\" {\n+\t\tslog.Warn(\"CPU does not have ... | 2024-01-26T19:11:09 |
huggingface/transformers | 3eba206b0ca4de67aa2291667eadfa7498cb4609 | 7dd11c115fdd38322fec128a34596d37349aad9e | Remove outdated methods in modeling_utils.py (#42302)
* cleanup
* more
* fix
* fix
* fix
* fix
* CI | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -32,7 +32,7 @@\n from functools import partial, wraps\n from itertools import cycle\n from threading import Thread\n-from typing import Any, Optional, TypeVar, Union, get_type_hints\n+from typing import Optional, TypeVar, Union, get_type_hints\n f... | 2025-11-20T16:26:52 |
vuejs/vue | 5376dab415591011f6a9650a06e224fab4614af4 | ed88ac411403782bb0e249a9bad73c2174c27c5e | chore: fix bronze sponsors | [
{
"path": "BACKERS.md",
"patch": "@@ -227,36 +227,36 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h2 align=\"center\">Bronze via OpenCollective</h2>\n \n-<a href=\"https://opencollective.com/vuejs/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollec... | 2017-09-14T13:00:00 |
ggml-org/llama.cpp | 2ba719519d950c5a62c00cdb8b119cc0914c1fa3 | 7f8ef50cce40e3e7e4526a3696cb45658190e69a | model: LFM2-VL fixes (#17577)
* Adjust to pytorch
* Add antialiasing upscale
* Increase number of patches to 1024
* Handle default marker insertion for LFM2
* Switch to flag
* Reformat
* Cuda implementation of antialias kernel
* Change placement in ops.cpp
* consistent float literals
* Pad only for LFM2
* Ad... | [
{
"path": "ggml/include/ggml.h",
"patch": "@@ -2148,7 +2148,8 @@ extern \"C\" {\n };\n \n enum ggml_scale_flag {\n- GGML_SCALE_FLAG_ALIGN_CORNERS = (1 << 8)\n+ GGML_SCALE_FLAG_ALIGN_CORNERS = (1 << 8),\n+ GGML_SCALE_FLAG_ANTIALIAS = (1 << 9),\n };\n \n // interpolate... | 2025-11-30T20:57:31 |
denoland/deno | c5919892439aa3a6527ea3e18fa0ae32bbcfd027 | f6a619fe0bcc000f7d161c2e3dacd171cc448de6 | fix(lsp): implement remaining tsgo resolver callbacks (#32303) | [
{
"path": "cli/lsp/documents.rs",
"patch": "@@ -1296,7 +1296,7 @@ impl DocumentModules {\n module\n }\n \n- pub fn module_for_tsgo_referrer(\n+ pub fn module_for_tsgo_document(\n &self,\n uri: &Uri,\n compiler_options_key: &CompilerOptionsKey,\n@@ -1314,7 +1314,7 @@ impl DocumentModules ... | 2026-02-24T07:55:26 |
huggingface/transformers | 7dd11c115fdd38322fec128a34596d37349aad9e | f7650253c477dd48c3cf3ff3d7b4f44f93ee62b9 | Properly protect the is_compiling checks (#42304)
fix | [
{
"path": "src/transformers/image_processing_utils_fast.py",
"patch": "@@ -50,7 +50,7 @@\n is_vision_available,\n logging,\n )\n-from .utils.import_utils import is_rocm_platform\n+from .utils.import_utils import is_rocm_platform, is_torchdynamo_compiling\n \n \n if is_vision_available():\n@@ -343,7 ... | 2025-11-20T15:45:04 |
vuejs/vue | ed88ac411403782bb0e249a9bad73c2174c27c5e | 7cea42b4ef34d6a502b9f7fb99fe295ee92876b2 | docs(packages): fix syntax (#6600) | [
{
"path": "packages/vue-template-compiler/README.md",
"patch": "@@ -51,6 +51,7 @@ The optional `options` object can contain the following:\n test (node, directiveMeta) {\n // transform node based on directiveMeta\n }\n+ }\n })\n ```\n ",
"additions": 1,
"deletions": 0,
... | 2017-09-14T12:37:53 |
ggml-org/llama.cpp | 7f8ef50cce40e3e7e4526a3696cb45658190e69a | 3c136b21a35b0efc7282b12857b4e8cba26ddae5 | clip: fix nb calculation for qwen3-vl (#17594) | [
{
"path": "tools/mtmd/clip.cpp",
"patch": "@@ -987,12 +987,20 @@ struct clip_graph {\n cur = ggml_mul_mat(ctx0, layer.qkv_w, cur);\n cur = ggml_add(ctx0, cur, layer.qkv_b);\n \n- ggml_tensor * Qcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos, d_head*sizeof(... | 2025-11-30T14:33:55 |
denoland/deno | f6a619fe0bcc000f7d161c2e3dacd171cc448de6 | 265cbd8732aea413ce01810e0e0f39df635ca561 | fix(ext/node): add `host_arch` to `process.config.variables` (#32265)
## Summary
- Adds `host_arch` property to `process.config.variables` to match
Node.js behavior
- Changes `process.config` to use a lazy getter so `arch` is available
at access time (not during snapshot creation)
- Fixes packages like `neo4j-driver` ... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -676,14 +676,24 @@ Object.defineProperty(process, \"argv0\", {\n process.chdir = chdir;\n \n /** https://nodejs.org/api/process.html#processconfig */\n-process.config = Object.freeze({\n- target_defaults: Object.freeze({\n- default_configuration: \... | 2026-02-24T06:57:04 |
ollama/ollama | 9d3dcfd0ec94df07f9b10be3c09b93d6ad52c95e | 6e0ea5ecc8fa7a162cd63455c8e2319e443c98c4 | fix logging | [
{
"path": "server/download.go",
"patch": "@@ -247,7 +247,7 @@ func (b *blobDownload) downloadChunk(ctx context.Context, requestURL *url.URL, w\n \t\t\t\t}\n \n \t\t\t\tif !part.lastUpdated.IsZero() && time.Since(part.lastUpdated) > 5*time.Second {\n-\t\t\t\t\tlog.Printf(\"%s part %d stalled; retrying\", b.D... | 2024-01-26T19:04:27 |
huggingface/transformers | f7650253c477dd48c3cf3ff3d7b4f44f93ee62b9 | 75e39856f877e75b3a15849d19151a73ed3a1159 | Remove error string test that was failing (#42301) | [
{
"path": "tests/utils/test_modeling_utils.py",
"patch": "@@ -1319,12 +1319,6 @@ def test_use_safetensors(self):\n with self.assertRaises(OSError) as missing_model_file_error:\n BertModel.from_pretrained(\"hf-internal-testing/config-no-model\")\n \n- self.assertTrue(\n- ... | 2025-11-20T14:42:02 |
vuejs/vue | fa6a7290e3b8cb62fb7f999389f476617b56503e | 1c86b9ebebebc15ff9ef4ababa64194ef9c349a2 | fix: $off should ignore undefined handler argument
fix #6591 | [
{
"path": "src/core/instance/events.js",
"patch": "@@ -95,14 +95,16 @@ export function eventsMixin (Vue: Class<Component>) {\n vm._events[event] = null\n return vm\n }\n- // specific handler\n- let cb\n- let i = cbs.length\n- while (i--) {\n- cb = cbs[i]\n- if (cb === f... | 2017-09-13T07:08:22 |
ggml-org/llama.cpp | beb1f0c50379608f84e89f876479f868c92eaffe | def5404f26bd89545641ba8484a8d17b056b765c | common : throttle download progress output to reduce IO flush (#17427)
This change limits progress updates to approximately every 0.1% of the
file size to minimize stdio overhead.
Also fixes compiler warnings regarding __func__ in lambdas.
Signed-off-by: Adrien Gallouët <angt@huggingface.co> | [
{
"path": "common/download.cpp",
"patch": "@@ -517,36 +517,43 @@ static bool common_pull_file(httplib::Client & cli,\n headers.emplace(\"Range\", \"bytes=\" + std::to_string(existing_size) + \"-\");\n }\n \n- std::atomic<size_t> downloaded{existing_size};\n+ const char * func = __func__; /... | 2025-11-30T12:22:44 |
denoland/deno | 265cbd8732aea413ce01810e0e0f39df635ca561 | 636f697ed3488e8c7d055d554c1ea01f08ae5f3c | fix(node/buffer): fix latin1Slice and hexSlice returning wrong results (#32277)
## Summary
- Fix `Buffer.prototype.latin1Slice` and `Buffer.prototype.hexSlice`
having an extraneous `string` parameter that shifted all arguments
passed to the underlying `_latin1Slice`/`_hexSlice` functions
- Fix `_latin1Slice` not handl... | [
{
"path": "ext/node/polyfills/internal/buffer.mjs",
"patch": "@@ -1011,16 +1011,12 @@ Buffer.prototype.hexWrite = function hexWrite(string, offset, length) {\n );\n };\n \n-Buffer.prototype.hexSlice = function hexSlice(string, offset, length) {\n- return _hexSlice(this, string, offset, length);\n+Buffer.... | 2026-02-24T06:56:13 |
huggingface/transformers | 75e39856f877e75b3a15849d19151a73ed3a1159 | 61cafd991d5692d5637f39348a7ccb1efaf65446 | Fix Break change of AWQ FusedModules due to Attention Refactor (#41909)
* fix awq bc due to attention refactor
* feat: support more rope_types for awq fusion
* feat: add test for llama3
* fix ruff format
* propagate changes in modeling_llama | [
{
"path": "src/transformers/integrations/awq.py",
"patch": "@@ -18,6 +18,7 @@\n from packaging import version\n \n from ..activations import ACT2FN\n+from ..modeling_rope_utils import ROPE_INIT_FUNCTIONS\n from ..modeling_utils import PreTrainedModel\n from ..utils import is_auto_awq_available, is_ipex_avai... | 2025-11-20T13:41:33 |
vuejs/vue | 1baa0a7884cfa147df7623a34ee277f7d39c7a21 | aa820cba37b69772868c9cdb69235c424e23f529 | fix(types): add `inject` option in functional component options type (#6530) | [
{
"path": "types/options.d.ts",
"patch": "@@ -47,7 +47,7 @@ export interface ComponentOptions<V extends Vue> {\n filters?: { [key: string]: Function };\n \n provide?: Object | (() => Object);\n- inject?: { [key: string]: string | symbol } | Array<string>;\n+ inject?: { [key: string]: string | symbol }... | 2017-09-13T06:25:50 |
ggml-org/llama.cpp | fa0465954faef9d7170b967ad89f8bc5303a32f3 | 5a6241feb0313513411d32b63bbaa62b34792ada | ggml: fix: macOS build with `-DGGML_BACKEND_DL=ON` (#17581) | [
{
"path": "ggml/src/CMakeLists.txt",
"patch": "@@ -274,10 +274,13 @@ function(ggml_add_backend_library backend)\n endif()\n \n # Set versioning properties for all backend libraries\n- set_target_properties(${backend} PROPERTIES\n- VERSION ${GGML_VERSION}\n- SOVERSION ${GGML_VERSION_... | 2025-11-30T02:00:59 |
denoland/deno | 636f697ed3488e8c7d055d554c1ea01f08ae5f3c | 87f304049da7a95941276560942e607d66775c19 | feat(ext/bundle): Add `--keep-names` flag (#32285)
Exposes the esbuild flag `--keep-names` to users of `deno bundle`
Moving forward with this as there has been no response to my questions
in the issue so far. If you want to discuss this further, feel free to
add your feedback.
Fixes #32109 | [
{
"path": "cli/args/flags.rs",
"patch": "@@ -592,6 +592,7 @@ pub struct BundleFlags {\n pub external: Vec<String>,\n pub format: BundleFormat,\n pub minify: bool,\n+ pub keep_names: bool,\n pub code_splitting: bool,\n pub inline_imports: bool,\n pub packages: PackageHandling,\n@@ -2536,6 +2537,... | 2026-02-24T02:01:23 |
huggingface/transformers | 52cbf3913cad3afcae7cfbb19d4405478160edd5 | 59dfc1dcf9bc0ece99f7316aa2994566a0ba1a37 | Fixed the docstring for `WhisperFeatureExtractor` (#42286)
Fixed the docstring | [
{
"path": "src/transformers/models/whisper/feature_extraction_whisper.py",
"patch": "@@ -204,9 +204,8 @@ def __call__(\n return_token_timestamps: Optional[bool] = None,\n **kwargs,\n ) -> BatchFeature:\n- \"\"\"\n- Main method to featurize and prepare for the model one or s... | 2025-11-19T17:37:59 |
ollama/ollama | 5d9c4a5f5a5d6aab0e8b4aedf504c6a0e526b2f4 | 197e420a97167c702973243563b72eb70b0e6786 | Fix crash on cuda ml init failure
The new driver lookup code was triggering after init failure due to a missing return | [
{
"path": "gpu/gpu_info_cuda.c",
"patch": "@@ -70,6 +70,7 @@ void cuda_init(char *cuda_lib_path, cuda_init_resp_t *resp) {\n resp->ch.handle = NULL;\n snprintf(buf, buflen, \"nvml vram init failure: %d\", ret);\n resp->err = strdup(buf);\n+ return;\n }\n \n // Report driver version if we'... | 2024-01-26T17:18:33 |
vuejs/vue | 3ee62fd59e20030dd63c08c2390e803d034928fe | 1f52a2a9f433452c15715131ed74433a43d5cfb7 | fix(inject): exclude not enumerable keys of inject object (#6346)
close #6574 | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -41,7 +41,9 @@ export function resolveInject (inject: any, vm: Component): ?Object {\n // inject is :any because flow is not smart enough to figure out cached\n const result = Object.create(null)\n const keys = hasSymbol\n- ? Reflect.o... | 2017-09-13T05:05:11 |
ggml-org/llama.cpp | c7af376c298b7d09c280233548668ba6fcc17deb | 00425e2ed1d1ec35976710f81a9337c7b2d34d96 | CUDA: add stream-based concurrency (#16991)
* CUDA: add stream-based concurrency
* HIP: fix hipStreamWaitEvent define and nodiscard warnings
* ggml-cuda: fix fusion inside stream
* ggml-cuda: fix bug w.r.t first stream launch
* ggml-cuda: format
* ggml-cuda: improve assert message
* ggml-cuda: use lambda instead... | [
{
"path": "ggml/src/ggml-cuda/common.cuh",
"patch": "@@ -21,10 +21,12 @@\n #include \"ggml-common.h\"\n \n #include <array>\n+#include <algorithm>\n #include <cassert>\n #include <cfloat>\n #include <cstdio>\n #include <string>\n+#include <unordered_map>\n #include <vector>\n \n #if defined(GGML_USE_HIP)\n@... | 2025-11-30T00:17:55 |
huggingface/transformers | 59dfc1dcf9bc0ece99f7316aa2994566a0ba1a37 | 4391cfd336281a68f5ff931a7b35024186519d69 | Fix device_map computation part 2 (#42290)
fix | [
{
"path": "src/transformers/integrations/accelerate.py",
"patch": "@@ -204,13 +204,18 @@ def check_and_set_device_map(device_map: \"torch.device | int | str | dict | None\n \n \n def compute_module_sizes(\n- model: \"PreTrainedModel\", hf_quantizer: \"HfQuantizer | None\" = None, buffers_only: bool = Fal... | 2025-11-19T17:27:51 |
denoland/deno | 87f304049da7a95941276560942e607d66775c19 | 5122966a00611627e2abd9787acf29889a522300 | fix(node): preserve AsyncLocalStorage context in unhandledRejection handlers (#32264)
## Summary
- Fixes `AsyncLocalStorage.getStore()` returning `undefined` inside
`unhandledRejection` / `unhandledrejection` event handlers
- Now matches Node.js behavior where the async context active at the
time of rejection is pres... | [
{
"path": "tests/specs/node/async_local_storage_unhandled_rejection/__test__.jsonc",
"patch": "@@ -0,0 +1,8 @@\n+{\n+ \"tests\": {\n+ \"async_local_storage_unhandled_rejection\": {\n+ \"args\": \"run main.mjs\",\n+ \"output\": \"rejectionValue => data\\n\"\n+ }\n+ }\n+}",
"additions": ... | 2026-02-23T21:25:50 |
vuejs/vue | 1f52a2a9f433452c15715131ed74433a43d5cfb7 | 09106f066a1ba71431e4f9f26246aaf619153e2e | fix(ssr): expose context.styles when no lifecycle styles are injected
fix #6353 | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -130,7 +130,23 @@ export function createBundleRunner (entry, files, basedir, runInNewContext) {\n if (initialContext._styles) {\n userContext._styles = deepClone(initialContext._styles)\n }\n- resolve(runne... | 2017-09-13T04:32:07 |
ggml-org/llama.cpp | 00425e2ed1d1ec35976710f81a9337c7b2d34d96 | 385c3da5e6be372e86023d640115514187137ce4 | cuda : add error checking for cudaMemcpyAsync in argsort (#17599)
* cuda : add error checking for cudaMemcpyAsync in argsort (#12836)
* fix indentation | [
{
"path": "ggml/src/ggml-cuda/argsort.cu",
"patch": "@@ -44,7 +44,7 @@ static void argsort_f32_i32_cuda_cub(ggml_cuda_pool & pool,\n const dim3 offset_grid((nrows + block_size - 1) / block_size);\n init_offsets<<<offset_grid, block_size, 0, stream>>>(d_offsets, ncols, nrows);\n \n- cudaMemcpyAsyn... | 2025-11-30T00:16:28 |
huggingface/transformers | 4391cfd336281a68f5ff931a7b35024186519d69 | 454c0a7ccf33f7fc13e3e2eb9b188a5c09ab708b | perf: Optimization for Min-p sampling implementation (#42248)
* refactor(MinPLogitsWarper): optimizing min_tokens_to_keep
* Fix(MinPLogitsWarper): edge case when min_tokens_to_keep > vocab_size | [
{
"path": "src/transformers/generation/logits_process.py",
"patch": "@@ -748,19 +748,18 @@ def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> to\n # Convert logits to probabilities\n probs = torch.softmax(scores, dim=-1)\n # Get the probability of the top t... | 2025-11-19T17:27:23 |
denoland/deno | 5122966a00611627e2abd9787acf29889a522300 | 578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b | test: add timeout support to spec tests (#32292)
## Summary
- Adds a `timeout` field (in seconds) to spec test `__test__.jsonc`
files
- When a test step's process exceeds the timeout, it is killed and the
test fails with a "Test command timed out" panic
- Timeout can be set at the multi-test level (propagates to all
... | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -989,7 +989,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n `test ${testMatrix.test_crate} ${testMatrix.shard_label}${buildItem.profile} ${buildItem.os}-${buildItem.arch}`,\n needs: [buildJob],\n runsOn: buildIt... | 2026-02-23T20:06:47 |
vuejs/vue | 09106f066a1ba71431e4f9f26246aaf619153e2e | 7116af4e07520040ed7328c39d0a456808bfe1e1 | fix(ssr): handle v-text/v-html with non-string value
fix #6572 | [
{
"path": "src/server/optimizing-compiler/codegen.js",
"patch": "@@ -200,10 +200,10 @@ function elementToOpenTagSegments (el, state): Array<StringSegment> {\n function childrenToSegments (el, state): Array<StringSegment> {\n let binding\n if ((binding = el.attrsMap['v-html'])) {\n- return [{ type: EX... | 2017-09-13T03:23:24 |
ggml-org/llama.cpp | 385c3da5e6be372e86023d640115514187137ce4 | ab49f094d29057b2c4d2b0f1e822c9140df1b0e1 | vulkan : fix FA mask load with bounds check (coopmat2) (#17606) | [
{
"path": "ggml/src/ggml-vulkan/vulkan-shaders/flash_attn_cm2.comp",
"patch": "@@ -156,7 +156,7 @@ void main() {\n tensorLayoutM = setTensorLayoutStrideNV(tensorLayoutM, m_stride, 1);\n tensorLayoutM = setTensorLayoutClampValueNV(tensorLayoutM, 0xfc00); // -inf in float16_t\n... | 2025-11-30T00:03:21 |
denoland/deno | 578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b | 4e6470ab22c27064e2a4c0eec6a4006831f58f09 | fix: format wasm stack traces per W3C spec (#32246)
## Summary
- Update wasm stack trace formatting to use the W3C WebAssembly Web API
spec format: `wasm-function[<funcIndex>]:0x<hexOffset>` instead of the
generic `line:col` format
- Update existing `wasm_url` test expectation to match
- Add new integration test (`wa... | [
{
"path": "tests/specs/run/wasm_stack_trace/__test__.jsonc",
"patch": "@@ -0,0 +1,5 @@\n+{\n+ \"args\": \"run --quiet wasm_stack_trace.js\",\n+ \"output\": \"wasm_stack_trace.out\",\n+ \"exitCode\": 0\n+}",
"additions": 5,
"deletions": 0,
"language": "Unknown"
},
{
"path": "tests/spec... | 2026-02-23T20:02:02 |
ollama/ollama | a64570dcae17794adf100a85667180e03b6d7ef2 | 7c40a67841fd32073b66984e24605e5a0cc46f1a | Fix clearing kv cache between requests with the same prompt (#2186)
* Fix clearing kv cache between requests with the same prompt
* fix powershell script | [
{
"path": "llm/dyn_ext_server.go",
"patch": "@@ -190,6 +190,7 @@ func (llm *dynExtServer) Predict(ctx context.Context, predict PredictOpts, fn fu\n \t\t\"seed\": predict.Options.Seed,\n \t\t\"stop\": predict.Options.Stop,\n \t\t\"image_data\": imageData,\n+\t\t\"cache_prompt... | 2024-01-25T21:46:20 |
vuejs/vue | 7116af4e07520040ed7328c39d0a456808bfe1e1 | 684cd7d21aa7cb9a40fb4a8542c4e08fb3801a86 | fix: set value as domProp for <progress>
fix #6561 | [
{
"path": "src/platforms/web/util/attrs.js",
"patch": "@@ -7,7 +7,7 @@ import { makeMap } from 'shared/util'\n export const isReservedAttr = makeMap('style,class')\n \n // attributes that should be using props for binding\n-const acceptValue = makeMap('input,textarea,option,select')\n+const acceptValue = ma... | 2017-09-13T02:06:07 |
ggml-org/llama.cpp | ab49f094d29057b2c4d2b0f1e822c9140df1b0e1 | 8c32d9d96d9ae345a0150cae8572859e9aafea0b | server: move server-context to its own cpp|h (#17595)
* git mv
* add server-context.h
* add server-context.h
* clean up headers
* cont : cleanup
* also expose server_response_reader (to be used by CLI)
* fix windows build
* decouple server_routes and server_http
---------
Co-authored-by: Georgi Gerganov <gger... | [
{
"path": "tools/server/CMakeLists.txt",
"patch": "@@ -21,6 +21,8 @@ set(TARGET_SRCS\n server-queue.h\n server-common.cpp\n server-common.h\n+ server-context.cpp\n+ server-context.h\n )\n set(PUBLIC_ASSETS\n index.html.gz",
"additions": 2,
"deletions": 0,
"language": "Plain... | 2025-11-29T21:04:44 |
denoland/deno | 4e6470ab22c27064e2a4c0eec6a4006831f58f09 | dcc2fe2ff7f96319becfc5586652f0a3da44c0e2 | fix(ext/node): remove fs.promises.fstat, not a public Node.js API (#32289)
Closes https://github.com/denoland/deno/issues/27423
`fs.promises` in Node.js does not expose `fstat` or other `f`-prefixed
APIs. The promise-based equivalent is `FileHandle.stat()`, which is
already supported via `handle.ts`.
This removes th... | [
{
"path": "ext/node/polyfills/fs.ts",
"patch": "@@ -24,7 +24,7 @@ import { exists, existsSync } from \"ext:deno_node/_fs/_fs_exists.ts\";\n import { fchmod, fchmodSync } from \"ext:deno_node/_fs/_fs_fchmod.ts\";\n import { fchown, fchownSync } from \"ext:deno_node/_fs/_fs_fchown.ts\";\n import { fdatasync, ... | 2026-02-23T19:56:04 |
vuejs/vue | 684cd7d21aa7cb9a40fb4a8542c4e08fb3801a86 | 844a540c647dfa93dc714540953524830dd3475a | fix: preserve slot attribute if not resolved by Vue
close #6553 | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -431,6 +431,8 @@ function processSlot (el) {\n const slotTarget = getBindingAttr(el, 'slot')\n if (slotTarget) {\n el.slotTarget = slotTarget === '\"\"' ? '\"default\"' : slotTarget\n+ // preserve slot as an attribute for native shado... | 2017-09-13T01:45:44 |
ollama/ollama | 013fd071395087019b4e05959d8249f28ac11930 | f63dc2db5c00de0f6b0b5ea9b53bb20e83513cea | More logging for gpu management
Fix an ordering glitch of dlerr/dlclose and add more logging to help
root cause some crashes users are hitting. This also refines the
function pointer names to use the underlying function names instead
of simplified names for readability. | [
{
"path": "gpu/gpu.go",
"patch": "@@ -40,11 +40,13 @@ var CudaLinuxGlobs = []string{\n \t\"/usr/lib/wsl/lib/libnvidia-ml.so*\",\n \t\"/usr/lib/wsl/drivers/*/libnvidia-ml.so*\",\n \t\"/opt/cuda/lib64/libnvidia-ml.so*\",\n-\t\"/opt/cuda/targets/x86_64-linux/lib/stubs/libnvidia-ml.so*\",\n \t\"/usr/lib*/libnvi... | 2024-01-24T18:32:00 |
Subsets and Splits
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.