repo
stringclasses
10 values
pr_number
int64
7
155k
title
stringlengths
4
137
body
stringlengths
0
68.4k
buggy_commit
stringlengths
40
40
fix_commit
stringlengths
40
40
buggy_distance
int64
1
30
confidence
stringclasses
3 values
files
listlengths
1
5
electron/electron
49,156
build(deps): bump actions/setup-node from 6.0.0 to 6.1.0
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 6.0.0 to 6.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-node/releases">actions/setup-node's releases</a>.</em></p> <blockquote> <h2>v6.1.0</h2> <h2>What's Changed</h2> <h3>Enhancement:...
1ff8e8014ab4a6e152e357b62665a7f917a6c541
cd48083be8be1ece9199563a1a132f20e149b05a
16
medium
[ { "filename": ".github/workflows/archaeologist-dig.yml", "patch": "@@ -17,7 +17,7 @@ jobs:\n with:\n fetch-depth: 0\n - name: Setup Node.js/npm\n- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903\n+ uses: actions/setup-node@395ad3262231945c25e8478fd5baf...
vuejs/vue
7,271
feat(warning): allow symbol as vdom key
fix #7157 **What kind of change does this PR introduce?** (check at least one) - [ ] Bugfix - [x] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No **Other information...
null
bacb911f7df09ff4868b4c848a6d7778872dff5c
null
low
[ { "filename": "src/core/vdom/patch.js", "patch": "@@ -270,7 +270,7 @@ export function createPatchFunction (backend) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true)\n }\n } else if (isPrimitive(vnode.text)) {\n- nodeOps.appendChild(vnode.elm, nodeOps.createTextNod...
facebook/react
32,851
Try not. Do... or do not. Hydrate Suspense Boundaries.
Assertively claim a SuspenseInstance. We already know we're hydrating. If there's no match, it throws anyway. So there's no other code path.
c44e4a250557e53b120e40db8b01fb5fd93f1e35
961b625ab5d180180e836e0c7b221789f0ee336b
3
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -203,7 +203,6 @@ import {\n pushFallbackTreeSuspenseHandler,\n pushOffscreenSuspenseHandler,\n reuseSuspenseHandlerOnStack,\n- popSuspenseHandler,\n } from './ReactFiberSuspenseContext';\n import {\n pushHiddenContex...
huggingface/transformers
42,934
🚨 Fix ConvNeXt image processor default interpolation to BICUBIC
## Summary - Fix default interpolation from BILINEAR to BICUBIC in both `ConvNextImageProcessor` and `ConvNextImageProcessorFast` to match the original ConvNeXt implementation - Update conversion script to explicitly use BICUBIC - Add regression test to verify default interpolation ## Details The original ConvNeXt imp...
null
60634caac9202f42b747bbfb8fef64bb4c813bae
null
low
[ { "filename": "src/transformers/models/convnext/image_processing_convnext.py", "patch": "@@ -78,7 +78,7 @@ class ConvNextImageProcessor(BaseImageProcessor):\n crop_pct (`float` *optional*, defaults to 224 / 256):\n Percentage of the image to crop. Only has an effect if `do_resize` is `Tr...
huggingface/transformers
42,945
[Quantization] Removing misleading int8 quantization in Finegrained FP8
# What does this PR do? instead of falling to int8 quantization, which we don't do for now since we validate that the environment has a `8.9` compute capability at least, we just ask the user to use an other quantization method
af91c0ba849b471a4967931092a187ac0b1125e1
4dc60fd3ff4d3bfae8aa20786f3960728cdb2c4f
1
medium
[ { "filename": "src/transformers/integrations/finegrained_fp8.py", "patch": "@@ -34,14 +34,10 @@\n _FP8_DTYPE = torch.float8_e4m3fn\n _FP8_MIN = torch.finfo(_FP8_DTYPE).min\n _FP8_MAX = torch.finfo(_FP8_DTYPE).max\n- _FP8_IS_INT = False\n except AttributeError:\n- _FP8_DTYPE = torch.int8\n-...
facebook/react
33,046
[Fizz] Reset Instructions on ResumableState
When we end up creating an incomplete state in the shell we end up not flushing anything. As a hack, in this case we need to reset the ResumableState because some of the ResumableState is still relevant (e.g. any preloads that went into headers) but some of the ResumableState needs to be reset since they assume that wh...
143d3e1b89d7f64d607bbfc844d1324b39ed93dc
5dc00d6b2b7798266c1e3b6132f1d076fa9f55d7
6
medium
[ { "filename": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -695,6 +695,7 @@ export function resetResumableState(\n resumableState.scriptResources = {};\n resumableState.moduleUnknownResources = {};\n resumableState.moduleScriptResources = {};\n+ resumableState.instruct...
ollama/ollama
8,388
add new create api doc
This replaces the existing `POST /api/create` documentation in the API docs. It covers the basics of how to create from an existing model, a GGUF file, or a safetensors file. Note that I haven't *yet* included examples for each optional parameter.
103db4216d37e8415c83714f17644e54219e788d
ab39872cb471bed8e0795b097b248c3930faa440
17
medium
[ { "filename": "docs/api.md", "patch": "@@ -928,14 +928,25 @@ A single JSON object is returned:\n POST /api/create\n ```\n \n-Create a model from a [`Modelfile`](./modelfile.md). It is recommended to set `modelfile` to the content of the Modelfile rather than just set `path`. This is a requirement for remote...
vuejs/vue
7,198
fix(props): handle misspelled keys on prop validation object
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No If yes, please describe the impact and migration path for existing applications: **The PR fulfills these requirements:** - [x] It's submitted ...
644274cbd34e14e74e8931fa979b22dc2db04895
d02bb37efb3c4ee14b8cf9db22d1ab3340ba2c0f
10
medium
[ { "filename": "src/core/util/options.js", "patch": "@@ -4,6 +4,7 @@ import config from '../config'\n import { warn } from './debug'\n import { nativeWatch } from './env'\n import { set } from '../observer/index'\n+import { assertPropObject } from './props'\n \n import {\n ASSET_TYPES,\n@@ -293,6 +294,9 @@...
vercel/next.js
88,309
Turbopack: fix task category on reading cells
### What? fix the task category
f24e66adac4972a9b985ce57a6dbc821343ae518
a5f8baf4ddd7dffd00355696631fbed1dea6961a
21
medium
[ { "filename": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -835,10 +835,10 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Having a task_pair here is not optimal, but otherwise this would lead to a race\n // condition. See below.\n /...
huggingface/transformers
42,926
Fp8 dq
# What does this PR do? This PR extend the dq when users don't have compute capability >= 8.9 for fp8.
dd8057afa6b2dcc8f3d7c657f612bb0e494c43c5
af91c0ba849b471a4967931092a187ac0b1125e1
3
high
[ { "filename": "src/transformers/quantizers/quantizer_finegrained_fp8.py", "patch": "@@ -33,7 +33,7 @@ def validate_environment(self, *args, **kwargs):\n return\n \n if not torch.cuda.is_available() and not is_torch_xpu_available():\n- if self.pre_quantized and not self.quantiz...
vuejs/vue
7,258
tweak: return is better when inject has no value
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [ ] Bugf...
3f0c628e2c0fe6bfaecc521c96c6cc12ff24c7c4
8be29e2f193c9503aed2e76e3775e157dbebb576
5
medium
[ { "filename": "src/core/util/options.js", "patch": "@@ -334,6 +334,7 @@ function validatePropObject (\n */\n function normalizeInject (options: Object, vm: ?Component) {\n const inject = options.inject\n+ if (!inject) return\n const normalized = options.inject = {}\n if (Array.isArray(inject)) {\n ...
ggml-org/llama.cpp
19,850
ggml-webgpu: Support non-contiguous `src0` and overlapping `src0/src1` in binary ops
Hello. This PR improves the handling of binary operations in the WebGPU backend, adding support for patterns required by #16857 (MoE expert reduce). The changes are as follows: - The index is now calculated based on stride to support cases where `src0` is a non-contiguous tensor. - This supports cases where `src0`...
null
36a7a6589cf5ea15ae936cd840d4600608eb0e1e
null
low
[ { "filename": "ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp", "patch": "@@ -68,6 +68,7 @@ struct ggml_webgpu_shader_lib_context {\n size_t wg_mem_limit_bytes = 0;\n bool inplace = false;\n bool overlap = false;\n+ bool src_overlap ...
ollama/ollama
8,380
make the modelfile path relative for `ollama create`
Fixes #8353
8bccae4f92bced8222efc04f0b25573df450bb89
32bd37adf805f5224a4fa18c2d4e7f33d9a972d8
3
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -46,9 +46,8 @@ import (\n var errModelfileNotFound = errors.New(\"specified Modelfile wasn't found\")\n \n func getModelfileName(cmd *cobra.Command) (string, error) {\n-\tfn, _ := cmd.Flags().GetString(\"file\")\n+\tfilename, _ := cmd.Flags().GetString(\"file\")\n \n...
facebook/react
33,023
[devtools] Allow inspecting cause, name, message, stack of Errors in props
## Summary These are not enumerable properties (which is why we ommitted those previously) yet they're still interesting. I feel like for Errors special casing is warranted. After: ![CleanShot 2025-04-25 at 18 10 54@2x](https://github.com/user-attachments/assets/440f2715-f4bf-4f53-b6db-737986de7cc5) Before: ...
197d6a040368ee87308225f5534b013cb5512673
c498bfce8b9baa3dd21bd0d5124eb3a4549886f1
13
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js", "patch": "@@ -906,8 +906,8 @@ describe('InspectedElement', () => {\n },\n \"usedRejectedPromise\": {\n \"reason\": Dehydrated {\n- \"preview_short\": Error,\n- \"preview_lon...
ggml-org/llama.cpp
19,772
Clean up per-thread parameter buffer pool and job submission logic
After splitting per-thread state and execution, this is the final cleanup diff. We allow the buffer pool to grow in case of multiple kernels in a command requiring more buffers, remove the inflight_threads logic, and replace it with num_kernels to decide when to submit a batch of commands.
36a7a6589cf5ea15ae936cd840d4600608eb0e1e
4d828bd1ab52773ba9570cc008cf209eb4a8b2f5
1
medium
[ { "filename": "ggml/src/ggml-webgpu/ggml-webgpu.cpp", "patch": "@@ -133,12 +133,28 @@ struct webgpu_buf_pool {\n // which can run on a different thread than the calling thread.\n std::mutex mutex;\n std::condition_variable cv;\n+ size_t cur_pool_size;\n+ size_...
ollama/ollama
7,957
merge llama/ggml into ml/backend/ggml
Branched from #7954 and #7875
35d5d89849e4528a11896beec0834d5f94d1fdfd
09935d3c88763198cf55b2ac950749911cf1e472
1
high
[ { "filename": "ml/backend/ggml/ggml/src/ggml.go", "patch": "@@ -5,6 +5,7 @@ package ggml\n // #cgo CPPFLAGS: -I${SRCDIR}/../include -I${SRCDIR}/ggml-cpu\n // #include <stdlib.h>\n // #include \"ggml-backend.h\"\n+// extern void sink(int level, char *text, void *user_data);\n import \"C\"\n import (\n \t\"lo...
nodejs/node
61,016
lib: enforce use of `URLParse`
There's no reason to use the user-mutable `URL.parse` in core. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull...
null
81e05e124f71b3050cd4e60c95017af975568413
null
low
[ { "filename": "lib/eslint.config_partial.mjs", "patch": "@@ -30,6 +30,10 @@ const noRestrictedSyntax = [\n selector: \"CallExpression[callee.object.name='Error'][callee.property.name='captureStackTrace']\",\n message: \"Use 'hideStackFrames' from 'internal/errors' instead.\",\n },\n+ {\n+ sele...
ollama/ollama
8,194
Mxyng/next llama
d7056e8f86de6c11a0d727393d6c00b7a2ede2fe
f71dc7b5b6c3e5365ba46304a549ed27ebf08222
1
medium
[ { "filename": "discover/gpu.go", "patch": "@@ -719,23 +719,18 @@ func (l GpuInfoList) GetVisibleDevicesEnv() (string, string) {\n func LibraryDirs() []string {\n \t// dependencies can exist wherever we found the runners (e.g. build tree for developers) and relative to the executable\n \t// This can be simpl...
vercel/next.js
88,314
agent.md: Explain where the Next.js core code lives
## What? Explain in agent.md where the Next.js core code lives.
null
4f0d78cb5f8c4a07385a6ea87d1721e40dadc9b3
null
low
[ { "filename": "AGENTS.md", "patch": "@@ -1,5 +1,44 @@\n # Next.js Development Guide\n \n+## Codebase structure\n+\n+### Monorepo Overview\n+\n+This is a pnpm monorepo containing the Next.js framework and related packages.\n+\n+```\n+next.js/\n+├── packages/ # Published npm packages\n+├── turbopack...
electron/electron
49,130
fix: run toast creation on background thread
Backport of #49106 See that PR for details. Notes: Fixed a Windows notification issue where clicking a native notification would result in an application hang on certain Windows environments.
null
6e97bca80d01af2d4d1ee550f0a8b2d713cb7c73
null
low
[ { "filename": "shell/browser/notifications/notification.cc", "patch": "@@ -14,6 +14,12 @@ const bool debug_notifications =\n base::Environment::Create()->HasVar(\"ELECTRON_DEBUG_NOTIFICATIONS\");\n \n NotificationOptions::NotificationOptions() = default;\n+NotificationOptions::NotificationOptions(const ...
nodejs/node
61,012
fs: detect dot files when using globstar
Using globstar in glob pattern prevents dot (hidden) files from being matched Fixes: https://github.com/nodejs/node/issues/56321 <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines ...
79df8b209b00fd1d4e5343fa036e5c1eb80f43e1
4db307a4b0fcd804c790caa55573c2bb7b4a8a02
2
medium
[ { "filename": "lib/internal/fs/glob.js", "patch": "@@ -442,7 +442,18 @@ class Glob {\n const fromSymlink = pattern.symlinks.has(index);\n \n if (current === lazyMinimatch().GLOBSTAR) {\n- if (entry.name[0] === '.' || (this.#exclude && this.#exclude(this.#withFileTypes ? entry : entr...
ollama/ollama
8,351
better client error for /api/create
This change shows a mode descriptive error in the client w/ the `POST /api/create` endpoint if the client has been refreshed but the server hasn't been updated.
86a622cbdc69e9fd501764ff7565e977fc98f00a
8bccae4f92bced8222efc04f0b25573df450bb89
8
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -162,6 +162,9 @@ func CreateHandler(cmd *cobra.Command, args []string) error {\n \t}\n \n \tif err := client.Create(cmd.Context(), req, fn); err != nil {\n+\t\tif strings.Contains(err.Error(), \"path or Modelfile are required\") {\n+\t\t\treturn fmt.Errorf(\"the olla...
huggingface/transformers
42,935
[Tests] Fix CompressedTensors tests
## Purpose ## * Fix failing compressed tensors tests which referenced deleted models ## Changes ## * Refactor compressed tensors tests to check for perplexity, rather than exact output matches * Update model stubs to use up-to-date models ## Testing ## * Newly refactored tests pass locally ### Suggested Re...
null
0a8465420eecbac1c6d7dd9f45c08dd96b8c5027
null
low
[ { "filename": "tests/quantization/compressed_tensors_integration/test_compressed_tensors.py", "patch": "@@ -1,15 +1,8 @@\n import gc\n import unittest\n-from unittest import skip\n \n from transformers import AutoModelForCausalLM, AutoTokenizer, CompressedTensorsConfig\n-from transformers.testing_utils impo...
vuejs/vue
7,224
fix(compiler): fix double escaping of ssrNode attribute values (fix #7223)
This fixes a double escaping of attribute values in the SSR optimizing compiler, because literal attribute values get escaped early during the call to `addAttr` inside `processAttrs` before it is known, if this attribute will be serialized to an _ssrNode string template. Later on the _ssrNode string template gets...
null
73a89bf9e53c0f7f00f193e1b1bb195a71ab761f
null
low
[ { "filename": "src/server/optimizing-compiler/modules.js", "patch": "@@ -77,7 +77,7 @@ function genAttrSegment (name: string, value: string): StringSegment {\n ? ` ${name}=\"${name}\"`\n : value === '\"\"'\n ? ` ${name}`\n- : ` ${name}=${value}`\n+ : ` ${name}=\"$...
ggml-org/llama.cpp
19,952
scripts : improve get-wikitext-2.sh
Switch to sh, add curl fallback, and avoid redundant downloads
null
ec88c3ceeaaa037dc8a80413c566ed6d71d9e85c
null
low
[ { "filename": "scripts/get-wikitext-2.sh", "patch": "@@ -1,11 +1,43 @@\n-#!/usr/bin/env bash\n+#!/bin/sh\n+# vim: set ts=4 sw=4 et:\n \n-wget https://huggingface.co/datasets/ggml-org/ci/resolve/main/wikitext-2-raw-v1.zip\n-unzip wikitext-2-raw-v1.zip\n+ZIP=\"wikitext-2-raw-v1.zip\"\n+FILE=\"wikitext-2-raw/w...
facebook/react
32,991
[compiler] Patch for reactive refs in inferred effect dependencies
Inferred effect dependencies and inlined jsx (both experimental features) rely on `InferReactivePlaces` to determine their dependencies. Since adding type inference for phi nodes (https://github.com/facebook/react/pull/30796), we have been incorrectly inferring stable-typed value blocks (e.g. `props.cond ? setState1...
null
2d0a5e399f195bfc98fc5e1efa37aab9fa53e097
null
low
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1738,6 +1738,40 @@ export function isStableType(id: Identifier): boolean {\n );\n }\n \n+export function isStableTypeContainer(id: Identifier): boolean {\n+ const type_ = id.type;\n+ if (type_.kind !== 'Object') ...
ollama/ollama
8,343
OpenAI: accept additional headers to fix CORS error #8342
Related to #8342, I add some optional header for openai npm package.
86a622cbdc69e9fd501764ff7565e977fc98f00a
6ae2adc1af9199dd348c30070c9b2e26699a5169
7
medium
[ { "filename": "server/routes.go", "patch": "@@ -1131,7 +1131,7 @@ func (s *Server) GenerateRoutes() http.Handler {\n \tconfig.AllowWildcard = true\n \tconfig.AllowBrowserExtensions = true\n \tconfig.AllowHeaders = []string{\"Authorization\", \"Content-Type\", \"User-Agent\", \"Accept\", \"X-Requested-With\"...
huggingface/transformers
42,940
[Quantization] Misc tests fixes
# What does this PR do? Fixing various Quantization tests
d3d4b6299dbf1882a76ef82985a1506c889d762f
d7dd443a4cdbdc39b8d45c98f3edd2c0840bdbcb
1
medium
[ { "filename": "src/transformers/conversion_mapping.py", "patch": "@@ -142,12 +142,12 @@ def _build_checkpoint_conversion_mapping():\n if hasattr(torch.nn.utils.parametrizations, \"weight_norm\"):\n mapping[\"legacy\"] += [\n WeightRenaming(\n- source_patterns=\"weight_...
ollama/ollama
8,350
readme: add phi4 model
readme: add phi4 model
459d822b5188dba051e21dfd15b6552543a4bbcf
57f038ec7b4b71113924b7513319a1005c476f2d
6
medium
[ { "filename": "README.md", "patch": "@@ -58,8 +58,8 @@ Here are some example models that can be downloaded:\n | Llama 3.2 Vision | 90B | 55GB | `ollama run llama3.2-vision:90b` |\n | Llama 3.1 | 8B | 4.7GB | `ollama run llama3.1` |\n | Llama 3.1 | 405B | ...
vercel/next.js
88,230
Remove loadConfig from main development process, pass value from child process
## Eliminate duplicate `loadConfig` calls during development server startup ### What? Remove duplicate `loadConfig` calls from the parent process (`next-dev.ts`) by passing `distDir` via IPC from the child process where config is already loaded. ### Why? Previously, when booting the development server: 1. The **ch...
41e3f93e3621032d3855d486bd19578cbe541b9a
1ea5b07850ff93c3aa094df742700491408e8300
26
medium
[ { "filename": "packages/next/src/cli/next-dev.ts", "patch": "@@ -16,12 +16,9 @@ import {\n } from '../server/lib/utils'\n import * as Log from '../build/output/log'\n import { getProjectDir } from '../lib/get-project-dir'\n-import { PHASE_DEVELOPMENT_SERVER } from '../shared/lib/constants'\n import path fro...
electron/electron
49,129
fix: run toast creation on background thread
Backport of #49106 See that PR for details. Notes: Fixed a Windows notification issue where clicking a native notification would result in an application hang on certain Windows environments.
null
0656e76c257a63af510476362ad70860177e00de
null
low
[ { "filename": "shell/browser/notifications/notification.cc", "patch": "@@ -14,6 +14,12 @@ const bool debug_notifications =\n base::Environment::Create()->HasVar(\"ELECTRON_DEBUG_NOTIFICATIONS\");\n \n NotificationOptions::NotificationOptions() = default;\n+NotificationOptions::NotificationOptions(const ...
huggingface/transformers
42,389
[`Mistral Tokenizers`] Fix tokenizer detection
As per title, now checks for the model type properly and adds sanity check for v5+ Fixes #42374 Fixes #42378 Fixes #42369 Closes #42379 Closes #42388
f221a3b46b4ab5b5efe24f0120446af396f8fc4b
b6055550a15a8fab367cf983b743ff68cc58d81a
14
medium
[ { "filename": "src/transformers/tokenization_utils_base.py", "patch": "@@ -2099,12 +2099,13 @@ def from_pretrained(\n template = template.removesuffix(\".jinja\")\n vocab_files[f\"chat_template_{template}\"] = f\"{CHAT_TEMPLATE_DIR}/{template}.jinja\"\...
nodejs/node
60,985
meta: move one or more collaborators to emeritus
This PR was generated by the [`find-inactive-collaborators.yml` workflow](https://github.com/nodejs/node/blob/main/.github/workflows/find-inactive-collaborators.yml). @nodejs/tsc Please follow up with the [offboarding tasks](https://github.com/nodejs/node/blob/main/doc/contributing/offboarding.md).
null
29477c5b0059bbc5ce8bdfe75415cc886e604a59
null
low
[ { "filename": "README.md", "patch": "@@ -379,8 +379,6 @@ For information about the governance of the Node.js project, see\n **Jordan Harband** <<ljharb@gmail.com>>\n * [lpinca](https://github.com/lpinca) -\n **Luigi Pinca** <<luigipinca@gmail.com>> (he/him)\n-* [lukekarrys](https://github.com/lukekarrys...
ggml-org/llama.cpp
20,032
ggml-cpu: optimise s390x multiply extend instructions
This PR optimizes the multiply extend vector instructions for Q4_0, Q4_K, Q5_K, and Q6_K quantizations by using the fused multiply-add instruction instead of separating them into multiple instruction calls. We notice a performance improvement of about 28.77% and 16.35% for Prompt Processing and Token Generation respect...
null
2afcdb9777b1bac79fa4bfe284b9bf23085b0469
null
low
[ { "filename": "ggml/src/ggml-cpu/arch/s390/quants.c", "patch": "@@ -181,11 +181,11 @@ void ggml_vec_dot_q4_0_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const voi\n const int8x16_t v_yh = vec_xl(QK8_0/2, y[ib].qs);\n \n const int16x8_t v_xylso = vec_mulo(v_xls, v_yl);\n- const int...
facebook/react
33,026
[ci] Reduce non-deterministic builds for eslint-plugin-react-hooks
See https://github.com/rollup/plugins/issues/1425 Currently, `@babel/helper-string-parser/lib/index.js` is either emitted as a wrapped esmodule or inline depending on the ordering of async functions in `rollup/commonjs`. Specifically, `@babel/types/lib/definitions/core.js` is cyclic (i.e. transitively depends upon i...
null
0c28a09eefaa0e70a313644fd8e455c8ab7ba3eb
null
low
[ { "filename": "scripts/rollup/build.js", "patch": "@@ -393,7 +393,8 @@ function getPlugins(\n };\n },\n },\n- bundle.tsconfig != null ? commonjs() : false,\n+ // See https://github.com/rollup/plugins/issues/1425\n+ bundle.tsconfig != null ? commonjs({strict...
vuejs/vue
7,192
Fix 7191 - data arg merge
Fix #7191 <!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one)...
null
bd4819e6cf1c8d70d25aba2636e01f40faf59443
null
low
[ { "filename": "src/core/util/options.js", "patch": "@@ -85,18 +85,18 @@ export function mergeDataOrFn (\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n- typeof childVal === 'function' ? childVal.call(this) : childVal,\n- ...
ollama/ollama
8,284
Add CUSTOM_CPU_FLAGS to Dockerfile.
Allow docker images to be built with custom flags. Fixes: #7622
null
cdf3a181dcdb42ba72d9162c4f3461f218c33d5f
null
low
[ { "filename": "Dockerfile", "patch": "@@ -67,6 +67,7 @@ ARG OLLAMA_SKIP_CUDA_GENERATE\n ARG OLLAMA_SKIP_ROCM_GENERATE\n ARG OLLAMA_FAST_BUILD\n ARG VERSION\n+ARG CUSTOM_CPU_FLAGS\n RUN --mount=type=cache,target=/root/.ccache \\\n if grep \"^flags\" /proc/cpuinfo|grep avx>/dev/null; then \\\n mak...
nodejs/node
60,246
sqlite: make `SQLTagStore.prototype.size` a getter
As implemented, `.db` and `.capacity` are getters, and `.size` is a callable method. There's no reason for this inconsistency, so change `.size` to a getter. Drive-by changes while making alterations to the class template: the `FunctionCallbackInfo` parameter for SQLTagStore member functions was variably labelled `a...
47d8b88868efeddf6439b766dbb8984303f8758f
a1f421feb61d8bb8c55c8d83798fd62f8a5fa10c
8
medium
[ { "filename": "doc/api/sqlite.md", "patch": "@@ -1076,13 +1076,17 @@ Executes the given SQL query, which is expected to not return any rows (e.g., IN\n This function is intended to be used as a template literal tag, not to be\n called directly.\n \n-### `sqlTagStore.size()`\n+### `sqlTagStore.size`\n \n <!-...
vercel/next.js
88,274
Turbopack: remove unused code
<!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - Run `pnpm prettier-f...
null
abf056b36f06442abb16847f8da9edf130e61026
null
low
[ { "filename": "turbopack/crates/turbopack-core/src/chunk/containment_tree.rs", "patch": "@@ -1,278 +0,0 @@\n-use std::{cell::RefCell, mem::take, rc::Rc};\n-\n-use anyhow::Result;\n-use turbo_tasks::{FxIndexMap, FxIndexSet, TryJoinIterExt};\n-\n-#[derive(Debug, Default, Clone, Eq, PartialEq)]\n-pub struct Co...
electron/electron
44,729
fix: destroy url loader wrapper when JS env exits
Backport of #44574 See that PR for details. Notes: fix crash in net api when utility process exits.
null
8b2496af1a380c5c366630d9fd69d2489d9b2298
null
low
[ { "filename": "shell/common/api/electron_api_url_loader.cc", "patch": "@@ -380,13 +380,13 @@ void SimpleURLLoaderWrapper::Start() {\n loader_->SetAllowHttpErrorResults(true);\n loader_->SetURLLoaderFactoryOptions(request_options_);\n loader_->SetOnResponseStartedCallback(base::BindOnce(\n- &Simpl...
facebook/react
33,014
Rename Suspense unstable_name to name
This was only used by Transition Tracing which isn't really used anywhere. However, we want to start using it for other DevTools.
3ef31d196a83e45d4c70b300a265a9c657c386b4
693803a9bb3073b2ff5c99f8ae804f855db9aae2
18
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -1062,9 +1062,9 @@ function commitTransitionProgress(offscreenFiber: Fiber) {\n if (\n parent !== null &&\n parent.tag === SuspenseComponent &&\n- parent.memoizedProps.unstable_name\n+ parent.memoiz...
huggingface/transformers
42,459
[`CI`] Add to run slow
As per title
null
e2e411c42b1fff2a5f988170def15ca47739fd15
null
low
[ { "filename": ".github/workflows/self-comment-ci.yml", "patch": "@@ -27,7 +27,7 @@ env:\n jobs:\n get-pr-number:\n name: Get PR number\n- if: ${{ github.event.issue.state == 'open' && contains(fromJSON('[\"ydshieh\", \"ArthurZucker\", \"zucchini-nlp\", \"molbap\", \"gante\", \"LysandreJik\", \"Cyri...
ggml-org/llama.cpp
11,658
build : fix llama.pc
This PR fixes the directory where the `llama.pc` is installed and make sure that the correct `lib` directory is used.
null
c0d4843225eed38903ea71ef302a02fa0b27f048
null
low
[ { "filename": "CMakeLists.txt", "patch": "@@ -233,4 +233,4 @@ configure_file(cmake/llama.pc.in\n @ONLY)\n \n install(FILES \"${CMAKE_CURRENT_BINARY_DIR}/llama.pc\"\n- DESTINATION lib/pkgconfig)\n+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)", "additions": 1, "deletions": 1 ...
vuejs/vue
7,154
fix(weex): send createFinish signal after root component mounted
**What kind of change does this PR introduce?** - [x] Bugfix **Does this PR introduce a breaking change?** - [x] No **Other information:** Make sure the timing of sending the "createFinish" signal is more reasonable, even if using asynchronous rendering (Call `new Vue()` in Promise or timer).
null
0da8bced77654beb14c39ff3b4543b2ef37d1aff
null
low
[ { "filename": "src/platforms/weex/entry-framework.js", "patch": "@@ -61,12 +61,8 @@ export function createInstance (\n }, timerAPIs, env.services)\n \n appCode = `(function(global){ \\n${appCode}\\n })(Object.create(this))`\n-\n callFunction(instanceVars, appCode)\n \n- // Send `createFinish` signal ...
electron/electron
49,125
build(deps): bump actions/checkout from 4.2.2 to 6.0.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update README t...
ba5f7d272f776a541bb6b8fcee292e0503c87684
1b3fc9c174998292a3156be792e5008a12a403ea
4
medium
[ { "filename": ".github/workflows/macos-disk-cleanup.yml", "patch": "@@ -25,7 +25,7 @@ jobs:\n contents: read\n steps:\n - name: Checkout\n- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb...
ollama/ollama
8,307
fix: correct endpoint URL to avoid 404 error
null
3919f4ba3d0c40f50b4b89474e3306a900a15eed
null
low
[ { "filename": "llama/runner/README.md", "patch": "@@ -17,5 +17,5 @@ curl -X POST -H \"Content-Type: application/json\" -d '{\"prompt\": \"hi\"}' http://lo\n ### Embeddings\n \n ```\n-curl -X POST -H \"Content-Type: application/json\" -d '{\"prompt\": \"turn me into an embedding\"}' http://localhost:8080/emb...
vuejs/vue
7,126
fix ts types: use object and string instead of Object and String
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [x] Bugf...
a71e653108e4ba56a70107662f3ee30cead59c18
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
1
medium
[ { "filename": "types/options.d.ts", "patch": "@@ -58,12 +58,12 @@ export interface ComponentOptions<\n PropsDef=PropsDefinition<DefaultProps>> {\n data?: Data;\n props?: PropsDef;\n- propsData?: Object;\n+ propsData?: object;\n computed?: Accessors<Computed>;\n methods?: Methods;\n watch?: Rec...
electron/electron
49,124
build(deps): bump github/codeql-action from 4.31.5 to 4.31.6
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.5 to 4.31.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p> <blockquote> <h2>v4.31.6</h2> <h1>CodeQL Action Changelog</...
64326e296b534e743307acbb555bf5017c00eb32
c51018281fbbd2ca06cd5b53f3737ed848e255ae
13
medium
[ { "filename": ".github/workflows/scorecards.yml", "patch": "@@ -50,6 +50,6 @@ jobs:\n \n # Upload the results to GitHub's code scanning dashboard.\n - name: \"Upload to code-scanning\"\n- uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v3.29.5\n+ ...
nodejs/node
60,286
doc: add File modes cross-references in fs methods
Adds cross-references to the File modes section from methods that use the `mode` parameter, improving discoverability of file permission documentation. ### Changes - Added `[File modes][]` links in `fsPromises.open()`, `fsPromises.mkdir()`, and `fs.mkdir()` parameter documentation - Added `[File modes]: #file-mode...
null
7674f989aa2d1387d3923f73809c125d2d5680de
null
low
[ { "filename": "doc/api/fs.md", "patch": "@@ -1231,7 +1231,8 @@ added: v10.0.0\n * `path` {string|Buffer|URL}\n * `options` {Object|integer}\n * `recursive` {boolean} **Default:** `false`\n- * `mode` {string|integer} Not supported on Windows. **Default:** `0o777`.\n+ * `mode` {string|integer} Not support...
vercel/next.js
88,273
Turbopack: escape colon in output names
Closes https://github.com/vercel/next.js/issues/87811 It causes problems on some filesystems, apparently. ``` Error: EINVAL: invalid argument, copyfile 'C:\plat\nf\.next\server\chunks\ssr\[externals]_node:buffer_00e2e67a._.js' -> 'C:\plat\nf\.next\standalone\.next\server\chunks\ssr\[externals]_node:buffer_00e2e67a._....
null
6bd4aaca8d265bb77ae42fa3c1f28fff06eeb33a
null
low
[ { "filename": "turbopack/crates/turbopack-core/src/ident.rs", "patch": "@@ -223,9 +223,9 @@ impl AssetIdent {\n // For clippy -- This explicit deref is necessary\n let path = &self.path;\n let mut name = if let Some(inner) = context_path.get_path_to(path) {\n- clean_separa...
facebook/react
32,983
[compiler] Add changelog
Adds CHANGELOG.md. This entry contains changes from the very first beta `19.0.0-beta-9ee70a1-20241017` to `19.1.0-rc.1`.
null
24dfad3abb2786e96ff7efe90ab9fff5644af9f0
null
low
[ { "filename": "compiler/CHANGELOG.md", "patch": "@@ -0,0 +1,59 @@\n+## 19.1.0-rc.1 (April 21, 2025)\n+\n+## eslint-plugin-react-hooks\n+* Temporarily disable ref access in render validation [#32839](https://github.com/facebook/react/pull/32839) by [@poteto](https://github.com/poteto)\n+* Fix type error with...
vuejs/vue
7,135
fix(types): bump ts version and fix typing bugs
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No **The PR fulfills these requirements:** - [x] It's submitted to the `dev` branch for v2.x (or to a previous version branch), _not_ the `master` b...
b0bbcbd152782bcc8d5ad5e9c9e5842e1daf1afb
a71e653108e4ba56a70107662f3ee30cead59c18
12
medium
[ { "filename": "package-lock.json", "patch": "@@ -42,16 +42,6 @@\n \"@types/uglify-js\": \"2.6.29\"\n }\n },\n- \"JSONStream\": {\n- \"version\": \"1.3.1\",\n- \"resolved\": \"https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz\",\n- \"integrity\": \"sha1-cH92HgHa...
electron/electron
49,123
build: gate brew commands in free-space-macos action
The brew uninstall and autoremove commands now only run if brew is available on the machine. This prevents failures on runners where Homebrew is not installed (such as the intel mac runner which we don't use but do track free space on for science) _Written by Claude and reviewed by @MarshallOfSound before opening PR...
7aafe66717b7a926379291d254483ec3b3d8198c
8ce97df569f313d5a28ad702ead71bd2be648873
1
high
[ { "filename": ".github/actions/free-space-macos/action.yml", "patch": "@@ -80,8 +80,10 @@ runs:\n sudo rm -rf /Users/runner/.rustup\n \n # remove homebrew packages we don't need\n- brew uninstall -f --zap aws-sam-cli session-manager-plugin gcc gcc@13 gcc@14 llvm@18 gradle maven ant az...
electron/electron
49,120
fix: rename RUNNER_NAME to MATRIX_RUNNER in disk cleanup workflow
Shoutout to GitHub Actions for silently overriding `RUNNER_NAME` if you try use that variable name 🙃 This should actually use the right variable now. _Written by Claude and reviewed by @MarshallOfSound before opening PR_ Notes: no-notes
6b50b5e81648814367ffa4583bbaff2b6c7c25fa
ba5f7d272f776a541bb6b8fcee292e0503c87684
1
high
[ { "filename": ".github/workflows/macos-disk-cleanup.yml", "patch": "@@ -59,7 +59,7 @@ jobs:\n DD_API_KEY: ${{ secrets.DD_API_KEY }}\n FREE_BEFORE: ${{ steps.disk-before.outputs.free_kb }}\n FREE_AFTER: ${{ steps.disk-after.outputs.free_kb }}\n- RUNNER_NAME: ${{ matrix....
huggingface/transformers
42,487
[`CI`] Fix copies
Previous PR merged without syncing with main --> new model --> out of sync
null
01823d7e46018acef1b603022e092c1271f6b4c1
null
low
[ { "filename": "src/transformers/models/nanochat/modeling_nanochat.py", "patch": "@@ -30,6 +30,7 @@\n from ...activations import ACT2FN\n from ...cache_utils import Cache, DynamicCache\n from ...generation import GenerationMixin\n+from ...integrations import use_kernel_func_from_hub\n from ...masking_utils i...
ggml-org/llama.cpp
19,999
cuda: fix grid.y overflow in non-contiguous dequantize/convert kernels
The `dequantize_block` and `convert_unary` kernels pass `ne01` directly as the CUDA grid y-dimension, but grid.y is limited to 65535. When `ne01` exceeds this, the kernel launch fails with `cudaErrorInvalidConfiguration`. This happens when using `llama-server` with flash attention, quantized KV cache, multiple paral...
null
66d65ec29ba7c440cbc31b6f63b74a17b536ba65
null
low
[ { "filename": "ggml/src/ggml-cuda/convert.cu", "patch": "@@ -16,27 +16,27 @@ static __global__ void dequantize_block(const void * __restrict__ vx, dst_t * __\n return;\n }\n \n- const int64_t i01 = blockIdx.y;\n-\n- for (int64_t i0203 = blockIdx.z; i0203 < ne0203; i0203 += gridDim.z) {\n- ...
ollama/ollama
8,298
api: remove unused create fields
These fields are deprecated, but specifying them will not do anything. Removing them as the other deprecated fields will still work, but these do not, so they dont match our existing pattern.
null
2d33c4e97dd010d1918c907d6805def57d79016a
null
low
[ { "filename": "discover/gpu.go", "patch": "@@ -542,7 +542,6 @@ func FindGPULibs(baseLibName string, defaultPatterns []string) []string {\n \tpatterns = append(patterns, defaultPatterns...)\n \tslog.Debug(\"gpu library search\", \"globs\", patterns)\n \tfor _, pattern := range patterns {\n-\n \t\t// Nvidia P...
facebook/react
33,003
[compiler] Fix copyright script
Don't try to open directories --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33003). * #33004 * __->__ #33003 * #33002
null
8b9629c8106b55965ac6e4f078110b484b358101
null
low
[ { "filename": "compiler/scripts/copyright.js", "patch": "@@ -51,6 +51,9 @@ if (hasErrors) {\n }\n \n function processFile(file) {\n+ if (fs.lstatSync(file).isDirectory()) {\n+ return;\n+ }\n let source = fs.readFileSync(file, 'utf8');\n \n if (source.indexOf(META_COPYRIGHT_COMMENT_BLOCK) === 0) {",...
vercel/next.js
88,287
[test] Add a failing test for cycle serialization in segment prefetches
Requires a fix in React to pass (possibly https://github.com/facebook/react/pull/35471). closes #86401
null
a6b2d2e81ba4815533f958da53ee2812e72d28a7
null
low
[ { "filename": "test/e2e/app-dir/segment-cache/basic/app/cycle/client.tsx", "patch": "@@ -0,0 +1,9 @@\n+'use client'\n+\n+export function ClientComponent({ testProp }: { testProp: { self: unknown } }) {\n+ return (\n+ <div id=\"cycle-check\">\n+ {testProp.self === testProp ? 'Cycle resolved' : 'Cycl...
vuejs/vue
7,098
Make callback optional when providing context
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - [ ] Bu...
null
3554eb27269e151a0ef3d8c4ad9b29ec6664c471
null
low
[ { "filename": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -18,6 +18,7 @@ interface Renderer {\n interface BundleRenderer {\n renderToString(callback: RenderCallback): void;\n renderToString(context: object, callback: RenderCallback): void;\n+ renderToString(context: object): Promise<s...
nodejs/node
60,995
test: mark stringbytes-external-max flaky on AIX
Another one in the set of tests marked flaky on AIX under https://github.com/nodejs/node/pull/60565 - this is also exhibiting intermittent failing behaviour and is causing issues for PRs such as https://github.com/nodejs/node/pull/60962#issuecomment-3620423149 (which was on v24 so I'll backport to there once this is in...
null
e28656a6172c35d88a472e33894a11f0e9f98eee
null
low
[ { "filename": "test/addons/addons.status", "patch": "@@ -23,6 +23,7 @@ register-signal-handler/test: PASS,FLAKY\n \n [$system==aix]\n # https://github.com/nodejs/node/issues/60494\n+stringbytes-external-exceed-max/test-stringbytes-external-at-max: PASS,FLAKY\n stringbytes-external-exceed-max/test-stringbyte...
facebook/react
33,011
[forgive][ez] Tweak logging
Just some tweaks --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33011). * #33012 * __->__ #33011 * #33010
3a5335676f7df4318e8e399f8f69e880db724f78
2af218a7287e3ed5d41ff0ba6cb826850646f47c
5
medium
[ { "filename": "compiler/packages/react-forgive/server/src/index.ts", "patch": "@@ -132,7 +132,7 @@ connection.onInitialized(() => {\n });\n \n documents.onDidChangeContent(async event => {\n- connection.console.info(`Changed: ${event.document.uri}`);\n+ connection.console.info(`Compiling: ${event.document...
electron/electron
49,119
ci: add nightly macOS disk space cleanup workflow
Add a scheduled GitHub Action that runs every night to: - Run the existing disk space reclaimer on macOS runners - Log disk space metrics (before/after cleanup, space freed) to Datadog This helps monitor disk space trends and proactively maintain runner health after recent "No space left on device" failures. _W...
null
6b50b5e81648814367ffa4583bbaff2b6c7c25fa
null
low
[ { "filename": ".github/workflows/macos-disk-cleanup.yml", "patch": "@@ -0,0 +1,104 @@\n+name: macOS Disk Space Cleanup\n+\n+# Description:\n+# This workflow runs the disk space reclaimer on macOS runners every night\n+# and logs disk space metrics to Datadog for monitoring.\n+\n+on:\n+ schedule:\n+ - cr...
ggml-org/llama.cpp
19,375
models : optimizing qwen3next graph
Rewording the ggml compute graph to avoid too many unnecessary copies. M2 Ultra: | Model | Test | t/s b7946 | t/s gg/qwen3-next-opt | Speedup | |:-------------------------|:-------|------------:|------------------------:|----------:| | qwen3next 80B.A3B Q4_0 | pp1 | 37.92 |...
0e219914723695e5e0a1d470c6dbe44e304a8270
1725e316c1a780759ec134ca5a2999f4d53ce273
19
medium
[ { "filename": "ggml/src/ggml-cuda/ggml-cuda.cu", "patch": "@@ -2872,6 +2872,7 @@ static bool ggml_cuda_graph_check_compability(ggml_cgraph * cgraph) {\n const std::string ffn_moe_down_bias_prefix = \"ffn_moe_down_biased\";\n const std::string nemotron_h_block_out_prefix = \"nemotron_h_block_out\";\n...
huggingface/transformers
42,535
Fix ernie moe
As per title
2dba972530b405d70a49f8f7338590db6722843e
0fa49db1205e0a2745161ccac46184e7e46b6e2b
28
medium
[ { "filename": "src/transformers/models/ernie4_5_moe/modeling_ernie4_5_moe.py", "patch": "@@ -318,51 +318,41 @@ def forward(self, hidden_states):\n \n \n class Ernie4_5_MoeExperts(nn.Module):\n+ \"\"\"Collection of expert weights stored as 3D tensors.\"\"\"\n+\n def __init__(self, config):\n s...
electron/electron
49,085
ci: don't build yarn modules for linux arm
Backport of #49031 See that PR for details. Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
3e6dd7f77106301b3a48fe0618a31e1d896a6a6b
9692c9ea58b11ffc088e03278db09db171473b60
7
medium
[ { "filename": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ...
ollama/ollama
3,602
examples: Update imports for deprecation
From the error message: Importing from langchain will no longer be supported as of langchain 0.2.0. Please import from langchain-community instead.
null
844899440a02815c02131febc9fdeb435185ec2a
null
low
[ { "filename": "examples/langchain-python-rag-document/main.py", "patch": "@@ -1,8 +1,8 @@\n-from langchain.document_loaders import OnlinePDFLoader\n-from langchain.vectorstores import Chroma\n-from langchain.embeddings import GPT4AllEmbeddings\n-from langchain import PromptTemplate\n-from langchain.llms imp...
ggml-org/llama.cpp
19,914
vendors: update miniaudio library to 0.11.24
https://github.com/mackron/miniaudio/releases/tag/0.11.24. # v0.11.24 - 2026-01-17 - Fixed a possible glitch when processing the audio of a `ma_sound` when doing resampling. - Fixed a possible crash in the node graph relating to scheduled starts and stops. - Fixed a bug where MA\_NO\_DECODING would disabl...
4720819d45e2f775b672b94ca59b278a31684b1e
05728db18eea59de81ee3a7699739daaf015206b
1
medium
[ { "filename": "scripts/sync_vendor.py", "patch": "@@ -14,8 +14,8 @@\n \"https://raw.githubusercontent.com/nothings/stb/refs/heads/master/stb_image.h\": \"vendor/stb/stb_image.h\",\n \n # not using latest tag to avoid this issue: https://github.com/ggml-org/llama.cpp/pull/17179#discussion_r2515877926...
vuejs/vue
7,080
fix reactive objects which are sealed
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No I am using this helper method to...
5db86b4e94857fdde3ae6b71e24da637bc116baa
4c22d1d17ffd3a9340c3b17443c7989d04ab14c5
14
medium
[ { "filename": "src/core/observer/traverse.js", "patch": "@@ -18,7 +18,7 @@ export function traverse (val: any) {\n function _traverse (val: any, seen: SimpleSet) {\n let i, keys\n const isA = Array.isArray(val)\n- if ((!isA && !isObject(val)) || !Object.isExtensible(val)) {\n+ if ((!isA && !isObject(v...
ollama/ollama
7,259
Adding Yacana Multi-Agent Framework to the List of Community Integrations
**Adding Yacana Multi-Agent Framework to the List of Community Integrations** Yacana is a user-friendly multi-agent framework designed to harness the power of local open-source LLMs. It offers a smooth learning curve while delivering powerful capabilities, such as brainstorming, workflow creation, and an industry-le...
369fb529e2fc0483fac4a78a2511126b5942ad29
07f7e69b3612bcbbc55d681f693ed5354233eec5
2
high
[ { "filename": "README.md", "patch": "@@ -431,6 +431,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LangChain](https://python.langchain.com/docs/integrations/llms/ollama) and [LangChain.js](https://js.langchain.com/docs/integrations/chat/ollama/) with [example](https://js.langchain.c...
nodejs/node
60,994
doc: mark crypto.hash as stable
This API has been stable for the past year and it's used enough in the wild that we are unlikely to make any breaking changes without going semver-major. Mark it as stable. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - ...
null
159f9c203b16b9cbdb1252c9b90353e3e8ceb6c9
null
low
[ { "filename": "doc/api/crypto.md", "patch": "@@ -4526,13 +4526,14 @@ added:\n - v21.7.0\n - v20.12.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60994\n+ description: This API is no longer experimental.\n - version: v24.4.0\n pr-url: https://github.com/no...
electron/electron
49,031
ci: don't build yarn modules for linux arm
- Followup to #48243. After the yarn v4 we occasionally see out of memory errors when testing on linux arm 32 bit. This should fix those oom errors by building yarn modules for linux arm 32 bit. We lose some test coverage doing so, but it is better than having to constantly rekick the testing jobs. #### Descript...
203540c8aad6ac91a56933238fd33db95e027393
20c7042a20da0f1f0b5582b289da465fb34db8a7
13
medium
[ { "filename": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ...
ollama/ollama
8,236
Update README.md
New extention contribution
023e4bca144da199e6a6dc11d04c9e23623c9482
369fb529e2fc0483fac4a78a2511126b5942ad29
1
high
[ { "filename": "README.md", "patch": "@@ -523,6 +523,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [AI Summmary Helper plugin](https://github.com/philffm/ai-summary-helper)\n - [TextCraft](https://github.com/suncloudsmoon/TextCraft) (Copilot in Word alternative using Ollama)\n - [Alf...
vercel/next.js
88,260
Update Rspack development test manifest
This auto-generated PR updates the development integration test manifest used when testing Rspack.
null
3dc0366cc691dbd9cf05ff43bbd238b38578e4f6
null
low
[ { "filename": "test/rspack-dev-tests-manifest.json", "patch": "@@ -1872,6 +1872,26 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/development/dev-cache-control-no-cache-disabled/dev-cache-control-no-cache-disabled.test.ts\": {\n+ \"passed\": [\n+ \"experimental.devCacheCont...
huggingface/transformers
42,653
[`Ernie 4.5 Moe`] Fix routing, weights, and update expectations
As per title, discovered during ernie vl
e17b1b85e3a895c2b3d44f647270ecc8466f4095
4e7cecb24d5ee9e41e488bebba69151faf6e3e4d
19
medium
[ { "filename": "src/transformers/conversion_mapping.py", "patch": "@@ -166,6 +166,9 @@ def _build_checkpoint_conversion_mapping():\n mapping[\"deepseek_v3\"] = mapping[\"qwen2_moe\"].copy()\n mapping[\"dots1\"] = mapping[\"qwen2_moe\"].copy()\n mapping[\"ernie4_5_moe\"] = mapping[\"qwen2_moe\"].c...
ollama/ollama
8,227
README.md inclusion of a project alpaca
Alpaca An Ollama client application for linux and macos made with GTK4 and Adwaita https://github.com/ollama/ollama/issues/8220
ffe35490645bcde264866c4d3d435c4c3cc5d34c
51af455f624598deee3960d3e9b1837225a97b0b
1
high
[ { "filename": "README.md", "patch": "@@ -328,6 +328,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [BoltAI for Mac](https://boltai.com) (AI Chat Client for Mac)\n - [Harbor](https://github.com/av/harbor) (Containerized LLM Toolkit with Ollama as default backend)\n - [PyGPT](https://g...
facebook/react
33,012
[compiler] Emit CompileSkip before CompileSuccess event
Previously the CompileSuccess event would emit first before CompileSkip, so the lsp's codelens would incorrectly flag skipped components/hooks (via 'use no memo') as being optimized. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://revie...
null
9938f83ca21f6e01e31b41ce8335a4516de276d1
null
low
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -469,6 +469,23 @@ export function compileProgram(\n }\n }\n \n+ /**\n+ * Otherwise if 'use no forget/memo' is present, we still run the code through the compiler\n+ * for validation but...
vercel/next.js
88,249
ci: fix javascript-urls test to account for React 18
This was caught by our React 18 tests which only run on `canary`. There was a console error about breaking `javascript:` urls in an upcoming React release but it didn't actually block them.
69d9d2909c6ed4e3860c7f58bebdad381f2fb1e1
d044c5542ee9e62781cd14b68f4b77627ecb5412
3
medium
[ { "filename": "test/e2e/app-dir/javascript-urls/javascript-urls.test.ts", "patch": "@@ -7,6 +7,8 @@ import {\n } from 'next-test-utils'\n import type { Page, Request } from 'playwright'\n \n+const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+\n describe('javascript-urls', () => {\n c...
electron/electron
49,087
ci: don't build yarn modules for linux arm
Backport of #49031 See that PR for details. Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
8782bf6953a5f9eb9dc0d7bf8dbae0e9b530a562
c2ff187954451cce36e2dbf123d06819e096a1ba
5
medium
[ { "filename": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ...
ggml-org/llama.cpp
19,969
vendor : update cpp-httplib to 0.35.0
null
4720819d45e2f775b672b94ca59b278a31684b1e
null
low
[ { "filename": "scripts/sync_vendor.py", "patch": "@@ -5,7 +5,7 @@\n import sys\n import subprocess\n \n-HTTPLIB_VERSION = \"refs/tags/v0.34.0\"\n+HTTPLIB_VERSION = \"refs/tags/v0.35.0\"\n \n vendor = {\n \"https://github.com/nlohmann/json/releases/latest/download/json.hpp\": \"vendor/nlohmann/json.h...
huggingface/transformers
42,939
[Quantization] rm _pre_quantization_dtype from quantization tests
# What does this PR do? Removes tests related to `_pre_quantization_dtype` since it was removed in this pr : https://github.com/huggingface/transformers/pull/42882
b05d2c4309ba28cecaa64acf14521fea5c829523
d3d4b6299dbf1882a76ef82985a1506c889d762f
11
medium
[ { "filename": "tests/quantization/bnb/test_4bit.py", "patch": "@@ -181,14 +181,6 @@ def test_memory_footprint(self):\n linear = get_some_linear_layer(self.model_4bit)\n self.assertTrue(linear.weight.__class__ == Params4bit)\n \n- def test_original_dtype(self):\n- r\"\"\"\n- ...
vuejs/vue
7,085
fix windows vue-ssr-server-bundle.json within module can't found on server side rendering
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No fixed windows vue-ssr-server-...
null
063acb79ebc02344ab277196d4aea0577b113926
null
low
[ { "filename": "src/server/bundle-renderer/create-bundle-runner.js", "patch": "@@ -51,7 +51,7 @@ function compileModule (files, basedir, runInNewContext) {\n : script.runInNewContext(sandbox)\n const m = { exports: {}}\n const r = file => {\n- file = path.join('.', file)\n+ file = pat...
ollama/ollama
8,163
Reuse type InvalidModelNameErrMsg, unify the const parameters.
Reuse type InvalidModelNameErrMsg, unify the const parameters.
8c9fb8eb73afc220e8bf99772572096b6498b748
928de9050e595a1e293a7cd0787fa5d9b932afc2
15
medium
[ { "filename": "server/routes.go", "patch": "@@ -142,7 +142,7 @@ func (s *Server) GenerateHandler(c *gin.Context) {\n \t\tswitch {\n \t\tcase errors.Is(err, fs.ErrNotExist):\n \t\t\tc.JSON(http.StatusNotFound, gin.H{\"error\": fmt.Sprintf(\"model '%s' not found\", req.Model)})\n-\t\tcase err.Error() == \"inv...
ggml-org/llama.cpp
19,796
Add model metadata loading from huggingface for use with tests requiring real model data
This is based on the work from huggingface here: https://github.com/huggingface/huggingface.js/tree/main/packages/gguf Idea is to partially load GGUF models from huggingface, just enough to get the metadata The intention is to use this data with realistic unit tests for llama-quant.cpp, but it can be used for ...
a8b192b6ec4fd517fc966ef6fa02c01f8157bbee
d979f2b176217a062c57c24355db8c1dc3dfc7d5
8
medium
[ { "filename": "tests/CMakeLists.txt", "patch": "@@ -257,6 +257,21 @@ set(LLAMA_TEST_NAME test-mtmd-c-api)\n llama_build_and_test(test-mtmd-c-api.c)\n target_link_libraries(${LLAMA_TEST_NAME} PRIVATE mtmd)\n \n+# GGUF model data fetcher library for tests that need real model metadata\n+# Only compile when cp...
electron/electron
49,099
ci: use clang problem matcher with nan spec runner
Backport of #49096 See that PR for details. Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
8b02e33187d060a513554a2395bfe65f25bbc269
22dfbb0822141e6a5f8ae33eb0610abeb67f603f
17
medium
[ { "filename": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -138,10 +138,16 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n+ - name: Add Clang problem matcher\n+ shell: bash\n+ run: echo \"::...
vuejs/vue
7,023
fix #6687 out-in transition getting stuck with v-if
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No An out-in transition could get s...
13196b25b8a0a84b3936982177195d2e04f13f79
45d7ba842917a075d6cb2563c78210e3b9210a58
2
high
[ { "filename": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -161,7 +161,9 @@ export default {\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n- !isAsyncPlaceholder(oldChild)\n+ !isAsyncPlaceholder(oldChild) &&\n+ // #6687 component r...
ollama/ollama
7,950
Add IntelliBar to list of community integrations
36aea6154a810b05f97bf9da05c695f76bcea528
ffe35490645bcde264866c4d3d435c4c3cc5d34c
2
high
[ { "filename": "README.md", "patch": "@@ -298,6 +298,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [AnythingLLM (Docker + MacOs/Windows/Linux native app)](https://github.com/Mintplex-Labs/anything-llm)\n - [Ollama Basic Chat: Uses HyperDiv Reactive UI](https://github.com/rapidarchite...
facebook/react
33,010
[forgive] Don't look up user babel configs
Projects with existing babel config files may confuse the LSP, so explictly opt out of looking them up. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33010). * #33012 * #33011 * __->__ #33010
null
b06bb35ce9ca0cf283003a66db1aa079da93ad72
null
low
[ { "filename": "compiler/packages/react-forgive/server/src/compiler/index.ts", "patch": "@@ -33,6 +33,8 @@ export async function compile({\n plugins: ['typescript', 'jsx'],\n },\n sourceType: 'module',\n+ configFile: false,\n+ babelrc: false,\n });\n if (ast == null) {\n return nu...
nodejs/node
56,481
tools: fix `vcbuild test` when path contain spaces
<!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-requests.md#commit-message-guidelines For code changes: 1. Inc...
null
0ffa607dee513f161e2e4c5b7e8256d6bf4e9ea9
null
low
[ { "filename": "vcbuild.bat", "patch": "@@ -183,7 +183,7 @@ if defined package set stage_package=1\n :: assign path to node_exe\n set \"node_exe=%config%\\node.exe\"\n set \"node_gyp_exe=\"%node_exe%\" deps\\npm\\node_modules\\node-gyp\\bin\\node-gyp\"\n-set \"npm_exe=\"%~dp0%node_exe%\" %~dp0deps\\npm\\bin\...
electron/electron
49,096
ci: use clang problem matcher with nan spec runner
#### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/electron/electron/blob/main/CONTRIBUTING.md --> Since `script/nan-spec-runner.js` does compilation, let's use the clang problem matche...
64326e296b534e743307acbb555bf5017c00eb32
640c7bb90841b8669896712104c64d3bab09bcf7
6
medium
[ { "filename": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -138,10 +138,16 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n+ - name: Add Clang problem matcher\n+ shell: bash\n+ run: echo \"::...
vercel/next.js
88,253
Fix relative same host redirects in node middleware
This ensures we properly relativize URLs in node middleware when deployed and local. Tests weren't catching this previously as none were asserting the raw Location header value due to node-fetch auto-resolving the value. Fixes: https://github.com/vercel/next.js/issues/87950 Closes: NEXT-4826
null
0f9b732852f49820aac65e6231ef79c0668cdbdf
null
low
[ { "filename": "packages/next/src/server/web/adapter.ts", "patch": "@@ -455,7 +455,10 @@ export async function adapter(\n if (!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE) {\n if (redirectURL.host === requestURL.host) {\n redirectURL.buildId = buildId || redirectURL.buildId\n- res...
vuejs/vue
7,053
revert(weex): remove the "receiveTasks" api and support component hook
**What kind of change does this PR introduce?** - [x] Feature - [x] Refactor **Does this PR introduce a breaking change?** - [x] Yes This feature only compatible with `0.23.1` or higher versions of `weex-js-runtime`. **Other information:** The `receiveTasks` API is moved to `weex-js-runtime` in order...
bd194802ac7e6d738ced962c854704c3ba232a8b
40665e92aff2fa3cedfd58f22d3917812713515c
6
medium
[ { "filename": "package.json", "patch": "@@ -125,7 +125,7 @@\n \"typescript\": \"^2.5.2\",\n \"uglify-js\": \"^3.0.15\",\n \"webpack\": \"^2.6.1\",\n- \"weex-js-runtime\": \"^0.23.0\",\n+ \"weex-js-runtime\": \"^0.23.1\",\n \"weex-styler\": \"^0.3.0\"\n },\n \"config\": {", "add...
facebook/react
33,001
[forgive] Don't crash if we couldn't compile
Compiler shouldn't crash Forgive if it can't compile (eg parse error due to being mid-typing). Co-authored-by: Jordan Brown <jmbrown@meta.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33001). ...
f765082996f056c2abb354eb43cec3a3bf535264
b75af0467099b7fd0e668b500adb0888b7b21d10
1
high
[ { "filename": "compiler/packages/react-forgive/server/src/index.ts", "patch": "@@ -134,11 +134,17 @@ documents.onDidChangeContent(async event => {\n resetState();\n if (SUPPORTED_LANGUAGE_IDS.has(event.document.languageId)) {\n const text = event.document.getText();\n- await compile({\n- tex...
huggingface/transformers
42,904
Document new default shard size + dropped unsafe serialization
Follow-up PR after https://github.com/huggingface/transformers/pull/42734 from @Cyrilvallez (related to https://github.com/huggingface/transformers/issues/42555 and https://github.com/huggingface/transformers/issues/42556). Let's document the changes introduced in #42734 in the `MIGRATION_GUIDE_V5.md`.
6994c5ac32d0f930030a330d396b8e8d248161a8
bdaddb6f5876701e75a12c0a2b86a4faa394d84b
27
medium
[ { "filename": "MIGRATION_GUIDE_V5.md", "patch": "@@ -417,6 +417,20 @@ There is a tracker for that here: https://github.com/huggingface/transformers/is\n \n ## Library-wide changes with lesser impact\n \n+### Drop support for `safe_serialization=False`\n+\n+Safetensors is a simple format for storing tensors ...
facebook/react
33,000
[forgive] Add code action to remove dependency array
Adds a new codeaction event in the compiler and handler in forgive. This allows you to remove a dependency array when you're editing a range that is within an autodep eligible function. Co-authored-by: Jordan Brown <jmbrown@meta.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm....
7b21c464890ec991d95c88b5d68802a6c8b3bd8e
f765082996f056c2abb354eb43cec3a3bf535264
1
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts", "patch": "@@ -183,7 +183,8 @@ export type LoggerEvent =\n | CompileSkipEvent\n | PipelineErrorEvent\n | TimingEvent\n- | AutoDepsDecorationsEvent;\n+ | AutoDepsDecorationsEvent\n+ | AutoDepsEligibleEvent;\n \n ...
vercel/next.js
87,318
Turbopack: include children count in "task execution completed" span
<!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving Documentation - Run `pnpm prettier-f...
b81a64c87a37345a1c5bf58942cc1d56feff8f98
f24e66adac4972a9b985ce57a6dbc821343ae518
2
high
[ { "filename": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1773,7 +1773,11 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // at the start of every step.\n \n #[cfg(not(feature = \"trace_task_details\"))]\n- let _span = tracing::trace_span!(\"task ...
vercel/next.js
87,661
Turbopack: avoid blocking tasks for I/O work
### What? avoid using blocking tasks for IO work as we can't control the priority of blocking tasks. ### Why? We already control concurrency of fs access via a semaphore which helps to ensure we won't tie up all tokio threads and we are generally suspicious that moving this blocking work to blocking threads is worth...
507194aa64c6f0ef21a07f40e1f2a4f862154bd9
f7ea163a1c1b3e06a679f038d3a44e3e38bd99b1
2
medium
[ { "filename": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -493,11 +493,11 @@ impl DiskFileSystemInner {\n if !already_created {\n let func = |p: &Path| std::fs::create_dir_all(p);\n retry_blocking(directory.to_path_buf(), func)\n- .concurrency_li...
huggingface/transformers
42,884
Improve BatchFeature (.to() works on lists/nested lists of tensors, auto-skip non array conversion)
# What does this PR do? Fixes https://github.com/huggingface/transformers/issues/42205 Also fixes processors handling videos crashing when return_metadata=True and return_tensors="pt" . Cc @zucchini-nlp , for now I have hardcoded all the skip conversions. I think it's safer to do this for now instead of silent...
b712a97d09efb3e6058d364c4e4783356a0250c8
9f583b1b70953ed0d5f05b90e05b413382faa107
7
medium
[ { "filename": "src/transformers/feature_extraction_utils.py", "patch": "@@ -30,6 +30,7 @@\n PROCESSOR_NAME,\n PushToHubMixin,\n TensorType,\n+ _is_tensor_or_array_like,\n copy_func,\n is_numpy_array,\n is_torch_available,\n@@ -167,6 +168,11 @@ def convert_to_tensors(\n ...
ggml-org/llama.cpp
19,806
CUDA: add CDNA3 MFMA support for flash attention MMA kernel
## Summary Adds MI300X (gfx942) MFMA tensor core flash attention to `fattn-mma-f16.cuh`. MI300X now routes to `BEST_FATTN_KERNEL_MMA_F16` instead of the tile-based fallback. - Uses `v_mfma_f32_16x16x16_f16` (FP16 inputs, FP32 accumulate) with wavefront64 - Supports head sizes 64, 80, 96, 112, 128 via MMA; others fall...
null
ecbcb7ea9d3303097519723b264a8b5f1e977028
null
low
[ { "filename": "ggml/src/ggml-cuda/fattn-mma-f16.cuh", "patch": "@@ -111,13 +111,54 @@ static constexpr __host__ __device__ fattn_mma_config ggml_cuda_fattn_mma_get_co\n return ggml_cuda_fattn_mma_get_config_ampere(DKQ, DV, ncols);\n }\n \n+static constexpr __host__ __device__ fattn_mma_config ggml_cuda_...
ollama/ollama
8,208
fix crash bug with /save when quotes are used
This is a temporary fix for the `/save` command in the REPL to stop it from crashing when quotes are used. This will be replaced when we introduce the new Create API. Fixes #7551
null
dd352ab27f196892a241d36c39168a5199a5727d
null
low
[ { "filename": "cmd/interactive.go", "patch": "@@ -485,6 +485,9 @@ func buildModelfile(opts runOptions) string {\n \t}\n \n \tfor _, msg := range opts.Messages {\n+\t\tif strings.Contains(msg.Content, \"\\\"\") {\n+\t\t\tmsg.Content = `\"\"\"` + msg.Content + `\"\"\"`\n+\t\t}\n \t\tf.Commands = append(f.Comm...