repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
denoland/deno | 8012d48ec911d2e8619a3530008496d06da01dc1 | b248af44b755036bd0da339ae62d1a90fa049434 | fix(test): throw when Deno.test() is called during test execution (#32184)
Fixes #30787.
`Deno.test()` was being accepted even when called from inside a running
test callback.
That means nested registrations could silently be ignored and tests
looked like they passed.
Now `Deno.test()` calls made from inside a runni... | [
{
"path": "cli/ops/testing.rs",
"patch": "@@ -132,7 +132,7 @@ fn op_register_test(\n };\n state\n .borrow_mut::<TestContainer>()\n- .register(description, function);\n+ .register(description, function)?;\n ret_buf.copy_from_slice(&(id as u32).to_le_bytes());\n Ok(())\n }",
"additions":... | 2026-02-16T17:50:06 |
ggml-org/llama.cpp | 03ea04175da3cdd7fd8cc1835f33490e3483928a | cdabeb2c27232b5abd84210d57ac3bf33e7ebf5c | ggml webgpu: minor set rows optimization (#16810)
* Add buffer label and enable dawn-specific toggles to turn off some checks
* Minor set_rows optimization (#4)
* updated optimization, fixed errors
* non vectorized version now dispatches one thread per element
* Simplify
* Change logic for set_rows pipelines
---... | [
{
"path": "ggml/src/ggml-webgpu/ggml-webgpu.cpp",
"patch": "@@ -248,7 +248,7 @@ struct webgpu_context_struct {\n \n webgpu_pipeline memset_pipeline;\n webgpu_pipeline mul_mat_pipeline[30][2];\n- webgpu_pipeline set_rows_pipeline;\n+ webgpu_pipeline set_rows_pipeline[1][2]; // dst->type, vecto... | 2025-11-05T09:27:42 |
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 |
vuejs/vue | 0ccefff794c5fe73b80b9faf5ae5bfd8ec1a500f | dc00590bc56fc9b0afd50a11425486fb771402fc | support v-for on scoped slots (fix #5615) | [
{
"path": "flow/component.js",
"patch": "@@ -106,7 +106,7 @@ declare interface Component {\n // check custom keyCode\n _k: (eventKeyCode: number, key: string, builtInAlias: number | Array<number> | void) => boolean;\n // resolve scoped slots\n- _u: (scopedSlots: Array<[string, Function]>) => { [key: ... | 2017-05-09T15:00:15 |
ggml-org/llama.cpp | 852ce5180acd4e3641f6b71783a343647eee058d | 9aa63374f2101f4eaef425888699907b238ed2c0 | ggml : fix conv2d_dw SVE path (ggml/1380)
* Fix test-conv2d-dw failure on ARM SVE by using runtime vector length
The ggml_compute_forward_conv_2d_dw_cwhn function was using a hardcoded GGML_F32_EPR (8) for SIMD vectorization, but on ARM SVE the actual vector length varies by hardware. This caused incorrect computatio... | [
{
"path": "ggml/src/ggml-cpu/ops.cpp",
"patch": "@@ -7084,7 +7084,11 @@ static void ggml_compute_forward_conv_2d_dw_cwhn(\n const int64_t row_end = MIN(row_start + rows_per_thread, rows_total);\n \n #ifdef GGML_SIMD\n- const int64_t pkg_size = GGML_F32_EPR;\n+ #if defined(__ARM_FEATURE_SVE)\n+ ... | 2025-11-04T18:40:52 |
ollama/ollama | 5687f1a0cfa3d2408bfcb04f4342f657f6dada58 | 7eda3d0c55baab6a481eb3348586d93b299d467b | fix `unexpected end of response` errors when cancelling in `ollama run` | [
{
"path": "cmd/cmd.go",
"patch": "@@ -496,12 +496,10 @@ func generate(cmd *cobra.Command, opts generateOptions) error {\n \n \tsigChan := make(chan os.Signal, 1)\n \tsignal.Notify(sigChan, syscall.SIGINT)\n-\tvar abort bool\n \n \tgo func() {\n \t\t<-sigChan\n \t\tcancel()\n-\t\tabort = true\n \t}()\n \n \t... | 2023-11-30T05:30:16 |
denoland/deno | b248af44b755036bd0da339ae62d1a90fa049434 | 8dc2fbf7884b8a08f144aba73259306595ff9b4e | fix(ext/node): export File class from node:buffer module (#32182)
Node.js 20+ exports the `File` class from the `buffer` module. Currently
Deno's `node:buffer` polyfill exports `Blob` but not `File`, which
causes runtime errors like:
```
Error: Attempt to export a nullable value for "File"
```
This breaks frameworks... | [
{
"path": "ext/node/polyfills/buffer.ts",
"patch": "@@ -7,6 +7,7 @@ export {\n Buffer,\n constants,\n default,\n+ File,\n INSPECT_MAX_BYTES,\n isAscii,\n isUtf8,",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/node/polyfills/internal/buffer.d.ts",
... | 2026-02-16T17:46:23 |
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 |
vuejs/vue | f2bd882073919add805bf359ecdf632faf9abfcd | 5d965d5b3bbe0e76cdb97e41e01a704322253e09 | Fix: nested child elements can not be updated correctly, fix #5618 (#5627)
* fix:nested elements can not be updated correctly
* add tests
* ensure nestedIndex is always passed down | [
{
"path": "src/core/instance/render-helpers/render-list.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isObject } from 'core/util/index'\n+import { isObject, isDef } from 'core/util/index'\n \n /**\n * Runtime helper for rendering v-for lists.\n@@ -28,5 +28,8 @@ export function renderList (\n ... | 2017-05-09T15:21:49 |
ggml-org/llama.cpp | 5e90233bdba013838c1a69df7738e08bd5c058d5 | a5c07dcd7b49916c7c770f2da9583e6b82717678 | opencl: update doc (#17011)
* opencl: update docs
* opencl: update docs
* opencl: fix link
* opencl: update doc | [
{
"path": "docs/backend/OPENCL.md",
"patch": "@@ -39,25 +39,41 @@ The llama.cpp OpenCL backend is designed to enable llama.cpp on **Qualcomm Adren\n | Adreno 830 (Snapdragon 8 Elite) | Support |\n | Adreno X85 (Snapdragon X Elite) | Support |\n \n+> A6x GPUs with a recent driver and compiler are s... | 2025-11-05T00:02:36 |
ollama/ollama | 13efd5f2188f9e43600b9efef14fce21995b7a51 | c4bdfffd96da9fc4b0f7c97d2a79f5497469539b | upload: fix PUT retry | [
{
"path": "server/upload.go",
"patch": "@@ -194,24 +194,22 @@ func (b *blobUpload) Run(ctx context.Context, opts *RegistryOptions) {\n \theaders.Set(\"Content-Length\", \"0\")\n \n \tfor try := 0; try < maxRetries; try++ {\n-\t\tresp, err := makeRequestWithRetry(ctx, http.MethodPut, requestURL, headers, nil... | 2023-11-29T23:18:53 |
denoland/deno | 02c6d3d30142236d75c1de969dd342ec8c2f6f3b | 48c89eea2405f7df71f00f76ab839ba955826012 | fix(ext/node): `assert.ok` compatibility (#32173)
Allows
https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-assert-first-line.js
to pass
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "Cargo.lock",
"patch": "@@ -2512,6 +2512,7 @@ dependencies = [\n \"brotli\",\n \"bytes\",\n \"data-encoding\",\n+ \"deno_ast\",\n \"deno_core\",\n \"deno_error\",\n \"deno_fetch\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "ext/node/Cargo.toml",... | 2026-02-16T14:58:54 |
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 |
vuejs/vue | 1c40e327062452fc9c934e728b70014810653b6a | ca02043194c7f464e65559347bc6ee2539554762 | Fix use mixin API feat continuous operation (#5610)
* Update use.js
fix:use feat continuous operation
* Update mixin.js
fix:mixin feat continuous operation | [
{
"path": "src/core/global-api/mixin.js",
"patch": "@@ -5,5 +5,6 @@ import { mergeOptions } from '../util/index'\n export function initMixin (Vue: GlobalAPI) {\n Vue.mixin = function (mixin: Object) {\n this.options = mergeOptions(this.options, mixin)\n+ return this\n }\n }",
"additions": 1,
... | 2017-05-09T12:23:38 |
ggml-org/llama.cpp | b164259bbaa579e1d82b2bc18be133947ac71290 | 1f5accb8d0056e6099cd5b772b1cb787dd590a13 | chore : fix models indent after refactor (#16992) | [
{
"path": "src/models/gemma2-iswa.cpp",
"patch": "@@ -1,125 +1,125 @@\n #include \"models.h\"\n \n llm_build_gemma2_iswa::llm_build_gemma2_iswa(const llama_model & model, const llm_graph_params & params) : llm_graph_context(params) {\n- const int64_t n_embd_head = hparams.n_embd_head_k;\n-\n- ... | 2025-11-04T11:29:15 |
ollama/ollama | 39be7fdb98cdcdfb1da0753410bccfc30cfa9c0d | c2e3b891760686d163b701be564dcbcab87a8785 | fix rhel cuda install (#1321)
Co-authored-by: Cloud User <azureuser@testgpu2.hqzwom21okjenksna4y3c4ymjd.phxx.internal.cloudapp.net> | [
{
"path": "scripts/install.sh",
"patch": "@@ -217,7 +217,7 @@ fi\n \n if ! check_gpu nvidia-smi || [ -z \"$(nvidia-smi | grep -o \"CUDA Version: [0-9]*\\.[0-9]*\")\" ]; then\n case $OS_NAME in\n- centos|rhel) install_cuda_driver_yum 'rhel' $OS_VERSION ;;\n+\tcentos|rhel) install_cuda_driver_yum '... | 2023-11-29T19:55:15 |
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 | 5c8a33e3cffbae7437f44dabf54cc44b410d437f | 0f2fecf35ce2beb82c8a23f154ac4a395ae4ce83 | ci: fix mtime cache (#32193) | [
{
"path": ".github/workflows/ci.generate.ts",
"patch": "@@ -16,7 +16,7 @@ import {\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, so ensure that this line maintains this format.\n-co... | 2026-02-16T05:40:48 |
vuejs/vue | d52a4991bd6cd28d57c42c97446d27cbb36416e5 | 9ac4c4188d03fec51337b257a95954f0d3fa30a0 | Prevent unecessary input trigger with v-model (#5589)
* Prevent unecessary input trigger with v-model
Fix #5586
* Add test for compositionend on v-model + @input
* [skip ci] Rename tests for compositionend | [
{
"path": "src/platforms/web/runtime/directives/model.js",
"patch": "@@ -119,6 +119,8 @@ function onCompositionStart (e) {\n }\n \n function onCompositionEnd (e) {\n+ // prevent triggering an input event for no reason\n+ if (!e.target.composing) return\n e.target.composing = false\n trigger(e.target, ... | 2017-05-07T13:46:33 |
ggml-org/llama.cpp | 1f5accb8d0056e6099cd5b772b1cb787dd590a13 | 2759ccdb4adc8568add4316780d5e675519b0775 | Fix garbled output with REPACK at high thread counts (#16956)
* Fix garbled output with REPACK at high thread counts
Fixed a race condition in the REPACK matrix multiplication code that caused garbled output when using 26+ threads (model-dependent threshold). The issue occurred because with high thread counts, the co... | [
{
"path": "ggml/src/ggml-cpu/repack.cpp",
"patch": "@@ -1678,10 +1678,24 @@ template <typename BLOC_TYPE, int64_t INTER_SIZE, int64_t NB_COLS, ggml_type PAR\n int64_t chunk_size = (nr + nth_scaled - 1) / nth_scaled;\n int64_t nchunk = (nr + chunk_size - 1) / chunk_size;\n \n+ // E... | 2025-11-04T05:04:59 |
ollama/ollama | c2e3b891760686d163b701be564dcbcab87a8785 | cde31cb220f0d3b4b6eba75faf854a542a332384 | fix: disable ':' in tag names (#1280)
Co-authored-by: rootedbox | [
{
"path": "server/routes.go",
"patch": "@@ -416,6 +416,11 @@ func CreateModelHandler(c *gin.Context) {\n \t\treturn\n \t}\n \n+\tif strings.Count(req.Name, \":\") > 1 {\n+\t\tc.AbortWithStatusJSON(http.StatusBadRequest, gin.H{\"error\": \"':' (colon) is not allowed in tag names\"})\n+\t\treturn\n+\t}\n+\n \... | 2023-11-29T18:33:45 |
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 | 1951149659c32b26c9f1dfb557eecc20a278e298 | 21461bd0bf6cb3105e10f07e349ed07ede9a6f34 | fix(ext/node): process.exit() in worker immediately halts execution (#32169)
## Summary
In Node.js, `process.exit()` inside a worker immediately stops all JS
execution at the C++ level. In Deno, it called `workerClose()` which
triggered V8's `terminate_execution()`, but JS continued running because
V8 only checks the... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -128,6 +128,21 @@ export const exit = (code?: number | string) => {\n // Any valid thing `process.exitCode` set is already held in Deno.exitCode.\n // At this point, we don't have to pass around Node's raw/string exit value.\n process.reallyExit(... | 2026-02-15T21:18:35 |
vuejs/vue | 9ac4c4188d03fec51337b257a95954f0d3fa30a0 | 5c0c8c886520133e99d837a7a7161ced233f5120 | fix #5591: keep ssr template interpolation whitespace-insensitive (#5597) | [
{
"path": "src/server/template-renderer/parse-template.js",
"patch": "@@ -2,7 +2,7 @@\n \n const compile = require('lodash.template')\n const compileOptions = {\n- escape: /{{[^{]([\\s\\S]+?)[^}]}}/g,\n+ escape: /{{([^{][\\s\\S]+?[^}])}}/g,\n interpolate: /{{{([\\s\\S]+?)}}}/g\n }\n ",
"additions": ... | 2017-05-07T13:43:02 |
ggml-org/llama.cpp | c5023daf607c578d6344c628eb7da18ac3d92d32 | e7da30b584dc1f2ee0414c4a1298ce64eef97e8d | opencl: support imrope (#16914)
* opencl: support imrope
* opencl: fix whitespace | [
{
"path": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -8399,6 +8399,7 @@ static void ggml_cl_rope(ggml_backend_t backend, const ggml_tensor * src0, const\n const bool is_neox = mode & 2;\n const bool is_mrope = mode & GGML_ROPE_TYPE_MROPE;\n const bool is_vision = mode == GGML_ROPE_TYPE... | 2025-11-03T19:47:57 |
denoland/deno | 21461bd0bf6cb3105e10f07e349ed07ede9a6f34 | bc1e7e2b203362296cb24268fb7c07f47c3aeafc | chore: fix deno_features rebuilding when unnecessary (#32186) | [
{
"path": "runtime/features/build.rs",
"patch": "@@ -8,6 +8,12 @@ mod data;\n mod structs;\n \n fn main() {\n+ // only rerun if the build script or its input modules change,\n+ // not when any file in the package changes (the default)\n+ println!(\"cargo:rerun-if-changed=build.rs\");\n+ println!(\"cargo... | 2026-02-15T21:04:41 |
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 |
vuejs/vue | a8da4fb051bfc085e7e3781adbe6346b9db7d674 | b977c77d344cb1fc63a3daa50a4b96ef70e77ec5 | fix #5592: comment vnode should not be merged into text vnode. (#5593)
* comment vnode should not be merged into text vnode.
* add isFalse helper
* delete trailing spaces | [
{
"path": "src/core/vdom/helpers/normalize-children.js",
"patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import VNode, { createTextVNode } from 'core/vdom/vnode'\n-import { isDef, isUndef, isPrimitive } from 'shared/util'\n+import { isFalse, isDef, isUndef, isPrimitive } from 'shared/util'\n \n // The template... | 2017-05-07T13:39:04 |
ggml-org/llama.cpp | e7da30b584dc1f2ee0414c4a1298ce64eef97e8d | ed8aa63320393512bdcfe4b05b5ae01ba91888e1 | fix: Viewing multiple PDF attachments (#16974) | [
{
"path": "tools/server/webui/src/lib/components/app/chat/ChatAttachments/ChatAttachmentPreviewDialog.svelte",
"patch": "@@ -134,6 +134,15 @@\n \t\t}\n \t}\n \n+\t$effect(() => {\n+\t\tif (open) {\n+\t\t\tpdfImages = [];\n+\t\t\tpdfImagesLoading = false;\n+\t\t\tpdfImagesError = null;\n+\t\t\tpdfViewMode = ... | 2025-11-03T17:53:26 |
ollama/ollama | 424d53ac70d1960770f3bb3a7aa44afea9f2dbeb | e1a69d44c9c9adae94a54e123a7118915d6bbf4e | progress: fix bar rate | [
{
"path": "format/bytes.go",
"patch": "@@ -37,6 +37,8 @@ func HumanBytes(b int64) string {\n \tswitch {\n \tcase value >= 100:\n \t\treturn fmt.Sprintf(\"%d %s\", int(value), unit)\n+\tcase value >= 10:\n+\t\treturn fmt.Sprintf(\"%d %s\", int(value), unit)\n \tcase value != math.Trunc(value):\n \t\treturn f... | 2023-11-19T00:23:03 |
denoland/deno | afa1646de07c4a60f7eb94c58362d4b01f312477 | ad9c6cac029a095d5fb79e3b2d8fa0aac0dc7bfd | fix(ext/node): `fs.rmdir` compatibility (#32144)
Closes #32116
---------
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | [
{
"path": "cli/rt/file_system.rs",
"patch": "@@ -269,6 +269,15 @@ impl FileSystem for DenoRtSys {\n RealFs.remove_async(path, recursive).await\n }\n \n+ fn rmdir_sync(&self, path: &CheckedPath) -> FsResult<()> {\n+ self.error_if_in_vfs(path)?;\n+ RealFs.rmdir_sync(path)\n+ }\n+ async fn rmdir... | 2026-02-15T13:11:00 |
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 |
ggml-org/llama.cpp | fcfce040e816c542f374ad51461b3561d73c4bc9 | ee3a5a10adf9e83722d1914dddc56a0623ececaf | ggml : LoongArch fixes (#16958)
* Fix test-quantize-fns f16 and q4_0 failed when use LSX
* Fix LoongArch set float intrinsic when use LSX/LASX | [
{
"path": "ggml/src/ggml-cpu/arch/loongarch/quants.c",
"patch": "@@ -700,7 +700,8 @@ void ggml_vec_dot_q4_0_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const voi\n for (; ib + 1 < nb; ib += 2) {\n \n // Compute combined scale for the block 0 and 1\n- const __m128 d_0_1 = (__m128)__lsx... | 2025-11-03T06:40:02 |
vuejs/vue | cab1b151e25ffbfdd5bd3745e4932746e5cca691 | 2a1f79dfbe9a3a6241f1060ce53616ffeb12fdc6 | avoid swallowing webpack error when entry is not found (fix #5553) | [
{
"path": "src/server/webpack-plugin/server.js",
"patch": "@@ -13,7 +13,14 @@ export default class VueSSRServerPlugin {\n compiler.plugin('emit', (compilation, cb) => {\n const stats = compilation.getStats().toJson()\n const entryName = Object.keys(stats.entrypoints)[0]\n- const entryAs... | 2017-04-30T04:44:23 |
ollama/ollama | e1a69d44c9c9adae94a54e123a7118915d6bbf4e | 3d620f9462b800b880d51e0eb6e51a91182f79db | Update faq.md (#1299)
Fix a typo in the CA update command | [
{
"path": "docs/faq.md",
"patch": "@@ -139,7 +139,7 @@ Ensure the certificate is installed as a system certificate when using HTTPS. Th\n ```dockerfile\n FROM ollama/ollama\n COPY my-ca.pem /usr/local/share/ca-certificates/my-ca.crt\n-RUN update-ca-certificate\n+RUN update-ca-certificates\n ```\n \n Build a... | 2023-11-28T14:54:42 |
denoland/deno | ad9c6cac029a095d5fb79e3b2d8fa0aac0dc7bfd | 3127eab864feedc4f88bef6b97210581d174c1e6 | fix(ext/node): support O_RDONLY | O_CREAT in fs.openSync (#32152)
## Description
POSIX allows `O_RDONLY | O_CREAT` to create a file if it doesn't exist
and then open it for reading only. Node.js and other runtimes support
this combination. However, Rust's `std::fs::OpenOptions` requires write
or append access when `c... | [
{
"path": "ext/fs/std_fs.rs",
"patch": "@@ -1029,13 +1029,49 @@ fn open_options(options: OpenOptions) -> fs::OpenOptions {\n open_options\n }\n \n-#[inline(always)]\n pub fn open_with_checked_path(\n- options: OpenOptions,\n+ opts: OpenOptions,\n path: &CheckedPath,\n ) -> FsResult<std::fs::File> {\n-... | 2026-02-15T13:10:48 |
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 |
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 | 2a1f79dfbe9a3a6241f1060ce53616ffeb12fdc6 | 9478fde8c92d225661dcb4c949d0035284600fff | run bundle in the same global context when runInNewContext is false (fix #5559) | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -22,7 +22,7 @@ function createContext (context) {\n return sandbox\n }\n \n-function compileModule (files, basedir) {\n+function compileModule (files, basedir, runInNewContext) {\n const compiledScripts = {}\n const resolvedM... | 2017-04-30T04:39:00 |
ollama/ollama | e9216ea459f3fabaef81f376ddbf0ba6ef292b37 | 9e4a316405d9c5ea37ee21bba4f99573db276c70 | fix readline history on linux | [
{
"path": "readline/history.go",
"patch": "@@ -43,9 +43,12 @@ func (h *History) Init() error {\n \t}\n \n \tpath := filepath.Join(home, \".ollama\", \"history\")\n+\tif err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {\n+\t\treturn err\n+\t}\n+\n \th.Filename = path\n \n-\t//todo check if the file... | 2023-11-26T20:59:04 |
denoland/deno | 3127eab864feedc4f88bef6b97210581d174c1e6 | 0c839b0891e84faba19a3a27c772bd75e6f232d4 | fix(ext/node): add parentPath to Dirent from fs.opendir and support Buffer paths in lstat (#32178)
Closes https://github.com/denoland/deno/issues/32175
## Summary
- **Fix `fs.opendir` Dirent `parentPath`**: `Dir.read()` and
`Dir.readSync()` now pass the directory path to `direntFromDeno()`, so
Dirents correctly have... | [
{
"path": "ext/node/polyfills/_fs/_fs_dir.ts",
"patch": "@@ -50,12 +50,16 @@ export default class Dir {\n AsyncGeneratorPrototypeNext(this.#asyncIterator),\n (iteratorResult) => {\n resolve(\n- iteratorResult.done ? null : direntFromDeno(iteratorResult.value),\n+ ... | 2026-02-15T13:05:32 |
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 |
vuejs/vue | 3b426efe60c30b0fd52144c65b28603b5e4511db | bb7c543fc20c63809da0a7f530b3da1bf8f2f14e | Fix when functional component render method retrun null (fix #5536) (#5539)
* fix:create empty vnode when functional component return null
* add test
* use isDef | [
{
"path": "src/core/vdom/create-element.js",
"patch": "@@ -99,7 +99,7 @@ export function _createElement (\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children)\n }\n- if (vnode !== undefined) {\n+ if (isDef(vnode)) {\n if (ns) applyNS(vnode, ns)\... | 2017-04-29T06:42:35 |
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 |
ollama/ollama | 9fb5e8399c61217a4deef60a773de19ebd87caca | 82b9b329ff84506445f85aed8d65690bd840831a | Fix issues with inputting and formatting multi line strings in `ollama run`
Co-authored-by: Wen Sun <iwendellsun@gmail.com> | [
{
"path": "cmd/cmd.go",
"patch": "@@ -602,22 +602,20 @@ func generateInteractive(cmd *cobra.Command, model string, wordWrap bool, format\n \t\tfmt.Fprintln(os.Stderr, \"\")\n \t}\n \n-\tprompt := readline.Prompt{\n+\tscanner, err := readline.New(readline.Prompt{\n \t\tPrompt: \">>> \",\n \t\tAltProm... | 2023-11-26T04:30:34 |
denoland/deno | 0c839b0891e84faba19a3a27c772bd75e6f232d4 | e3fda850d5215d4a78e95fbc0ae86096c2f12546 | fix(ext/node): fix worker.terminate() return value and exit code (#32168)
## Summary
Two fixes to `worker.terminate()` behavior to match Node.js:
- **Return `undefined` when worker already exited**: In Node.js, calling
`worker.terminate()` after the worker has already exited resolves to
`undefined` (the internal han... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -601,7 +601,7 @@ class NodeWorker extends EventEmitter {\n // https://nodejs.org/api/worker_threads.html#workerterminate\n terminate() {\n if (this.#status === \"TERMINATED\") {\n- return PromiseResolve(0);\n+ return PromiseRes... | 2026-02-15T13:04:43 |
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 | bb7c543fc20c63809da0a7f530b3da1bf8f2f14e | 1635ca7143381265c0fb1cb197e0dbfa5d8b6365 | fix #5539: improve `isDef` type definition (#5549)
* fix #5539: improve flow type coverage
* skip unnecessary object creation
* use flow internal syntax to enable predicate type | [
{
"path": "flow/component.js",
"patch": "@@ -42,7 +42,7 @@ declare interface Component {\n $once: (event: string, fn: Function) => Component;\n $off: (event?: string | Array<string>, fn?: Function) => Component;\n $emit: (event: string, ...args: Array<mixed>) => Component;\n- $nextTick: (fn: Function... | 2017-04-29T06:24:06 |
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 |
denoland/deno | e3fda850d5215d4a78e95fbc0ae86096c2f12546 | c3fe9932581c7396d50c1b228012eb6c9102f817 | fix(ext/node): add worker_threads stdin support (#32165)
## Summary
- Adds `worker.stdin` support when `{ stdin: true }` is passed to the
`Worker` constructor
- Parent creates a `Writable` stream (`worker.stdin`) that sends
`WORKER_STDIN` / `WORKER_STDIN_END` messages to the worker via
`postMessage`
- Worker replaces... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -38,7 +38,7 @@ import {\n validateObject,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { EventEmitter } from \"node:events\";\n-import { Readable } from \"node:stream\";\n+import { Readable, Writable } from \"node:stream\";\n i... | 2026-02-14T18:26:38 |
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 |
vuejs/vue | d8315c42ef5b6b739100fad5f20e8b0c41f78eef | 3a6fd13bc5c1c900774f759f200e064d60861b96 | do not decode text inside script/style tags (fix #5526) | [
{
"path": "src/compiler/parser/html-parser.js",
"patch": "@@ -46,7 +46,7 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isPlainTextElement = makeMap('script,style,textarea', true)\n+export const isPlainTextElement = makeMap('script,style,textarea', true... | 2017-04-27T04:23:48 |
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 | 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 | c3fe9932581c7396d50c1b228012eb6c9102f817 | 021eb21b09d85e4fb8b29f4e7a0efb78397daf28 | fix(ext/node): make worker_threads ref/unref idempotent like Node.js (#32161)
Closes #31871
## Summary
- Changes `Worker.ref()`/`Worker.unref()` from a reference counter to an
idempotent boolean toggle, matching Node.js semantics
- In Node.js, `ref()`/`unref()` are idempotent: calling `ref()` multiple
times is the sa... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -160,7 +160,7 @@ const privateWorkerRef = Symbol(\"privateWorkerRef\");\n class NodeWorker extends EventEmitter {\n #id = 0;\n #name = \"\";\n- #refCount = 1;\n+ #refed = true;\n #messagePromise = undefined;\n #controlPromise = undefin... | 2026-02-14T17:34:10 |
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 |
vuejs/vue | c24f49254395f15e9f023202e98e9abe595b636e | 109689082741b3032196ad98779dd0943e8447a8 | fix edge test case | [
{
"path": "test/unit/modules/compiler/parser.spec.js",
"patch": "@@ -1,7 +1,7 @@\n import { parse } from 'compiler/parser/index'\n import { extend } from 'shared/util'\n import { baseOptions } from 'web/compiler/index'\n-import { isIE } from 'core/util/env'\n+import { isIE, isEdge } from 'core/util/env'\n \... | 2017-04-26T10:24:38 |
ollama/ollama | 12e8c12d2b5c0658cad014b58a8baf597b0741df | d77dde126b5fc6e340a9e65f1b9e33316a2c760c | Disable CUDA peer access as a workaround for multi-gpu inference bug (#1261)
When CUDA peer access is enabled, multi-gpu inference will produce
garbage output. This is a known bug of llama.cpp (or nvidia). Until the
upstream bug is fixed, we can disable CUDA peer access temporarily
to ensure correct output.
See ... | [
{
"path": "llm/llama.cpp/generate_linux.go",
"patch": "@@ -21,6 +21,6 @@ package llm\n //go:generate cmake -S ggml -B ggml/build/cuda -DLLAMA_CUBLAS=on -DLLAMA_ACCELERATE=on -DLLAMA_K_QUANTS=on\n //go:generate cmake --build ggml/build/cuda --target server --config Release\n //go:generate mv ggml/build/cuda/... | 2023-11-24T19:05:57 |
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 | fd7ab8a43abfc932d9a679acd8b1234683500328 | f08c376cad1898753f400eba47be10b93632b1d7 | Revert "fix(compile): use SHT_NOTE to prevent `strip` from removing deno compiler data" (#32171)
Reverts denoland/deno#32102 | [
{
"path": "Cargo.lock",
"patch": "@@ -6090,14 +6090,13 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.13.0\"\n+version = \"0.12.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4dd268ef2098e102e82c67d9de9076a2f1cef12ae284a7a35635ea30fa2dda9e\"... | 2026-02-14T14:04:26 |
vuejs/vue | 12b7122c161548bfc9865357d9b71302d66d4a9f | 2a247fcadc12c151e0bca7ee03254474cdba30b1 | fix mixin issue (#5514) | [
{
"path": "src/core/instance/init.js",
"patch": "@@ -115,24 +115,27 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n function resolveModifiedOptions (Ctor: Class<Component>): ?Object {\n let modified\n const latest = Ctor.options\n+ const extended = Ctor.extendOptions\n const... | 2017-04-26T06:51:25 |
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 |
denoland/deno | f08c376cad1898753f400eba47be10b93632b1d7 | fb701ea348214d960dc79d8f4edf94264744d3fb | fix(compile): use SHT_NOTE to prevent `strip` from removing deno compiler data (#32102)
Fixes https://github.com/denoland/deno/issues/22556
> Data is stored in ELF notes using a section of type SHT_NOTE and a
program
header of type PT_NOTE. The .note.sui section is placed inside a PT_LOAD
segment so it is mapped at r... | [
{
"path": "Cargo.lock",
"patch": "@@ -6090,13 +6090,14 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.6\"\n+version = \"0.13.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e2b6d6bbf43ba95540d1681826c8d7acb9744708398463ccbcd3c3a5d04c2fdc\"... | 2026-02-14T11:32:30 |
vuejs/vue | 2a247fcadc12c151e0bca7ee03254474cdba30b1 | 016920ebea8bbd3dc7c5326d6bc6590a6f4cc418 | fix ssr initial context style recording | [
{
"path": "src/server/bundle-renderer/create-bundle-runner.js",
"patch": "@@ -1,4 +1,4 @@\n-import { isObject } from 'shared/util'\n+import { isPlainObject } from 'shared/util'\n \n const vm = require('vm')\n const path = require('path')\n@@ -73,7 +73,7 @@ function compileModule (files, basedir) {\n }\n \n ... | 2017-04-25T08:53:28 |
huggingface/transformers | 0a8ab33f7a7b81bc5777da47dd7fcc5835c51568 | 90d1b67db1ecf15a631b8020d412bfbee2f0206c | Fix: prevent .gitignore truncation in run_clm_no_trainer.py (#41957)
* fix: update gitignore update flow
* fix: remove whitespace | [
{
"path": "examples/pytorch/language-modeling/run_clm_no_trainer.py",
"patch": "@@ -308,11 +308,19 @@ def main():\n api = HfApi()\n repo_id = api.create_repo(repo_name, exist_ok=True, token=args.hub_token).repo_id\n \n- with open(os.path.join(args.output_dir, \".gitignore\... | 2025-10-31T12:17:09 |
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 |
vuejs/vue | 38516b494293a9ee9bae697d559107341dca89dd | 380e98882353d24afe34568b3e06c8a29de82a4a | fix flow | [
{
"path": "src/core/instance/render-helpers/resolve-slots.js",
"patch": "@@ -12,13 +12,13 @@ export function resolveSlots (\n return slots\n }\n const defaultSlot = []\n- let name, child\n for (let i = 0, l = children.length; i < l; i++) {\n- child = children[i]\n+ const child = children[i]... | 2017-04-25T04:28:20 |
denoland/deno | 7a048f40f980f63a646444e3386e3e92d0e6a0c1 | db1386570f5fdfa7712de275ca41d1501c17dec8 | fix(ext/node): forward stdout from worker_threads to parent (#32160)
Closes #31889
## Summary
- Adds `stdout` and `stderr` as `Readable` streams on the `Worker`
class, and `stdin` (null by default), matching the Node.js API surface
- Forwards `process.stdout.write()` and `process.stderr.write()` from
worker threads t... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -38,6 +38,7 @@ import {\n validateObject,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { EventEmitter } from \"node:events\";\n+import { Readable } from \"node:stream\";\n import {\n BroadcastChannel as WebBroadcastChannel,\n... | 2026-02-14T10:03:25 |
ollama/ollama | 199941cd151fb789577af77776fc970c6db99a3a | 37d95157dfed0726d751d3a694e9d6cd3c923097 | fix: gguf int type | [
{
"path": "llm/gguf.go",
"patch": "@@ -335,7 +335,7 @@ func (llm *ggufModel) readArrayV1(r io.Reader) (arr []any, err error) {\n \t\tcase ggufTypeUint8:\n \t\t\tarr = append(arr, llm.readU8(r))\n \t\tcase ggufTypeInt8:\n-\t\t\tarr = append(arr, llm.readU8(r))\n+\t\t\tarr = append(arr, llm.readI8(r))\n \t\tc... | 2023-11-22T19:40:30 |
huggingface/transformers | 90d1b67db1ecf15a631b8020d412bfbee2f0206c | 02c324f43fe0ef5d484e846417e5f3bf4484524c | fix prepare_config_and_inputs_for_common bug in llava test (#41942)
fix bug
Signed-off-by: Yao, Matrix <matrix.yao@intel.com> | [
{
"path": "tests/models/llava/test_modeling_llava.py",
"patch": "@@ -152,10 +152,11 @@ def prepare_config_and_inputs(self):\n def prepare_config_and_inputs_for_common(self):\n config_and_inputs = self.prepare_config_and_inputs()\n config, pixel_values = config_and_inputs\n- input_... | 2025-10-31T09:02:39 |
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 |
ollama/ollama | 37d95157dfed0726d751d3a694e9d6cd3c923097 | 2eaa95b417e0711f90fe298ef233e58c6fe0a478 | fix relative path on create (#1222) | [
{
"path": "server/images.go",
"patch": "@@ -228,27 +228,32 @@ func GetModel(name string) (*Model, error) {\n \treturn model, nil\n }\n \n-func realpath(p string) string {\n-\tabspath, err := filepath.Abs(p)\n+func realpath(mfDir, from string) string {\n+\tabspath, err := filepath.Abs(from)\n \tif err != nil... | 2023-11-21T20:43:17 |
huggingface/transformers | 02c324f43fe0ef5d484e846417e5f3bf4484524c | b47b35637f5c0c0a6f4b7563072a36c083fb4159 | Fix: Gemma3TextConfig rope scaling assignments (#41934)
* Fix: Gemma3TextConfig rope scaling assignments
* Fix: type annotation for rope_parameters | [
{
"path": "src/transformers/models/gemma3/configuration_gemma3.py",
"patch": "@@ -156,7 +156,7 @@ def __init__(\n layer_types: Optional[list[str]] = None,\n final_logit_softcapping: Optional[float] = None,\n attn_logit_softcapping: Optional[float] = None,\n- rope_parameters: O... | 2025-10-30T12:23:54 |
denoland/deno | 0ea7d9f8130a2f803258d15ea641133a743ba410 | 1108e77020c560c5a777e585c1464e891ed67b0f | feat(ext/tls): add `SSLKEYLOGFILE` support for TLS key logging (#31867)
Adds support for the `SSLKEYLOGFILE` environment variable, enabling TLS
session key logging for debugging encrypted traffic.
When `SSLKEYLOGFILE` is set to a file path, Deno writes TLS session keys
in NSS Key Log format, which can be used by tool... | [
{
"path": "Cargo.lock",
"patch": "@@ -3119,6 +3119,7 @@ dependencies = [\n \"deno_core\",\n \"deno_error\",\n \"deno_native_certs\",\n+ \"log\",\n \"rustls\",\n \"rustls-pemfile\",\n \"rustls-tokio-stream\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "cli/... | 2026-02-13T16:01:10 |
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 |
huggingface/transformers | b47b35637f5c0c0a6f4b7563072a36c083fb4159 | e7e7eca06b4ae1284ea6b066d4326744445f8300 | Fix rope_parameters for gemma3 weights conversion script (#41922)
Fix rope_parameters for gemma3 weights conversion script.
Co-authored-by: Douglas Reid <21148125+douglas-reid@users.noreply.github.com> | [
{
"path": "src/transformers/models/gemma3/convert_gemma3_weights.py",
"patch": "@@ -191,7 +191,10 @@\n num_hidden_layers=34,\n num_key_value_heads=4,\n sliding_window=1024,\n- rope_parameters={\"rope_type\": \"linear\", \"factor\": 8.0}, # used for global RoPE... | 2025-10-30T11:49:18 |
vuejs/vue | c0da43d22f8f4b9aeb4f49d4e86cd9704daaff3f | af43862969fbe2ef01644eaac2a73a02039d69ad | fix incorrect compiler warning for $delete usage in templates (fix #5464) | [
{
"path": "src/compiler/error-detector.js",
"patch": "@@ -57,8 +57,9 @@ function checkNode (node: ASTNode, errors: Array<string>) {\n }\n \n function checkEvent (exp: string, text: string, errors: Array<string>) {\n- const keywordMatch = exp.replace(stripStringRE, '').match(unaryOperatorsRE)\n- if (keywor... | 2017-04-18T03:40:32 |
ollama/ollama | f2113c1fc79110c5f243a39cb5ac03590b67fed9 | 6452e2ecb83ae03b1c504e09b6ca3ce9868d0c45 | fix potential error in progress bar calculation | [
{
"path": "progress/bar.go",
"patch": "@@ -95,7 +95,10 @@ func (b *Bar) String() string {\n \t}\n \n \t// 44 is the maximum width for the stats on the right of the progress bar\n-\tsuf.WriteString(strings.Repeat(\" \", 44-suf.Len()-len(timing)))\n+\tpad := 44 - suf.Len() - len(timing)\n+\tif pad > 0 {\n+\t\... | 2023-11-21T17:48:20 |
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 |
denoland/deno | 1108e77020c560c5a777e585c1464e891ed67b0f | f72ef98854679bf50d2b479743fb98171df94869 | chore: split up deno_node to improve compile times (#32142)
I let claude loose on improving compile times and it suggested splitting
up `deno_node` by extracting the crypto stuff and node sqlite. And the
other change is getting rid of all unused constants in `winerror.rs`.
That changes it from 17k lines down to 240.
... | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -506,17 +506,17 @@ jobs:\n if: '!(matrix.skip) && matrix.job == ''test'' && matrix.profile == ''debug'' && !startsWith(github.ref, ''refs/tags/'') && runner.os == ''Linux'''\n env:\n CARGO_PROFILE_DEV_DEBUG: 0\n- run: cargo ... | 2026-02-13T15:48:57 |
vuejs/vue | 38810d8fd03b1859854623b2a7dd30506dc3c7bf | 5a617cc404ea902bc1bbd2be9c91596e2df6fffa | Support auto-prefixed style value as array (client/ssr) (#5460)
* support auto-prefixed style value as array (client/ssr)
* adjust test case | [
{
"path": "src/platforms/web/runtime/modules/style.js",
"patch": "@@ -12,7 +12,17 @@ const setProp = (el, name, val) => {\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important')\n } else {\n- el.style[normalize(name)] = val\n+ const normali... | 2017-04-17T12:49:10 |
huggingface/transformers | e7e7eca06b4ae1284ea6b066d4326744445f8300 | cad7eeeb5e8a173f8d7d746ccdb6ef670ffe6be4 | fix some ut failures on XPU w/ torch 2.9 (#41941)
* fix some ut failures on XPU w/ torch 2.9
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix style
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao, Matrix <matrix.yao@intel.com> | [
{
"path": "tests/models/grounding_dino/test_modeling_grounding_dino.py",
"patch": "@@ -682,7 +682,7 @@ def test_inference_object_detection_head(self):\n \n expectations = Expectations(\n {\n- (None, None): [[0.4526, 0.4082]],\n+ (None, None): [0.4526, 0.4082... | 2025-10-30T10:23:57 |
ollama/ollama | 6452e2ecb83ae03b1c504e09b6ca3ce9868d0c45 | aabd71aede99443d5858213eec4e8d4c10713c55 | fix cases where progress bar would not be fixed size | [
{
"path": "progress/bar.go",
"patch": "@@ -89,17 +89,13 @@ func (b *Bar) String() string {\n \n \tfmt.Fprintf(&suf, \")\")\n \n-\telapsed := time.Since(b.started)\n \tvar timing string\n \tif stats.value > b.initialValue && stats.value < b.maxValue {\n-\t\ttiming = fmt.Sprintf(\"[%s:%s]\", formatDuration(el... | 2023-11-21T17:07:25 |
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 |
denoland/deno | f72ef98854679bf50d2b479743fb98171df94869 | cf25db5ce03f61c3455b85833558278c4199bad1 | tests(node/ext): ignore zlib kmaxlength tests (#32137)
Deno pre-loads polyfills as ESM, so kMaxLength is a live binding that
can't be snapshotted like Node.js CJS require
Ignore 3 node_compat tests:
- test-zlib-kmaxlength-rangeerror
- test-zlib-brotli-kmaxlength-rangeerror
- test-zlib-zstd-kmaxlength-rangeerror | [
{
"path": "tests/node_compat/config.jsonc",
"patch": "@@ -1595,7 +1595,12 @@\n \"parallel/test-zlib-brotli-flush.js\": {},\n \"parallel/test-zlib-brotli-from-brotli.js\": {},\n \"parallel/test-zlib-brotli-from-string.js\": {},\n- // \"parallel/test-zlib-brotli-kmaxlength-rangeerror.js\": {},\... | 2026-02-13T14:32:39 |
huggingface/transformers | cad7eeeb5e8a173f8d7d746ccdb6ef670ffe6be4 | 76fc50a1527a7db593a6057903b749598f7000a9 | Minor fix in docker image build workflow (#41949)
fix
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": ".github/workflows/build-docker-images.yml",
"patch": "@@ -78,7 +78,7 @@ jobs:\n with:\n context: ./docker/transformers-all-latest-gpu\n build-args: |\n- REF=update_dockerfile\n+ REF=main\n PYTORCH=2.8.0\n TORCHCODEC=0.7.0\n... | 2025-10-30T10:02:11 |
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 |
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 |
denoland/deno | cf25db5ce03f61c3455b85833558278c4199bad1 | 6393dc0f7e34d2fb13f4c489b6211173bce08f35 | fix(ext/node): validate execArgv flags in worker_threads instead of rejecting all (#32145)
## Summary
- Validate `execArgv` flags against
`process.allowedNodeEnvironmentFlags` and
a set of worker-disallowed per-process flags, instead of rejecting all
non-empty `execArgv` arrays
- Pass `execArgv` through worker me... | [
{
"path": "ext/node/polyfills/worker_threads.ts",
"patch": "@@ -59,9 +59,13 @@ const {\n PromiseReject,\n PromiseResolve,\n SafeMap,\n+ SafeRegExp,\n SafeSet,\n SafeWeakMap,\n String,\n+ StringPrototypeIndexOf,\n+ StringPrototypeSlice,\n+ StringPrototypeSplit,\n StringPrototypeStartsWith,\... | 2026-02-13T10:13:39 |
huggingface/transformers | a43b36cf802f00616800e0bd4d748679236123ee | 10d557123b42236dabfb70d40cf3d9ef57a445d0 | fix some ut failures on XPU w/ torch 2.9 (#41923)
* fix 6 ut failures on XPU w/ torch 2.9
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
* fix UT failures for 4 models on XPU
Signed-off-by: Yao, Matrix <matrix.yao@intel.com>
---------
Signed-off-by: Yao, Matrix <matrix.yao@intel.com> | [
{
"path": "tests/models/aria/test_modeling_aria.py",
"patch": "@@ -520,7 +520,6 @@ def test_generation_no_images(self):\n quantization_config=BitsAndBytesConfig(load_in_4bit=True, llm_int8_skip_modules=[\"multihead_attn\"]),\n )\n processor = AutoProcessor.from_pretrained(model_i... | 2025-10-29T15:15: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 |
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 | 259d174e368e3b1d430712c605229321f30c7c13 | 38df1e946dea636e3dc5875b858fc77bb5fccaec | Fix Florence2 conversion script model_type KeyError (#41866)
hopefully fixed florence2_language keyerror | [
{
"path": "src/transformers/models/florence2/convert_florence2_original_pytorch_to_hf.py",
"patch": "@@ -473,6 +473,9 @@ def convert_florence2_checkpoint(hf_model_id, pytorch_dump_folder, output_hub_pa\n \n vision_config = convert_config(hf_config.vision_config.__dict__)\n text_config = hf_config.te... | 2025-10-29T13:07:30 |
denoland/deno | cb8326224826ec684229f9c99bb5ccfd2e8650fe | db4ebb78e898660c11e6c7ac64855ee44fa52895 | fix(lsp): replace lsp-types with tower-lsp-community/ls-types (#32138) | [
{
"path": "Cargo.lock",
"patch": "@@ -685,6 +685,12 @@ dependencies = [\n \"generic-array\",\n ]\n \n+[[package]]\n+name = \"borrow-or-share\"\n+version = \"0.2.4\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8... | 2026-02-12T19:56:04 |
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 | 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 |
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 | 5462376a5c9d33963c5249668e1061ccc98dcbce | e6142ad8d26bde7a33ee57421ddac029dc48b763 | Fix invalid examples in QwenVL model docstrings and add Qwen3VL example (#41812) | [
{
"path": "src/transformers/models/qwen2_5_vl/modeling_qwen2_5_vl.py",
"patch": "@@ -1453,8 +1453,6 @@ def forward(\n Example:\n \n ```python\n- >>> from PIL import Image\n- >>> import requests\n >>> from transformers import AutoProcessor, Qwen2_5_VLForConditionalGenera... | 2025-10-29T12:34:13 |
denoland/deno | db4ebb78e898660c11e6c7ac64855ee44fa52895 | 6869ed4737f0225e4f14a801ae66b9e4a97810e9 | chore: error when creating error message in lint script (#32143)
There is no `.join()` on `Set`. | [
{
"path": "tools/lint.js",
"patch": "@@ -382,7 +382,7 @@ async function ensureNoNewTopLevelEntries() {\n throw new Error(\n `New top-level entries detected: ${newEntries.join(\", \")}. ` +\n `Only the following top-level entries are allowed: ${\n- allowed.join(\", \")\n+ ... | 2026-02-12T15:55:47 |
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.