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 |
|---|---|---|---|---|---|
vuejs/vue | 9a5dd1bac803ae78e731d445de752ec8797ef2b6 | 3b04547c0c4fc56d786f5d03446c81b2d7501297 | fix test | [
{
"path": "test/ssr/ssr-bundle-render.spec.js",
"patch": "@@ -195,8 +195,7 @@ describe('SSR: bundle renderer', () => {\n expect(cache.set.calls.count()).toBe(3) // no new cache sets\n expect(cache.get.calls.count()).toBe(2) // 1 get for root\n \n- console.log(context1)\n- ... | 2017-04-12T07:36:09 |
ollama/ollama | aabd71aede99443d5858213eec4e8d4c10713c55 | f321b13a032ee287d4ea1139c14c25eed55328d3 | fix rendering and variable width issues on progress bar | [
{
"path": "progress/bar.go",
"patch": "@@ -42,6 +42,19 @@ func NewBar(message string, maxValue, initialValue int64) *Bar {\n \t}\n }\n \n+// formatDuration limits the rendering of a time.Duration to 2 units\n+func formatDuration(d time.Duration) string {\n+\tif d >= 100*time.Hour {\n+\t\treturn \"99h+\"\n+\... | 2023-11-21T15:02:28 |
denoland/deno | 22a5f7109df9c124c14fe90da6e4f054f974dc8a | 7ab62a769be154c0926fe8be640d48674eb79614 | fix: run on pre-Windows 10 version 1709 (#32002) | [
{
"path": "Cargo.lock",
"patch": "@@ -3920,7 +3920,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d\"\n dependencies = [\n \"libc\",\n- \"windows-sys 0.59.0\",\n+ \"windows-sys 0.52.0\",\n ]\n \n [[packag... | 2026-02-02T15:40:35 |
huggingface/transformers | 9a19171fad3025f57fae72d8f3598f44b68102e5 | 26fca863126f6255a23eb47a2a77db938f87ef58 | Add GLPNImageProcessorFast (#41725)
* Add GLPNImageProcessorFast for torch backend
* Address review feedback
- Simplified to_dict() method
- Keep tensors as torch instead of converting to numpy for heterogeneous shapes
- Removed unnecessary shape guards in post_process_depth_estimation
- Improved variable names (tg... | [
{
"path": "docs/source/en/model_doc/glpn.md",
"patch": "@@ -61,6 +61,11 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h\n [[autodoc]] GLPNImageProcessor\n - preprocess\n \n+## GLPNImageProcessorFast\n+\n+[[autodoc]] GLPNImageProcessorFast\n+ - preprocess\n+\n ## GLPN... | 2025-11-04T15:44:52 |
ggml-org/llama.cpp | 7e994168b1ccc12337ba8de939c4fd466107c1fb | bcfa87622ae46be6345a8e3dfdbdc5ba5414042b | SYCL: optimized repeat_back kernel (3× fewer asm instructions, 2× faster)Feature/sycl repeat back opt (#16869)
* SYCL repeat_back v1 — add core op + switch case
* Implement repeat_back SYCL operation and minor fixes
* SYCL: optimize repeat_back kernel
* Remove Hebrew comment from repeat_back.cpp
* Remove comments ... | [
{
"path": "ggml/src/ggml-sycl/repeat_back.cpp",
"patch": "@@ -2,26 +2,43 @@\n \n #include \"common.hpp\"\n \n-void ggml_sycl_op_repeat_back(ggml_backend_sycl_context & ctx, ggml_tensor * dst) {\n+#define GGML_ASSERT_TENSOR_FITS_INT(t) \\\n+ GGML_ASSERT((t)->ne[0] < INT_MAX && (t)->ne[1] < INT_MAX && (t)-... | 2025-11-03T01:35:33 |
vuejs/vue | dc21884d38e04fa70a7d933c6e208a924c5bb8f6 | 0494d16a29635f22fc13c217e803d6860bf2323a | Fix 0 download issue with monthly download shield (#5426) | [
{
"path": "README.md",
"patch": "@@ -3,7 +3,7 @@\n <p align=\"center\">\n <a href=\"https://circleci.com/gh/vuejs/vue/tree/dev\"><img src=\"https://img.shields.io/circleci/project/vuejs/vue/dev.svg\" alt=\"Build Status\"></a>\n <a href=\"https://codecov.io/github/vuejs/vue?branch=dev\"><img src=\"https:... | 2017-04-13T05:07:22 |
denoland/deno | 9132ad958c83a0d0b199de12b69b877f63edab4c | b51441cc1bf99a0ccc66ff706a1887ee0a933d46 | fix(ext/node): escape more shell args (#31999)
Follow up to https://github.com/denoland/deno/pull/31838 | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -968,7 +968,16 @@ export function normalizeSpawnArguments(\n ]);\n \n if (options.shell) {\n- let command = ArrayPrototypeJoin([file, ...args], \" \");\n+ // When args are provided, escape them to prevent shell injection.\n+ ... | 2026-02-02T13:17:42 |
ollama/ollama | 8c4022b06b4ff593439ed8ef29e8362f3844172c | 433702f4218c81c1ef2565b5f765172cc2f90e96 | fix initial progress stats | [
{
"path": "progress/bar.go",
"patch": "@@ -124,15 +124,14 @@ func (b *Bar) Stats() Stats {\n \n \tswitch {\n \tcase b.statted.IsZero():\n-\tcase b.currentValue >= b.maxValue:\n \t\tb.stats = Stats{\n-\t\t\tvalue: b.maxValue,\n+\t\t\tvalue: b.initialValue,\n \t\t\trate: 0,\n \t\t\tremaining: 0,\... | 2023-11-20T19:33:46 |
huggingface/transformers | 26fca863126f6255a23eb47a2a77db938f87ef58 | 900cf9d33bc091f3e47f8e598cba464f8b93bdd7 | Fix default image_rows and image_cols initialization in Idefics3 and SmolVLM processors (#41871)
* Fix default image_rows and image_cols initialization in Idefics3 and SmolVLM processors
* Fix default initialization of image_rows and image_cols in Idefics3 and SmolVLM processors | [
{
"path": "src/transformers/models/idefics3/processing_idefics3.py",
"patch": "@@ -286,8 +286,8 @@ def __call__(\n f\"The number of images in the text {n_images_in_text} and images {n_images_in_images} should be the same.\"\n )\n \n- image_rows = in... | 2025-11-04T15:42:47 |
vuejs/vue | 0494d16a29635f22fc13c217e803d6860bf2323a | 9c3e96f7573a671f085dab8cbd3bdb21dc4a9612 | fixed readme for styling inconsistencies (#5412) | [
{
"path": "README.md",
"patch": "@@ -78,7 +78,7 @@ Vue.js is an MIT-licensed open source project. Its ongoing development is made p\n \n Vue.js is a library for building interactive web interfaces. It provides data-reactive components with a simple and flexible API. Core features include:\n \n-- [Declarativ... | 2017-04-11T02:47:05 |
ggml-org/llama.cpp | bcfa87622ae46be6345a8e3dfdbdc5ba5414042b | a2054e3a8ff0da3978a4acc18c349ff58554d336 | feat(webui): improve LaTeX rendering with currency detection (#16508)
* webui : Revised LaTeX formula recognition
* webui : Further examples containg amounts
* webui : vitest for maskInlineLaTeX
* webui: Moved preprocessLaTeX to lib/utils
* webui: LaTeX in table-cells
* chore: update webui build output (use their... | [
{
"path": "tools/server/webui/package-lock.json",
"patch": "@@ -59,6 +59,7 @@\n \t\t\t\t\"prettier-plugin-tailwindcss\": \"^0.6.11\",\n \t\t\t\t\"rehype-katex\": \"^7.0.1\",\n \t\t\t\t\"remark-math\": \"^6.0.0\",\n+\t\t\t\t\"sass\": \"^1.93.3\",\n \t\t\t\t\"storybook\": \"^9.0.17\",\n \t\t\t\t\"svelte\": \"... | 2025-11-02T23:41:08 |
denoland/deno | b51441cc1bf99a0ccc66ff706a1887ee0a933d46 | a7ddc6dea129c68250a84ac470d19f8b74d4f672 | fix: upgrade deno_core to 0.383.0 (#32014)
Closes https://github.com/denoland/deno/issues/32011 | [
{
"path": "Cargo.lock",
"patch": "@@ -1887,9 +1887,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.382.0\"\n+version = \"0.383.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff4bdf251dc4597ba3f646e2f007208c475e40b5a412c039b7c75ff277fe7b3... | 2026-02-02T12:33:42 |
ollama/ollama | be61a81758ecd7990e0bd4cdd77093ffc4ecb1ca | 2fdf1b5ff891383752593813e5133f815819f271 | main-gpu argument is not getting passed to llamacpp, fixed. (#1192) | [
{
"path": "llm/llama.go",
"patch": "@@ -339,6 +339,7 @@ func newLlama(model string, adapters []string, runners []ModelRunner, numLayers\n \t\t\"--model\", model,\n \t\t\"--ctx-size\", fmt.Sprintf(\"%d\", opts.NumCtx),\n \t\t\"--batch-size\", fmt.Sprintf(\"%d\", opts.NumBatch),\n+\t\t\"--main-gpu\", fmt.Spri... | 2023-11-20T15:52:52 |
huggingface/transformers | 900cf9d33bc091f3e47f8e598cba464f8b93bdd7 | 154d5101a4c1ad91153ece4dc233333f208ac754 | Fix issue with from pretrained and kwargs in image processors (#41997)
* accept kwargs in image proc from_pretrained
* only use kwargs that are in cls.valid_kwargs
* remove specific logic for _from_auto
* add image_seq_length to Images_kwargs for backward compatibility
* fix missing image kwargs in pix2struct | [
{
"path": "src/transformers/image_processing_base.py",
"patch": "@@ -362,25 +362,13 @@ def from_dict(cls, image_processor_dict: dict[str, Any], **kwargs):\n \"\"\"\n image_processor_dict = image_processor_dict.copy()\n return_unused_kwargs = kwargs.pop(\"return_unused_kwargs\", False... | 2025-11-04T15:35:39 |
vuejs/vue | 9c3e96f7573a671f085dab8cbd3bdb21dc4a9612 | 7497723c6add3945f9a2141da20e4a26945a628d | fix typo in comment (#5411) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -32,7 +32,7 @@ export default {\n el._vModifiers = binding.modifiers\n if (!binding.modifiers.lazy) {\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n- // siwtching focus before confirming com... | 2017-04-10T20:52:02 |
huggingface/transformers | 154d5101a4c1ad91153ece4dc233333f208ac754 | e3d4fa692ea3a6b844a28ddc100a418a32e72130 | add back `logging_dir` (#42013)
* add back
* Apply style fixes
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | [
{
"path": "src/transformers/training_args.py",
"patch": "@@ -885,6 +885,12 @@ class TrainingArguments:\n )\n },\n )\n+ logging_dir: Optional[str] = field(\n+ default=None,\n+ metadata={\n+ \"help\": \"Deprecated and will be removed in v5.2. Set env var `TE... | 2025-11-04T15:22:58 |
ollama/ollama | 6bbd6e26fb81637de90779760bf744f4dc3ad8b2 | e6ad4813d3ae1ac229aed71c5e609f829f61a25d | fix temporary newline created and removed with spinner in `ollama run` | [
{
"path": "cmd/cmd.go",
"patch": "@@ -457,7 +457,7 @@ func generate(cmd *cobra.Command, model, prompt string, wordWrap bool, format st\n \t}\n \n \tp := progress.NewProgress(os.Stderr)\n-\tdefer p.Stop()\n+\tdefer p.StopAndClear()\n \n \tspinner := progress.NewSpinner(\"\")\n \tp.Add(\"\", spinner)\n@@ -492... | 2023-11-20T05:49:08 |
vuejs/vue | 7497723c6add3945f9a2141da20e4a26945a628d | 682141fccc9b3224c3432afcd5befd23fba9b1a1 | disable duplicate attr warning in Edge (fix #5394) | [
{
"path": "src/compiler/parser/index.js",
"patch": "@@ -5,8 +5,8 @@ import { parseHTML } from './html-parser'\n import { parseText } from './text-parser'\n import { parseFilters } from './filter-parser'\n import { cached, no, camelize } from 'shared/util'\n-import { isIE, isServerRendering } from 'core/util... | 2017-04-10T12:51:50 |
denoland/deno | 7c5447f08306f777a46dbb209faed3d02d67e64d | c78df6f9888b422e44a26ebb5ae2561d5ac5c752 | fix(ext/node): error formatting compatibility (#31970)
Towards #29801
Gives better error formating based on [Node's
implementation](https://github.com/nodejs/node/blob/70f6b58ac655234435a99d72b857dd7b316d34bf/lib/internal/util/inspect.js#L1661),
especially on `AggregateError` instance / nested errors. This in turn
al... | [
{
"path": "ext/web/01_console.js",
"patch": "@@ -35,38 +35,54 @@ import {\n } from \"ext:core/ops\";\n import * as ops from \"ext:core/ops\";\n const {\n+ AggregateError,\n+ AggregateErrorPrototype,\n Array,\n ArrayBufferPrototypeGetByteLength,\n+ ArrayBuffer,\n+ ArrayBufferPrototype,\n+ ArrayFrom,... | 2026-02-02T09:45:07 |
ggml-org/llama.cpp | a2054e3a8ff0da3978a4acc18c349ff58554d336 | dd5286805004db1f9ac3176a1cbbfe373bdda0f8 | test-backend-ops : fix segfault in moe-expert-reduce test in support mode and coverage (#16936)
* tests: fix segfault in moe-expert-reduce test in support mode and --show-coverage
* tests: init gf and filter out fusion tests for support mode
* tests: filter out fusion cases before calling eval_support
* tests: filt... | [
{
"path": "tests/test-backend-ops.cpp",
"patch": "@@ -1454,6 +1454,8 @@ struct test_case {\n ggml_context_ptr ctx(ggml_init(params)); // smart ptr\n GGML_ASSERT(ctx);\n \n+ gf = ggml_new_graph_custom(ctx.get(), graph_nodes, false);\n+\n ggml_tensor * out = build_graph(ctx.get(... | 2025-11-02T23:10:30 |
huggingface/transformers | e3d4fa692ea3a6b844a28ddc100a418a32e72130 | dd4e048e75d61512a92faba59d7651aad1ce9519 | Fix continuous batching tests (#42012)
* Fix continuous batching tests
* make fixup | [
{
"path": "tests/generation/test_continuous_batching.py",
"patch": "@@ -350,9 +350,9 @@ def test_streaming_request(self) -> None:\n \n messages = [{\"content\": \"What is the Transformers library known for?\", \"role\": \"user\"}]\n \n- inputs = tokenizer.apply_chat_template(messages, return_... | 2025-11-04T15:10:35 |
ollama/ollama | e6ad4813d3ae1ac229aed71c5e609f829f61a25d | 13ba6df5abba724fdd06b5671c1707d4098592b2 | dont crash when redirecting stderr | [
{
"path": "progress/bar.go",
"patch": "@@ -37,7 +37,7 @@ func NewBar(message string, maxValue, initialValue int64) *Bar {\n func (b *Bar) String() string {\n \ttermWidth, _, err := term.GetSize(int(os.Stderr.Fd()))\n \tif err != nil {\n-\t\tpanic(err)\n+\t\ttermWidth = 80\n \t}\n \n \tvar pre, mid, suf stri... | 2023-11-20T04:50:45 |
vuejs/vue | 4b6913cb46be2f8f932f19adb63bbc6f388a3b76 | 4dff99d6e3b8cdfb7552e284b1aac5742449c531 | handle errors in nextTick (close #5277) | [
{
"path": "src/core/util/env.js",
"patch": "@@ -2,6 +2,7 @@\n /* globals MutationObserver */\n \n import { noop } from 'shared/util'\n+import { handleError } from './error'\n \n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n@@ -123,15 +124,22 @@ export const nextTick = (function () {... | 2017-04-10T07:01:32 |
denoland/deno | c78df6f9888b422e44a26ebb5ae2561d5ac5c752 | d6fa98554f2e6f693730c1520a7d7d5add4995d0 | fix(ext/node): use primordials in `_fs_fchown.ts` (#32007)
Ref #24236
It doesn't seem like there's any tests for `fchown`? | [
{
"path": "ext/node/polyfills/_fs/_fs_fchown.ts",
"patch": "@@ -1,8 +1,5 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import {\n type CallbackWithError,\n makeCallback... | 2026-02-01T11:15:23 |
huggingface/transformers | 6ff4fabd9d1d02b8de1a0019e0dc48af09da5de4 | 6d4450e341da386c47ebfd4f37374693d2788257 | Correct syntax error in trainer.md (#42001)
A comma is missing between two parameters in the signature of compute_loss function. | [
{
"path": "docs/source/en/trainer.md",
"patch": "@@ -187,7 +187,7 @@ from torch import nn\n from transformers import Trainer\n \n class CustomTrainer(Trainer):\n- def compute_loss(self, model: nn.Module, inputs: dict[str, Union[torch.Tensor, Any]], return_outputs: bool = False num_items_in_batch: Optiona... | 2025-11-04T12:36:54 |
ollama/ollama | f6b317e8c9556b1865dd87f509acdc80097e5198 | ac5076ce1ed64c62d2d40701d9dd53d45fa4a1aa | fix sending too little data in chunk upload body | [
{
"path": "server/upload.go",
"patch": "@@ -123,19 +123,6 @@ func (b *blobUpload) Run(ctx context.Context, opts *RegistryOptions) {\n \tdefer blobUploadManager.Delete(b.Digest)\n \tctx, b.CancelFunc = context.WithCancel(ctx)\n \n-\tp, err := GetBlobsPath(b.Digest)\n-\tif err != nil {\n-\t\tb.err = err\n-\t\... | 2023-11-19T01:36:34 |
vuejs/vue | 98326ce878247544914882b581e2cc560c3fe806 | b997af0c012d00b98c84c062326beb650b239e35 | add extra change listener for v-model (fix #5248, #5387) | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -31,6 +31,11 @@ export default {\n } else if (vnode.tag === 'textarea' || el.type === 'text' || el.type === 'password') {\n el._vModifiers = binding.modifiers\n if (!binding.modifiers.lazy) {\n+ // Safari < 10.2 &... | 2017-04-10T05:57:18 |
denoland/deno | d6fa98554f2e6f693730c1520a7d7d5add4995d0 | 51bd0803b8fe56ff20d054b54e9029acd3fb9f04 | fix(ext/node): enable defensive option on `DatabaseSync` (#32004)
Allows
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-config.js
to pass | [
{
"path": "ext/node/ops/sqlite/database.rs",
"patch": "@@ -23,6 +23,7 @@ use deno_core::v8_static_strings;\n use deno_permissions::OpenAccessKind;\n use deno_permissions::PermissionsContainer;\n use rusqlite::ffi as libsqlite3_sys;\n+use rusqlite::ffi::SQLITE_DBCONFIG_DEFENSIVE;\n use rusqlite::ffi::SQLITE_... | 2026-01-31T12:24:18 |
huggingface/transformers | 6d4450e341da386c47ebfd4f37374693d2788257 | aee5c2384a176e110377af6259c799ea8cc29696 | Fix `torch+deepspeed` docker file (#41985)
* fix
* delete
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/build-docker-images.yml",
"patch": "@@ -97,7 +97,7 @@ jobs:\n latest-torch-deepspeed-docker:\n name: \"Latest PyTorch + DeepSpeed\"\n runs-on:\n- group: aws-g4dn-2xlarge-cache\n+ group: aws-general-8-plus\n steps:\n -\n name: Set up Docker B... | 2025-11-04T10:41:22 |
vuejs/vue | b997af0c012d00b98c84c062326beb650b239e35 | a150317324fec0968edd66dc434eaff7a4bc065a | Use genAssignmentCode in chehckbox model web compiler (#5402)
Fix #5398 | [
{
"path": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -91,7 +91,7 @@ function genCheckboxModel (\n '$$i=_i($$a,$$v);' +\n `if($$c){$$i<0&&(${value}=$$a.concat($$v))}` +\n `else{$$i>-1&&(${value}=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}` +\n- `}else{${value}=$$c... | 2017-04-10T04:24:08 |
ollama/ollama | 258addc79911e3035cc77e17709f5264f359b6ba | c06b9b7304a53ed5526dc51fc4fcafc45d92be54 | fix comment in `progress.go` | [
{
"path": "progress/progress.go",
"patch": "@@ -51,7 +51,7 @@ func (p *Progress) StopAndClear() bool {\n \n \tstopped := p.Stop()\n \tif stopped {\n-\t\t// clear the progress bar by:\n+\t\t// clear all progress lines\n \t\tfor i := 0; i < p.pos; i++ {\n \t\t\tfmt.Fprint(p.w, \"\\033[A\\033[2K\\033[1G\")\n \... | 2023-11-19T18:46:19 |
denoland/deno | 51bd0803b8fe56ff20d054b54e9029acd3fb9f04 | 7e2abb4c3165af017b49b0ef102c9e4691510676 | fix: Reload the `CronHandlerImpl` if necessary when the control socket receives new envs (#31996) | [
{
"path": "ext/cron/handler_impl.rs",
"patch": "@@ -24,6 +24,40 @@ impl CronHandlerImpl {\n Err(_) => Self::Local(LocalCronHandler::new()),\n }\n }\n+\n+ /// Check if the handler needs to be reloaded based on current environment.\n+ /// Returns a new handler if reload is needed, None otherwise... | 2026-01-30T21:59:25 |
ggml-org/llama.cpp | 2f966b8ed87514e74bb96592217226cb6a6974dd | cd5e3b57541ecc52421130742f4d89acbcf77cd4 | clip : use FA (#16837)
* clip : use FA
* cont : add warning about unsupported ops
* implement "auto" mode for clip flash attn
* clip : print more detailed op support info during warmup
* cont : remove obsolete comment [no ci]
* improve debugging message
* trailing space
* metal : remove stray return
---------
... | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.m",
"patch": "@@ -707,6 +707,7 @@ bool ggml_metal_device_supports_op(ggml_metal_device_t dev, const struct ggml_te\n if (op->src[0]->ne[0] != 32 &&\n op->src[0]->ne[0] != 40 &&\n op->src[0]->ne[0] != 64 &&\n+ ... | 2025-11-02T20:21:48 |
huggingface/transformers | aee5c2384a176e110377af6259c799ea8cc29696 | 5b6c209bc5a19b80c866279ee0c8e124ff7e4e49 | DOC Fix typo in argument name: pseudoquant (#41994)
The correct argument name is pseudoquantization. Since there is no error
on passing wrong arguments name (which is arguably an anti-pattern),
this is difficult for users to debug. | [
{
"path": "docs/source/en/quantization/fp_quant.md",
"patch": "@@ -40,7 +40,7 @@ You can choose between MXFP4 and NVFP4 with `FPQuantConfig(forward_dtype=\"mxfp4\"\n \n A **Blackwell-generation GPU is required** to run the kernels. Runtime support for FP-Quant is implemented through the [QuTLASS](https://gi... | 2025-11-04T09:48:39 |
ollama/ollama | 02524a56ff167f6307454abdd3c63d090fdef392 | 1657c6abc7f2061debb285797ecf8d1d52c0ddce | check retry for authorization error | [
{
"path": "server/images.go",
"patch": "@@ -1131,6 +1131,7 @@ func makeRequestWithRetry(ctx context.Context, method string, requestURL *url.UR\n \t\tif !errors.Is(err, context.Canceled) {\n \t\t\tlog.Printf(\"request failed: %v\", err)\n \t\t}\n+\n \t\treturn nil, err\n \t}\n \n@@ -1150,7 +1151,13 @@ func m... | 2023-11-19T05:19:53 |
vuejs/vue | c82546c54b851cb75d1fe17bd9d35038904efa24 | 561bb467baa49606e011a8d1e675b385b156763a | fix keep-alive pruning active instance | [
{
"path": "src/core/components/keep-alive.js",
"patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-import { callHook } from 'core/instance/lifecycle'\n import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n type VNodeCache = { [key: string]: ?VNode };\n@@ -21,13 +20,15 @@ function matches (pattern: ... | 2017-04-07T08:11:40 |
ggml-org/llama.cpp | cd5e3b57541ecc52421130742f4d89acbcf77cd4 | 87c9efc3b297b8a498716b1db3d061842e6fc85b | server : support unified cache across slots (#16736)
* server : support unified context across slots
* cont : fix speculative decoding initialization
* context : fix n_ctx_per_seq computation
* server : purge slots one by one
* tests : add unified cache server tests
* llama : update per-seq context computation
*... | [
{
"path": "include/llama.h",
"patch": "@@ -461,7 +461,10 @@ extern \"C\" {\n LLAMA_API bool llama_supports_gpu_offload(void);\n LLAMA_API bool llama_supports_rpc (void);\n \n+ // NOTE: After creating a llama_context, it is recommended to query the actual values using these functions\n+ ... | 2025-11-02T16:14:04 |
huggingface/transformers | 258c76e4dc00953c67bde7900602586fb8754006 | 64397a830188a35b5e9056036e13bb6ccfe434d8 | Fix `run slow v2`: empty report when there is only one model (#42002)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/self-scheduled.yml",
"patch": "@@ -102,8 +102,10 @@ jobs:\n working-directory: /transformers/tests\n run: |\n if [ \"${{ inputs.job }}\" = \"run_models_gpu\" ]; then\n- echo \"folder_slices=$(python3 ../utils/split_model_tests.py --subdirs '$... | 2025-11-04T05:46:21 |
denoland/deno | 3246e10ded5bcc989498d80f48785f0f7be3f832 | f4c20db6c9277582963ed441d69f91b532bf6404 | fix(ext/node): implement `sqlite`' `SQLTagStore` (#31945)
Implementation is based on Node.js v24.12.0
It passes test cases on
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-sqlite-template-tag.js,
but since we don't yet implement `beforeEach` of `node:test` the test
will fail. I ported the tests to o... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -410,6 +410,7 @@ deno_core::extension!(deno_node,\n ops::perf_hooks::EldHistogram,\n ops::sqlite::DatabaseSync,\n ops::sqlite::Session,\n+ ops::sqlite::SQLTagStore,\n ops::handle_wrap::AsyncWrap,\n ops::handle_wrap::HandleWrap,\n ops::sqli... | 2026-01-30T10:01:23 |
ollama/ollama | 43a726149df828e1557608bdffa97efc806ee448 | 984714f13182a6b32a8d456427536bbe51d6032e | fix potentially inaccurate error message | [
{
"path": "llm/llama.go",
"patch": "@@ -226,7 +226,7 @@ type llama struct {\n }\n \n var (\n-\terrNvidiaSMI = errors.New(\"nvidia-smi command failed\")\n+\terrNvidiaSMI = errors.New(\"warning: gpu support may not be enabled, check you have installed GPU drivers: nvidia-smi command failed\")\n \terrA... | 2023-11-17T23:05:28 |
vuejs/vue | 1073035164b809872bf35a3b007848979f86f48a | 931aaea8dc6481f59b3f9dcf7b304bb36e6e27ad | fix activate hook call timing (fix vue-router#1212) | [
{
"path": "flow/vnode.js",
"patch": "@@ -9,6 +9,7 @@ declare type VNodeComponentOptions = {\n }\n \n declare type MountedComponentVNode = {\n+ context: Component;\n componentOptions: VNodeComponentOptions;\n componentInstance: Component;\n parent: VNode;",
"additions": 1,
"deletions": 0,
... | 2017-04-07T07:30:37 |
ggml-org/llama.cpp | a864132ba546b6385922226480ee4e392aaa065c | d38d9f0877a5872daa3c5f06fb9a86376bf15d50 | devops: fix failing s390x docker build (#16918) | [
{
"path": ".devops/s390x.Dockerfile",
"patch": "@@ -24,8 +24,9 @@ RUN --mount=type=cache,target=/root/.ccache \\\n -DCMAKE_C_COMPILER_LAUNCHER=ccache \\\n -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \\\n -DLLAMA_BUILD_TESTS=OFF \\\n- -DGGML_BACKEND_DL=OFF \\\n -DGGML_NATIVE=O... | 2025-11-02T00:48:46 |
huggingface/transformers | 64397a830188a35b5e9056036e13bb6ccfe434d8 | cd309610c0d45d97ac0c3d80a2bdd7be302dcff2 | Fixed wrong padding value in OWLv2 (#41938)
* Update image_processing_owlv2_fast.py
fixed padding value
* fixed padding value
* Change padding constant value from 0.5 to 0.0
* Fixed missed padding value in modular_owlv2.py
---------
Co-authored-by: Yoni Gozlan <74535834+yonigozlan@users.noreply.github.com> | [
{
"path": "src/transformers/models/owlv2/image_processing_owlv2.py",
"patch": "@@ -291,7 +291,7 @@ def pad(\n image = pad(\n image=image,\n padding=((0, size - height), (0, size - width)),\n- constant_values=0.5,\n+ constant_values=0.0,\n dat... | 2025-11-03T23:46:28 |
denoland/deno | f4c20db6c9277582963ed441d69f91b532bf6404 | fae7b29aacf26a94ef44302f18f0ef652ab6417d | fix(flags): correct zsh completions for script arg (#31994)
Closes https://github.com/denoland/deno/issues/31989
Closes https://github.com/denoland/deno/issues/29625
Closes https://github.com/denoland/deno/issues/25710 | [
{
"path": "Cargo.lock",
"patch": "@@ -894,18 +894,18 @@ dependencies = [\n \n [[package]]\n name = \"clap\"\n-version = \"4.5.47\"\n+version = \"4.5.56\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931\"\n+c... | 2026-01-30T00:03:12 |
vuejs/vue | ba138549dbba95ea019f0626fe185360723ddda2 | c28b566f19459751244707e4efe458056c9bbdcf | fix style (#5383) | [
{
"path": "benchmarks/big-table/demo.css",
"patch": "@@ -1,5 +1,5 @@\n form {\n- margin-bottom: 15px ;\n+ margin-bottom: 15px;\n }\n \n td.hidden {",
"additions": 1,
"deletions": 1,
"language": "CSS"
},
{
"path": "benchmarks/big-table/index.html",
"patch": "@@ -71,12 +71,12 @@ <h1>... | 2017-04-06T02:50:21 |
ggml-org/llama.cpp | 2f68ce7cfd20e9e7098514bf730e5389b7bba908 | e4a71599e5846110159955dec0008eb4aa24222b | webui: auto-refresh /props on inference start to resync model metadata (#16784)
* webui: auto-refresh /props on inference start to resync model metadata
- Add no-cache headers to /props and /slots
- Throttle slot checks to 30s
- Prevent concurrent fetches with promise guard
- Trigger refresh from chat streaming for l... | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte",
"patch": "@@ -85,8 +85,8 @@\n \tlet displayedModel = $derived((): string | null => {\n \t\tif (!currentConfig.showModelInfo) return null;\n \n-\t\tif (currentConfig.modelSelectorEnabled) {\n-\t\t\treturn mes... | 2025-11-01T18:49:51 |
huggingface/transformers | cd309610c0d45d97ac0c3d80a2bdd7be302dcff2 | dd8f2314956fdbb92401b0a61586da4a406e2d21 | Integrate colqwen2.5 using colqwen2 modelling code (#40600)
* adding option for 2.5
* minor - arg in conversion script
* getting started on modelling.py
* minor - shouldve been using modular
* adressing comments + fixing datatype/device _get method
* minor
* commiting suggestion
Co-authored-by: Yoni Gozlan <745... | [
{
"path": "docs/source/en/model_doc/colqwen2.md",
"patch": "@@ -158,6 +158,24 @@ print(\"Retrieval scores (query x image):\")\n print(scores)\n ```\n \n+You can also use checkpoints for `ColQwen2.5` that are **compatible with the ColQwen2 architecture**. This version of the model uses [Qwen2_5_VL](./qwen2_5... | 2025-11-03T23:31:07 |
denoland/deno | fae7b29aacf26a94ef44302f18f0ef652ab6417d | e85807a76fc6eae6200c0c2542803b321e6c9c58 | fix(types): correct types for Worker events (#31981)
<!--
Before submitting a PR, please read
https://docs.deno.com/runtime/manual/references/contributing
1. Give the PR a descriptive title.
Examples of good title:
- fix(std/http): Fix race condition in server
- docs(console): Update docstrings
- feat(... | [
{
"path": "cli/tsc/dts/lib.deno.shared_globals.d.ts",
"patch": "@@ -588,13 +588,13 @@ interface WorkerOptions {\n */\n interface Worker extends EventTarget {\n /** Event handler for error events. Fired when an error occurs in the worker's execution context. */\n- onerror: (this: Worker, e: ErrorEvent) =... | 2026-01-29T20:55:58 |
ollama/ollama | c6e6c8ee7e86b774436a18e72bb3b5f1c495ae43 | a185b29719a5ed93d1a7b18ad9d0b489e2a312f0 | fix cross device rename | [
{
"path": "server/routes.go",
"patch": "@@ -666,8 +666,14 @@ func HeadBlobHandler(c *gin.Context) {\n }\n \n func CreateBlobHandler(c *gin.Context) {\n+\ttargetPath, err := GetBlobsPath(c.Param(\"digest\"))\n+\tif err != nil {\n+\t\tc.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{\"error\": err.... | 2023-11-17T23:21:57 |
vuejs/vue | 7d3c883f83332c13ca186f7e7ee5be40e47f85a7 | 4e12b25d785aa721d71ec2f553d150c8df15f875 | fix functional context resolving merge errors | [
{
"path": "src/core/instance/inject.js",
"patch": "@@ -51,19 +51,7 @@ export function resolveInject (inject: any, vm: Component): ?Object {\n let source = vm\n while (source) {\n if (source._provided && provideKey in source._provided) {\n- /* istanbul ignore else */\n- ... | 2017-04-05T07:55:44 |
huggingface/transformers | dd8f2314956fdbb92401b0a61586da4a406e2d21 | 1619a3475f93c0cdf8d46612e62842df7b6692a2 | fix 3 failed test cases for video_llama_3 model on Intel XPU (#41931)
* fix 3 failed test cases for video_llama_3 model on Intel XPU
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* update
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
* adjust format
Signed-off-by: Liu, Kaixuan <kaixuan.liu@intel.com>
... | [
{
"path": "tests/models/video_llama_3/test_modeling_video_llama_3.py",
"patch": "@@ -36,6 +36,7 @@\n is_torch_available,\n )\n from transformers.testing_utils import (\n+ Expectations,\n backend_empty_cache,\n require_flash_attn,\n require_torch,\n@@ -831,7 +832,14 @@ def test_small_model... | 2025-11-03T17:18:20 |
ggml-org/llama.cpp | cf659bbb8ef9eb048e5153a27cf787fd83c05560 | d8b860a219c2415faac8cc0e50b48b4aa11e3b64 | mtmd: refactor preprocessing + support max/min pixels (#16878)
* mtmd: refactor preprocessing + support max/min pixels
* fix mlp type
* implement mix/max pixels
* improve hparams
* better image preproc for qwen
* fix
* fix out of bound composite
* fix (2)
* fix token calculation
* get_merge_kernel_size()
* f... | [
{
"path": "tools/mtmd/clip-impl.h",
"patch": "@@ -154,8 +154,8 @@ enum projector_type {\n PROJECTOR_TYPE_LFM2,\n PROJECTOR_TYPE_KIMIVL,\n PROJECTOR_TYPE_LIGHTONOCR,\n- PROJECTOR_TYPE_UNKNOWN,\n PROJECTOR_TYPE_COGVLM,\n+ PROJECTOR_TYPE_UNKNOWN,\n };\n \n static std::map<projector_type, ... | 2025-11-01T14:51:36 |
denoland/deno | 12a65dffdc8bdddcee97f7258a41b702f2772d5b | 1c9048f231a29e3ee92fafe3a8280f3ab38169a4 | fix(install): clean up associated config and lock files during uninstall (#31984)
This PR fixes an issue where `deno uninstall` would successfully remove
the executable but leave behind the associated hidden configuration
files (like `.<name>.deno.json`) in the bin directory. | [
{
"path": "cli/tools/installer/mod.rs",
"patch": "@@ -401,9 +401,28 @@ pub async fn uninstall(\n // There might be some extra files to delete\n // Note: tsconfig.json is legacy. We renamed it to deno.json.\n // Remove cleaning it up after January 2024\n+ // Use the base file path (without extension) ... | 2026-01-29T17:19:37 |
vuejs/vue | beee7d81430ea6e81c508d63994065c9341d0cf2 | 354c2f4922fe34932d4866da39cb8e0ac87e9edd | support v-on passive modifier (#5132)
* support v-on passive modifier
* fix supportsPassive and run unit when the test browser supports
* add mutual exclusive warning
* Fix typo
* Fix typo
* Remove extra line - CS fix | [
{
"path": "src/compiler/helpers.js",
"patch": "@@ -1,5 +1,6 @@\n /* @flow */\n \n+import { warn } from 'core/util/index'\n import { parseFilters } from './parser/filter-parser'\n \n export function baseWarn (msg: string) {\n@@ -41,6 +42,13 @@ export function addHandler (\n modifiers: ?ASTModifiers,\n im... | 2017-04-05T06:35:16 |
ollama/ollama | a185b29719a5ed93d1a7b18ad9d0b489e2a312f0 | dc84b20d6be6f78b524d8eb5588011105b5c7eb3 | fix install script error on linux | [
{
"path": "scripts/install.sh",
"patch": "@@ -97,16 +97,6 @@ Environment=\"PATH=$PATH\"\n [Install]\n WantedBy=default.target\n EOF\n-\n- mkdir -p /etc/systemd/system/ollama.service.d\n- cat <<EOF | $SUDO tee /etc/systemd/system/ollama.service.d/environment.conf >/dev/null\n-[Service]\n-#Environment=\... | 2023-11-17T23:00:41 |
huggingface/transformers | 1619a3475f93c0cdf8d46612e62842df7b6692a2 | ff0f7d6498582f83ab75a2c1d7f5943b85984046 | fix (CI): Refactor SSH runners (#41991)
* Change ssh runner type
* Add wait step to SSH runner workflow
* Rename wait step to wait2 in ssh-runner.yml
* Remove wait step from ssh-runner.yml
Removed the wait step from the SSH runner workflow.
* Update runner type for single GPU A10 instance
* Update SSH runner ver... | [
{
"path": ".github/workflows/ssh-runner.yml",
"patch": "@@ -4,7 +4,7 @@ on:\n workflow_dispatch:\n inputs:\n runner_type:\n- description: 'Type of runner to test (a10 or t4)'\n+ description: 'Type of runner to test (a10)'\n required: true\n docker_image:\n des... | 2025-11-03T17:16:32 |
denoland/deno | 1c9048f231a29e3ee92fafe3a8280f3ab38169a4 | d155af667f0e57277dc992d1b9609d5e6712908d | tests: enable some node child-process tests (#31972)
Enable some tests that seems fixed with previous changes:
- parallel/test-child-process-exec-std-encoding.js
- parallel/test-child-process-exec-timeout-not-expired.js | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -173,7 +173,9 @@\n \"parallel/test-child-process-exec-env.js\": {},\n \"parallel/test-child-process-exec-error.js\": {},\n \"parallel/test-child-process-exec-kill-throws.js\": {},\n+ \"parallel/test-child-process-exec-std-encoding.js\":... | 2026-01-29T13:36:43 |
ggml-org/llama.cpp | 5d8bb900bc7daa84bfa7bb1d25ab7e32394919f3 | 2e76e013600cb0d51ccf158571ca1d0502952a07 | vulkan: Fix multi_add invalid descriptor usage (#16899) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -4274,8 +4274,6 @@ static vk_device ggml_vk_get_device(size_t idx) {\n \n device->multi_add = vk12_props.shaderRoundingModeRTEFloat16 &&\n device->properties.limits.maxPushConstantsSize >= sizeof(vk_op_multi_a... | 2025-11-01T05:52:14 |
vuejs/vue | 354c2f4922fe34932d4866da39cb8e0ac87e9edd | bbec0763ab6eb8824c8bfb447844bfa2892ee47a | fix keep-alive cache incorrectly pruned with transition mode="out-in" (fix #5346) | [
{
"path": "src/platforms/web/runtime/components/transition.js",
"patch": "@@ -53,9 +53,11 @@ export function extractTransitionData (comp: Component): Object {\n }\n \n function placeholder (h: Function, rawChild: VNode): ?VNode {\n- return /\\d-keep-alive$/.test(rawChild.tag)\n- ? h('keep-alive')\n- ... | 2017-04-03T07:32:23 |
huggingface/transformers | ff0f7d6498582f83ab75a2c1d7f5943b85984046 | 80305364e2faa402ee39068a7fc0b27ac0ef9d10 | More data in benchmarking (#41848)
* Reduce scope of cross-generate
* Rm generate_sall configs
* Workflow benchmarks more
* Prevent crash when FA is not installed | [
{
"path": ".github/workflows/benchmark.yml",
"patch": "@@ -52,7 +52,7 @@ jobs:\n commit_id=$GITHUB_SHA\r\n fi\r\n commit_msg=$(git show -s --format=%s | cut -c1-70)\r\n- python3 benchmark_v2/run_benchmarks.py -b 32 -s 128 -n 256 --branch-name \"$BRANCH_NAME\" --commi... | 2025-11-03T17:05:26 |
denoland/deno | 98cde880a97c5d79b4d4769f5e3df8753a29ff7c | 812d567c31638cd5a64ced5909be2ba25f08d50e | chore(test): re-enable `parallel/test-util-isDeepStrictEqual.js` (#31968)
Closes #31632 as it's fixed by #31821 | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -1450,12 +1450,7 @@\n \"parallel/test-util-deprecate-invalid-code.js\": {},\n \"parallel/test-util-inherits.js\": {},\n \"parallel/test-util-inspect-getters-accessing-this.js\": {},\n- \"parallel/test-util-isDeepStrictEqual.js\": {\n- ... | 2026-01-29T09:46:15 |
ggml-org/llama.cpp | 2e76e013600cb0d51ccf158571ca1d0502952a07 | d3dc9dd898be805c23a408cc36daed5b3bf29221 | vulkan: fuse mul_mat+add and mul_mat_id+add_id (#16868)
* vulkan: fuse mul_mat+add and mul_mat_id+add_id
The fusion is only applied for the mat-vec mul paths.
* Apply suggestions from code review
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* fix 32b build
---------
Co-authored-by: Sigbjørn Skj... | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -797,9 +797,18 @@ struct vk_mat_mat_push_constants {\n uint32_t padded_N;\n };\n struct vk_mat_vec_push_constants {\n- uint32_t ncols; uint32_t stride_a; uint32_t stride_b; uint32_t stride_d;\n- uint32_t batch_stride_a; uint32_t batch_... | 2025-11-01T05:45:28 |
ollama/ollama | c82ead4d01411ac5b6b863e782faae066c00f2ad | 90860b6a7e1cd8ce6a200ff39f9779041d3726e3 | faq: fix heading and add more details | [
{
"path": "docs/faq.md",
"patch": "@@ -149,8 +149,8 @@ docker build -t ollama-with-ca .\n docker run -d -e HTTPS_PROXY=https://my.proxy.example.com -p 11434:11434 ollama-with-ca\n ```\n \n-### How do I use Ollama with GPU acceleration in Docker?\n+## How do I use Ollama with GPU acceleration in Docker?\n \n... | 2023-11-17T17:00:14 |
vuejs/vue | a12d32a56df2519c9cdf8d2da9d9425876263f89 | 66228390684eb23dc943dfe30d4ccd0063f797ef | fix style diffing on cached/slot elements (fix #5318) | [
{
"path": "flow/vnode.js",
"patch": "@@ -40,6 +40,7 @@ declare interface VNodeData {\n class?: any;\n staticStyle?: { [key: string]: any };\n style?: Array<Object> | Object;\n+ normalizedStyle?: Object;\n props?: { [key: string]: any };\n attrs?: { [key: string]: string };\n domProps?: { [key: ... | 2017-04-03T06:13:57 |
huggingface/transformers | a623cda4271c739bd53b874b713d4479a19ff907 | 7d5160bd7a2f6362889fa6b70aff8a7a90653c61 | [kernels] Add Tests & CI for kernels (#41765)
* first commit
* add tests
* add kernel config
* add more tests
* add ci
* small fix
* change branch name
* update tests
* nit
* change test name
* revert jobs
* addressing review
* reenable all jobs
* address second review | [
{
"path": ".github/workflows/self-scheduled-caller.yml",
"patch": "@@ -118,3 +118,15 @@ jobs:\n report_repo_id: hf-internal-testing/transformers_daily_ci\n commit_sha: ${{ github.sha }}\n secrets: inherit\n+\n+ kernels-ci:\n+ name: Kernels CI\n+ uses: ./.github/workflows/self-schedule... | 2025-11-03T15:36:52 |
denoland/deno | 812d567c31638cd5a64ced5909be2ba25f08d50e | b715bb8ec9016c009e74d3982ab0b843b961839a | fix: use `locked-tripwire` to prevent unlocked cargo installs (#31973) | [
{
"path": "Cargo.lock",
"patch": "@@ -1659,6 +1659,7 @@ dependencies = [\n \"libc\",\n \"libsui\",\n \"libz-sys\",\n+ \"locked-tripwire\",\n \"log\",\n \"lol_html\",\n \"lsp-types\",\n@@ -5967,6 +5968,12 @@ dependencies = [\n \"scopeguard\",\n ]\n \n+[[package]]\n+name = \"locked-tripwire\"\n+version... | 2026-01-29T02:26:35 |
ggml-org/llama.cpp | d3dc9dd898be805c23a408cc36daed5b3bf29221 | bea04522ff1a0d8559ccfd353aa018dcfbb608cc | CUDA: Remove unneded bias/gate dims in fused mmvq (#16858)
* CUDA: Remove unneded bias/gate dims in fused mmvq
Pointed out
[here](https://github.com/ggml-org/llama.cpp/pull/16847#discussion_r2476798989)
that only a single value is needed per target col per thread
* Apply suggestions from code review
Co-authored-by:... | [
{
"path": "ggml/src/ggml-cuda/mmvq.cu",
"patch": "@@ -190,26 +190,28 @@ static __global__ void mul_mat_vec_q(\n \n const uint32_t channel_bias = ids ? channel_x : channel_dst;\n \n- float x_biases[ncols_dst][rows_per_cuda_block] = { { 0.0f } };\n- float gate_biases[ncols_dst][rows_per_cuda_bloc... | 2025-11-01T05:13:26 |
vuejs/vue | 3c0265517b55afe747948c193b79954d18b4d4c8 | 255b627f395c5e658862cf716291a6299f997cb7 | handle errors thrown by directive hooks (#5314) (#5324)
* handle errors thrown by directive hooks
* fix import | [
{
"path": "src/core/vdom/modules/directives.js",
"patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import { emptyNode } from 'core/vdom/patch'\n-import { resolveAsset } from 'core/util/options'\n+import { resolveAsset, handleError } from 'core/util/index'\n import { mergeVNodeHook } from 'core/vdom/helpers/index... | 2017-04-03T03:37:54 |
huggingface/transformers | 7d5160bd7a2f6362889fa6b70aff8a7a90653c61 | 22e39dfb319fdba0cd17302c285240f26fb4dcd2 | Fix `torchcodec` version in quantization docker file (#41988)
check
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/transformers-quantization-latest-gpu/Dockerfile",
"patch": "@@ -24,7 +24,7 @@ RUN [ ${#PYTORCH} -gt 0 ] && VERSION='torch=='$PYTORCH'.*' || VERSION='torch';\n RUN echo torch=$VERSION\n # `torchvision` and `torchaudio` should be installed along with `torch`, especially for nightly build.\n... | 2025-11-03T14:27:47 |
denoland/deno | b715bb8ec9016c009e74d3982ab0b843b961839a | 591e9267e6e052d6d7b11a7a5be233b73a27f121 | fix: allow reading /dev/tty without requiring --allow-all (#31105) | [
{
"path": "runtime/permissions/lib.rs",
"patch": "@@ -4025,7 +4025,7 @@ impl PermissionsContainer {\n })\n } else {\n let path = self.descriptor_parser.parse_special_file_descriptor(path)?;\n- self.check_special_file(path, api_name)\n+ self.check_special_file(path, access_kind, api... | 2026-01-28T17:21:25 |
ggml-org/llama.cpp | bea04522ff1a0d8559ccfd353aa018dcfbb608cc | 0de0a01576772032008a689afc4d7c80685074c4 | refactor : llama-model.cpp (#16252)
* Sqashed: llama-model.cpp refactoring
* Fix formatting of attn / ffn / ffn_moe calls
* Fix import regression / unify spacing in models.h
* totally DID NOT miss those!
* Add missing qwen3vl(moe) models
* Add missing new .cpp files to build
* Remove extra semicolons
* Editor c... | [
{
"path": "src/CMakeLists.txt",
"patch": "@@ -35,6 +35,100 @@ add_library(llama\n unicode-data.cpp\n unicode.cpp\n unicode.h\n+ models/apertus.cpp\n+ models/arcee.cpp\n+ models/arctic.cpp\n+ models/arwkv7.cpp\n+ model... | 2025-10-31T22:40:23 |
vuejs/vue | 255b627f395c5e658862cf716291a6299f997cb7 | 9311876c7c0084a65c6ff0d583d2789205fa83ee | fix #5321 don't throw error when node gets relocated (#5322)
* don't throw error when node gets relocated
* perf: Simplify if check in vdom/patch | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -234,7 +234,9 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- nodeOps.insertBefore(parent, elm, ref)\n+ if (ref.parentNode === parent) {\n+ ... | 2017-04-03T03:36:50 |
huggingface/transformers | 63fbd50fb4ff7b586ab1b59b67f7464e62f9df69 | b433ec8b505118a6c89ac92bdb82a643860e94f7 | fix: dict[RopeParameters] to dict[str, RopeParameters] (#41963) | [
{
"path": "src/transformers/models/arcee/configuration_arcee.py",
"patch": "@@ -136,7 +136,7 @@ def __init__(\n bos_token_id: Optional[int] = 128000,\n eos_token_id: Optional[int] = 128001,\n tie_word_embeddings: Optional[bool] = False,\n- rope_parameters: Optional[RopeParamet... | 2025-11-03T14:09:27 |
ollama/ollama | a5ccf742c1ab0af3f350a42a5a4e511780c238b3 | e33ef391cd937f1e46e7f257e7722e3014c79981 | fix cross repo mounts | [
{
"path": "server/upload.go",
"patch": "@@ -77,6 +77,14 @@ func (b *blobUpload) Prepare(ctx context.Context, requestURL *url.URL, opts *Reg\n \n \tb.Total = fi.Size()\n \n+\t// http.StatusCreated indicates a blob has been mounted\n+\t// ref: https://distribution.github.io/distribution/spec/api/#cross-reposi... | 2023-11-16T20:18:03 |
vuejs/vue | 9311876c7c0084a65c6ff0d583d2789205fa83ee | 71e0992127a8144c7b095af1e18376318fc77cb0 | safer isNative check (fix #5361) | [
{
"path": "src/core/util/env.js",
"patch": "@@ -37,8 +37,8 @@ export const isServerRendering = () => {\n export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__\n \n /* istanbul ignore next */\n-export function isNative (Ctor: Function): boolean {\n- return /native code/.test(Ctor.toString... | 2017-04-03T03:33:49 |
denoland/deno | 591e9267e6e052d6d7b11a7a5be233b73a27f121 | 02c2406524b26f10a70947fcb4ac022fa1bbe2fd | fix(ext/node): use primordials in `_fs_ftruncate.ts` (#31944)
Towards #24236
<!--
Before submitting a PR, please read
https://docs.deno.com/runtime/manual/references/contributing
1. Give the PR a descriptive title.
Examples of good title:
- fix(std/http): Fix race condition in server
- docs(console): Upda... | [
{
"path": "ext/node/polyfills/_fs/_fs_ftruncate.ts",
"patch": "@@ -1,10 +1,15 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n-import { CallbackWithError } from \"ext:deno_nod... | 2026-01-28T14:45:05 |
ggml-org/llama.cpp | 8da3c0e200a586f768ada6f38745acb01380174c | c22473b580807929fd9e3a3344a48e8cfbe6c88f | batch : fix consistency checks for the input positions (#16890) | [
{
"path": "src/llama-batch.cpp",
"patch": "@@ -261,15 +261,29 @@ bool llama_batch_allocr::init(\n \n const llama_pos p0 = memory ? memory->seq_pos_max(s) : -1;\n \n- if (p0 >= 0 && p0 >= seq_pos_min(s)) {\n- LLAMA_LOG_ERROR(\n- \"%s: the tokens of... | 2025-10-31T11:50:33 |
huggingface/transformers | b433ec8b505118a6c89ac92bdb82a643860e94f7 | 3c16c1ae43abc5b4107f0fb7cbb7c9d5a1ea06b7 | test tensor parallel: make tests for dense model more robust (#41968)
* make test forward and backward more robust
* refactor compile part of test tensor parallel
* linting
* pass rank around instead of calling it over and over
* Run slow v2 (#41914)
* Super
* Super
* Super
* Super
---------
Co-authored-by: ... | [
{
"path": "tests/tensor_parallel/test_tensor_parallel.py",
"patch": "@@ -15,16 +15,16 @@\n # Run all tests: RUN_SLOW=1 pytest -v tests/tensor_parallel/test_tensor_parallel.py\n # Run specific config: RUN_SLOW=1 pytest -v tests/tensor_parallel/test_tensor_parallel.py -k \"2Proc\"\n # Run multiple configs: RU... | 2025-11-03T12:56:26 |
ollama/ollama | e33ef391cd937f1e46e7f257e7722e3014c79981 | 75295b952899daaa1ad188088c5f37e62a414b55 | fix push scope error for inherited model | [
{
"path": "server/upload.go",
"patch": "@@ -55,7 +55,7 @@ func (b *blobUpload) Prepare(ctx context.Context, requestURL *url.URL, opts *Reg\n \tif b.From != \"\" {\n \t\tvalues := requestURL.Query()\n \t\tvalues.Add(\"mount\", b.Digest)\n-\t\tvalues.Add(\"from\", b.From)\n+\t\tvalues.Add(\"from\", ParseModel... | 2023-11-16T19:44:09 |
denoland/deno | 02c2406524b26f10a70947fcb4ac022fa1bbe2fd | f27a7984cdf23d458b05f2ed54cd6b20e173baae | fix(ext/node): fix usage of new V8 string APIs (#31963)
Co-authored-by: Divy Srivastava <me@littledivy.com> | [
{
"path": "ext/napi/js_native_api.rs",
"patch": "@@ -2129,16 +2129,12 @@ fn napi_get_value_string_latin1(\n *result = value.length();\n }\n } else if bufsize != 0 {\n- let buffer =\n- unsafe { std::slice::from_raw_parts_mut(buf as _, bufsize - 1) };\n- value.write_one_byte_v2(scope, 0... | 2026-01-28T12:26:45 |
vuejs/vue | 1e37633567f5d015db24ae0210b1adb4b1c3d355 | 924435a0fae3dfeb2616c9ac17bed99f9cb8d28d | fix ssr xss (fix #5351) | [
{
"path": "src/core/vdom/helpers/resolve-async-component.js",
"patch": "@@ -1,5 +1,12 @@\n /* @flow */\n \n+// () => ({\n+// component: import('./xxx.vue'),\n+// delay: 200,\n+// loading: LoadingComponent,\n+// error: ErrorComponent\n+// })\n+\n import {\n warn,\n isObject",
"additions": 7,
... | 2017-04-01T06:07:05 |
ggml-org/llama.cpp | 0f715b4e759acceccb9f437cfd2a988fff85514a | d2d931f173b8a736b08999436e9259aafddec718 | server : fix typos in server.cpp comments [no ci] (#16883) | [
{
"path": "tools/server/server.cpp",
"patch": "@@ -3608,7 +3608,7 @@ struct server_context {\n slot.task->params.sampling.preserved_tokens.find(token) != slot.task->params.sampling.preserved_tokens.end();\n };\n \n- // frist, add sampled tokens from any ongoing sequences\n+ ... | 2025-10-31T08:51:26 |
huggingface/transformers | 37a629628329217a8f0913fd8b0119086d67058c | 0ed6d51ae8ed3f4fafca67a983b8d75bc76cd51b | Fix `autoawq[kernels]` installation in quantization docker file (#41978)
fix autoawq[kernels]
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/transformers-quantization-latest-gpu/Dockerfile",
"patch": "@@ -50,7 +50,7 @@ RUN python3 -m pip install --no-cache-dir hqq\n RUN python3 -m pip install --no-cache-dir gguf\n \n # Add autoawq for quantization testing\n-RUN python3 -m pip install --no-cache-dir autoawq[kernels]\n+RUN python... | 2025-11-02T17:54:55 |
vuejs/vue | 80fa9bf3d69c9b3c3848b927454aca94990edecf | 1648adb6c7bcc8a3a8dd887640858051ce4dc58d | fix hydration tests | [
{
"path": "test/unit/modules/vdom/patch/hydration.spec.js",
"patch": "@@ -1,7 +1,7 @@\n import Vue from 'vue'\n import VNode from 'core/vdom/vnode'\n-import { SSR_ATTR } from 'shared/util'\n import { patch } from 'web/runtime/patch'\n+import { SSR_ATTR } from 'shared/constants'\n \n describe('vdom patch: hy... | 2017-03-31T09:23:49 |
ollama/ollama | 75295b952899daaa1ad188088c5f37e62a414b55 | db5ef3004c539688f15dbd3fb3ee9d8c0b48fe05 | install: fix enable contrib on debian 12 (#1151)
On debian 12, sources definitions have moved from
/etc/apt/sources.list to /etc/apt/sources.list.d/debian.sources | [
{
"path": "scripts/install.sh",
"patch": "@@ -181,6 +181,9 @@ install_cuda_driver_apt() {\n debian)\n status 'Enabling contrib sources...'\n $SUDO sed 's/main/contrib/' < /etc/apt/sources.list | $SUDO tee /etc/apt/sources.list.d/contrib.list > /dev/null\n+ if [ -f ... | 2023-11-16T20:53:06 |
denoland/deno | 0864b5442d25d7ac8580c8b9b9adb3629c07667a | a1fb6b6d0a3e9910f9a9915ee300b5be429f6cb7 | fix(ext/node): read NODE_OPTIONS for --require and --inspect-publish-uid (#31949) | [
{
"path": "Cargo.lock",
"patch": "@@ -1667,6 +1667,7 @@ dependencies = [\n \"memchr\",\n \"nix 0.27.1\",\n \"node_resolver\",\n+ \"node_shim\",\n \"notify\",\n \"once_cell\",\n \"open\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/Cargo.toml",
"pat... | 2026-01-28T03:10:28 |
ggml-org/llama.cpp | 2976b0374d36609b0429dd6ce48807e2ad39a7c2 | d2a2673dd1c86a01ab010e18b13b8bb959968c48 | vulkan: Fix crash when FP16 mul_mat accumulation is not supported (#16796)
* Experimenting crash fix
* added assert for aborting and fixed comment
* changed to check if a pipeline is empty or not
* Moved function in class definition
* replaced with is_empty
* Modified is_empty to check only unaligned pipelines | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -145,8 +145,13 @@ static void ggml_vk_destroy_pipeline(vk::Device& device, vk_pipeline& pipeline);\n struct vk_matmul_pipeline_struct {\n vk_pipeline l, m, s;\n vk_pipeline a_l, a_m, a_s;\n+ // Returns true when all unaligned pipeline... | 2025-10-31T07:18:59 |
huggingface/transformers | 0ed6d51ae8ed3f4fafca67a983b8d75bc76cd51b | 8fb854cac869b42c87a7bd15d9298985c5aea96e | Fix `detectron2` installation in docker files (#41975)
* detectron2 - part 1
* detectron2 - part 2
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -67,7 +67,7 @@ RUN set -e; \\\n \n RUN python3 -m pip install --no-cache-dir -U timm\n \n-RUN [ \"$PYTORCH\" != \"pre\" ] && python3 -m pip install --no-cache-dir git+https://github.com/facebookresearch/detectron2.git || echo \"Don't in... | 2025-11-02T13:20:36 |
ollama/ollama | d660eebf22c11c5b13bc990aaa4f9bf538bc5480 | cac11c9137294961adbb08a6c279ab652af3bcdc | fix create from model tag | [
{
"path": "cmd/cmd.go",
"patch": "@@ -78,7 +78,7 @@ func CreateHandler(cmd *cobra.Command, args []string) error {\n \n \t\t\tbin, err := os.Open(path)\n \t\t\tif errors.Is(err, os.ErrNotExist) && c.Name == \"model\" {\n-\t\t\t\t// value might be a model reference and not a real file\n+\t\t\t\tcontinue\n \t\... | 2023-11-15T18:57:09 |
vuejs/vue | 1648adb6c7bcc8a3a8dd887640858051ce4dc58d | 69e62f0a74b6a6baab1d66dd0433cdfb410bdae7 | fix import | [
{
"path": "src/core/vdom/patch.js",
"patch": "@@ -14,7 +14,7 @@\n \n import VNode from './vnode'\n import config from '../config'\n-import { SSR_ATTR } from 'shared/util'\n+import { SSR_ATTR } from 'shared/constants'\n import { registerRef } from './modules/ref'\n import { activeInstance } from '../instance... | 2017-03-31T09:05:25 |
denoland/deno | a1fb6b6d0a3e9910f9a9915ee300b5be429f6cb7 | 7768451f225482d05b072289feffa12d5ba9a978 | fix(ext/node): pass test-child-process-bad-stdio node compat test (#31851)
Added shell command transformation logic, which handles executable
path detection (including shell variable references like "${VAR}"),
argument splitting, and translation.
Enable test-child-process-bad-stdio.js node compat test. | [
{
"path": "ext/node/polyfills/internal/child_process.ts",
"patch": "@@ -970,7 +970,7 @@ export function normalizeSpawnArguments(\n if (options.shell) {\n let command = ArrayPrototypeJoin([file, ...args], \" \");\n // Transform Node.js flags to Deno equivalents in shell commands that invoke Deno\n-... | 2026-01-28T03:07:38 |
ggml-org/llama.cpp | d2a2673dd1c86a01ab010e18b13b8bb959968c48 | 13002a08960e51a76c4d696165b5d7638d2f2b99 | vulkan: fix shmem overrun in mmq id shader (#16873)
* vulkan: fix shmem overrun in mmq id shader
* metal : fix mul_mm_id
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.cpp",
"patch": "@@ -677,7 +677,7 @@ ggml_metal_pipeline_t ggml_metal_library_get_pipeline_mul_mm_id_map0(ggml_metal_\n char name[256];\n \n snprintf(base, 256, \"kernel_mul_mm_id_map0_ne20_%d\", ne20);\n- snprintf(name, 256, \"%s\", base);\n+ sn... | 2025-10-31T07:14:49 |
huggingface/transformers | a0bf5a82eebf88ee9f52145be427f6f1541329f6 | 6fb6d3c0fbce052bffa061ad41e1a20e7558e73a | Fix typo in image_processing_lfm2_vl_fast (#41940)
fix typo | [
{
"path": "src/transformers/models/lfm2_vl/image_processing_lfm2_vl_fast.py",
"patch": "@@ -209,8 +209,8 @@ class Lfm2VlImageProcessorFast(BaseImageProcessorFast):\n do_normalize = True\n do_pad = True\n return_row_col_info = False\n- image_mean = IMAGENET_STANDARD_STD\n- image_std = IMAGE... | 2025-10-31T15:02:39 |
denoland/deno | 824b30c99682377b567b12a73b5ef21d376c17af | 3ae0124062ab3340ef13d69e36d5644d7f32d65d | fix: graceful server shutdown with open, un-upgraded connections (#31959) | [
{
"path": "ext/http/http_next.rs",
"patch": "@@ -874,7 +874,8 @@ async fn serve_http2_autodetect(\n options: Options,\n ) -> Result<(), HttpNextError> {\n let prefix = NetworkStreamPrefixCheck::new(io, HTTP2_PREFIX);\n- let (matches, io) = prefix.match_prefix().await?;\n+ let (matches, io) =\n+ pre... | 2026-01-27T15:30:27 |
ggml-org/llama.cpp | 9984cbb61d12491d604484fb38b678fa15064061 | ce18efeaf1234bd08f25bc08f88ef95cf5d9e51f | opencl: fix boundary handling for mul_mm (#16875) | [
{
"path": "ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_l4_lm.cl",
"patch": "@@ -79,8 +79,8 @@ kernel void kernel_mul_mm_f16_f32_l4_lm(\n \n for (int block = 0; block < ne00; block += BK) {\n for (int l = 0; l < BM; l += loadstride_a) {\n- if (loadc_a + l < ne01) {\n- const ... | 2025-10-30T23:00:20 |
huggingface/transformers | 5f8d02f2f12e771d59d473702bc61a7e7c4a6255 | 4418728dfa815fe3163d27c43f1b16135bd75528 | [v5] Return a BatchEncoding dict from apply_chat_template by default (#41626)
* Flip the default return type for `apply_chat_template` to match the underlying tokenizer
* Remove test_tokenization_for_chat tests, which no longer do anything useful
* Remove test_tokenization_for_chat tests, which no longer do anything... | [
{
"path": "src/transformers/models/voxtral/processing_voxtral.py",
"patch": "@@ -206,7 +206,7 @@ def apply_chat_template(\n tokenizer_kwargs = {**processed_kwargs[\"template_kwargs\"], **text_kwargs}\n tokenizer_kwargs[\"return_tensors\"] = None # let's not return tensors here\n tok... | 2025-10-31T13:50:26 |
denoland/deno | 3ae0124062ab3340ef13d69e36d5644d7f32d65d | 1b5ba4c0e0e188351d470883115f5ddca0ea47f8 | fix(unstable): lint ast comments from first file showing in others (#31956)
This issue was caused by capturing the first ever invoked `ctx` variable
instead of accessing the `ctx` of the file that is currently being
linted.
Fixes #31896 | [
{
"path": "cli/js/40_lint.js",
"patch": "@@ -631,8 +631,8 @@ function setNodeGetters(ctx) {\n hasCommenstGetter = true;\n Object.defineProperty(FacadeNode.prototype, \"comments\", {\n get() {\n- materializeComments(ctx);\n- return ctx.comments;\n+ materializeComments(this[... | 2026-01-27T13:17:31 |
huggingface/transformers | 4418728dfa815fe3163d27c43f1b16135bd75528 | 0a8ab33f7a7b81bc5777da47dd7fcc5835c51568 | V4.57.1 training ci: Refactor `test_tensor_parallel.py` (#41918)
* refactor test to not depends on subprocess (this way we can easily debug test with breakpoint)
* make test more robust by testing on more process (2 4 8)
* remove 8 gpus tests because llama is too tiny to apply TP then => RuntimeError. This will impl... | [
{
"path": "tests/tensor_parallel/test_tensor_parallel.py",
"patch": "@@ -12,26 +12,68 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-# Run the test: CUDA_VISIBLE_DEVICES=0,1 RUN_SLOW=1 pytest -sv tests/tensor_parallel/test_tensor_parallel.p... | 2025-10-31T13:46:45 |
vuejs/vue | 2451c45d4f1d9ff50ab0abd638a3d8bf37ff55e7 | 2fe42ef0c55eb065e7cf6a5850e2de3f1bcf69eb | fix preload for used chunks | [
{
"path": "src/server/template-renderer/index.js",
"patch": "@@ -23,8 +23,8 @@ export type ParsedTemplate = {\n export default class TemplateRenderer {\n template: ParsedTemplate;\n publicPath: string;\n- preloadLinks: ?string;\n- asyncFiles: ?Array<string>;\n+ preloadFiles: ?Array<string>;\n+ prefe... | 2017-03-27T12:26:07 |
ggml-org/llama.cpp | b52edd25586fabb70f0c21b274473b307cf14499 | 517b7170e1a4d733583c4b07c5b7a49acc05911c | server : remove n_past (#16818)
* server : remove n_past
* server : replace slot.n_prompt_tokens() with slot.task->n_tokens()
* server : fixes + clean-up
* cont : fix context shift
* server : add server_tokens::pos_next()
Co-authored-by: Xuan-Son Nguyen <son@huggingface.co>
* server : fix pos_next() usage
Co-au... | [
{
"path": "tools/server/README.md",
"patch": "@@ -587,7 +587,7 @@ These words will not be included in the completion, so make sure to add them to\n - `word`: Stopped due to encountering a stopping word from `stop` JSON array provided\n - `stopping_word`: The stopping word encountered which stopped the gen... | 2025-10-30T16:42:57 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
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.