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 |
|---|---|---|---|---|---|
golang/go | e031318ca6da8db8a08ecff734ae72290dfb5f2d | bdcf33f1c0597bf18924c17ab2644310d204bf23 | cmd/compile: ARM comparisons with 0 incorrect on overflow
Some ARM rewriting rules convert 'comparing to zero' conditions of if
statements to a simplified version utilizing CMN and CMP instructions to
branch over condition flags, in order to save one Add or Sub caculation.
Such optimizations lead to wrong branching i... | [
{
"path": "src/cmd/compile/fmtmap_test.go",
"patch": "@@ -140,6 +140,7 @@ var knownFormats = map[string]string{\n \t\"float64 %.3f\": \"\",\n \t\"float64 %.6g\": \"\",\n \t\"float64 %g\": \"\",\n+\t\"i... | 2020-06-01T11:01:14 |
ggml-org/llama.cpp | 4a5b8aff40277071dbb98e81b5d0cbbbd3c37283 | d2d626938aa7b0137df6a808e0637151806a9d5a | cmake : add version to all shared object files (#17091)
When compiling llama.cpp in Yocto, it fails QA checks because the generated so files aren't versioned. This applies a version to all generated so files, allowing the package to build without errors. | [
{
"path": "ggml/src/CMakeLists.txt",
"patch": "@@ -211,6 +211,11 @@ add_library(ggml-base\n ggml-quants.h\n gguf.cpp)\n \n+set_target_properties(ggml-base PROPERTIES\n+ VERSION ${GGML_VERSION}\n+ SOVERSION ${GGML_VERSION_MAJOR}\n+)\n+\n target_include_directories(ggml-base PRIV... | 2025-11-11T11:19:50 |
nodejs/node | dce72c2335f4121957ac045bb758fefaa43d8fa1 | a5916107dd6de6d744949feefda90b96af30a210 | module: check file url passed to top-level import
Fixes: https://github.com/nodejs/node/issues/15374
PR-URL: https://github.com/nodejs/node/pull/15389
Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
Reviewed-B... | [
{
"path": "lib/module.js",
"patch": "@@ -435,7 +435,7 @@ Module._load = function(request, parent, isMain) {\n if (experimentalModules) {\n if (filename === null || /\\.mjs$/.test(filename)) {\n try {\n- ESMLoader.import(request).catch((e) => {\n+ ESMLoader.import(getURLFr... | 2017-09-13T11:33:07 |
vuejs/vue | 5d26f815c643d41e6ca6f29329593223b981fc24 | 4a0d88e46e4180edc7f22e36c25df3f8ac5d60d2 | fix(reactivity): check skip first before checking ref when creating observer (#12813)
fix #12812 | [
{
"path": "src/core/observer/index.ts",
"patch": "@@ -7,7 +7,6 @@ import {\n hasOwn,\n isArray,\n hasProto,\n- isObject,\n isPlainObject,\n isPrimitive,\n isUndef,\n@@ -108,23 +107,21 @@ export function observe(\n shallow?: boolean,\n ssrMockReactivity?: boolean\n ): Observer | void {\n- i... | 2022-10-11T05:26:20 |
huggingface/transformers | 9f7535bda8dd932fbd252916366fc44221cf7bcc | 8f2f0f0f85f9e517c495b2083c218215819bae34 | [docs] Spanish translation of tasks_explained.md (#29224)
* Add tasks_explained.md to es/
* Fix little typo in en/ version
* translate speach/audio section
* translate part of vision computer section | fix little typo in en/
* Fix little typo in en/
* Translate vision computer section | remove ** ** to ... | [
{
"path": "docs/source/en/tasks_explained.md",
"patch": "@@ -286,7 +286,7 @@ BART adapts to translation by adding a separate randomly initialized encoder to\n \n BART has since been followed up by a multilingual version, mBART, intended for translation and pretrained on many different languages.\n \n-Ready ... | 2024-02-26T16:18:15 |
ggml-org/llama.cpp | 85234a4b3aa1084147995a07c12ebcce6310dd9e | 0c74f3263273cf0d95d1f10930a12cad94c375af | vulkan: fix validation issue introduced by #16868 (#17145) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -6831,7 +6831,7 @@ static void ggml_vk_mul_mat_vec_q_f16(ggml_backend_vk_context * ctx, vk_context&\n \n vk_buffer d_B = d_D;\n size_t b_buf_offset = 0;\n- uint64_t b_sz = 0;\n+ uint64_t b_sz = 1;\n \n if (enable_bias) {\n ... | 2025-11-10T15:59:10 |
golang/go | cacac8bdc5c93e7bc71df71981fdf32dded017bf | e64675a79fef5924f268425de021372df874010e | cmd/dist: do not unset GOROOT_FINAL prior to running tests
Also do not unset it by default in the tests for cmd/go.
GOROOT_FINAL affects the GOROOT value embedded in binaries,
such as 'cmd/cgo'. If its value changes and a build command
is performed that depends on one of those binaries, the binary
would be spuriously... | [
{
"path": "src/cmd/addr2line/addr2line_test.go",
"patch": "@@ -74,18 +74,26 @@ func testAddr2Line(t *testing.T, exepath, addr string) {\n \t\tt.Fatalf(\"Stat failed: %v\", err)\n \t}\n \tfi2, err := os.Stat(srcPath)\n+\tif gorootFinal := os.Getenv(\"GOROOT_FINAL\"); gorootFinal != \"\" && strings.HasPrefix(... | 2020-06-05T20:08:08 |
nodejs/node | a5916107dd6de6d744949feefda90b96af30a210 | 8bd1668ca5fe0b0d3f78609ba3d6bc173bce6f98 | doc: fix wrong history entry in deepStrictEqual
PR-URL: https://github.com/nodejs/node/pull/15381
Fixes: https://github.com/nodejs/node/issues/15379
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "doc/api/assert.md",
"patch": "@@ -112,8 +112,6 @@ changes:\n - version: REPLACEME\n pr-url: https://github.com/nodejs/node/pull/15036\n description: NaN is now compared using the [SameValueZero][] comparison.\n- - version: REPLACEME\n- pr-url: https://github.com/nodejs/node/pull/150... | 2017-09-13T05:38:49 |
vuejs/vue | 4a0d88e46e4180edc7f22e36c25df3f8ac5d60d2 | 27eed829ccf9978a63b8cd989ff4c03897276bc2 | fix(reactivity): use WeakMap for proxy/raw checks, compat with non-extensible objects
fix #12799
close #12798 | [
{
"path": "src/core/observer/index.ts",
"patch": "@@ -17,6 +17,7 @@ import {\n noop\n } from '../util/index'\n import { isReadonly, isRef, TrackOpTypes, TriggerOpTypes } from '../../v3'\n+import { rawMap } from '../../v3/reactivity/reactive'\n \n const arrayKeys = Object.getOwnPropertyNames(arrayMethods)\... | 2022-10-11T04:26:19 |
huggingface/transformers | 7c4995f93d8d24aae05e1e43279c96dce736e5c8 | 2a7746c4d16eebc58a315cdd15720c69c65eac6f | Add feature extraction mapping for automatic metadata update (#28944)
* add feature extraction mapping
* added prefix
* ruff check
* minor fix
* Update modeling_auto.py
* fix typo
* remove prefix to make variable public/importable
* Update src/transformers/models/auto/modeling_auto.py
Co-author... | [
{
"path": "src/transformers/__init__.py",
"patch": "@@ -1460,6 +1460,7 @@\n \"MODEL_FOR_DEPTH_ESTIMATION_MAPPING\",\n \"MODEL_FOR_DOCUMENT_QUESTION_ANSWERING_MAPPING\",\n \"MODEL_FOR_IMAGE_CLASSIFICATION_MAPPING\",\n+ \"MODEL_FOR_IMAGE_MAPPING\",\n ... | 2024-02-26T10:35:37 |
ggml-org/llama.cpp | 0c74f3263273cf0d95d1f10930a12cad94c375af | c27efd2bd1f27b1ad2f0b7cb417dbb9b62b57d44 | memory: Hybrid context shift (#17009)
* feat(memory): Only fail partial erasure of recurrent tail
The recurrent state is always assumed to be the state as of the last update
from the final token in the sequence. When doing a partial erasure, if the
range does not include the final token, the erasure can be considered... | [
{
"path": "src/llama-memory-recurrent.cpp",
"patch": "@@ -151,7 +151,8 @@ bool llama_memory_recurrent::seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos\n p1 = std::numeric_limits<llama_pos>::max();\n }\n \n- // models like Mamba or RWKV can't have a state partially erased\n+ // models l... | 2025-11-10T15:14:23 |
vuejs/vue | 27eed829ccf9978a63b8cd989ff4c03897276bc2 | 2f335b2f9d09b962f40e38740826d444e4fff073 | fix(types): vue 3 directive type compatibility (#12792) | [
{
"path": "types/options.d.ts",
"patch": "@@ -4,6 +4,7 @@ import { SetupContext } from './v3-setup-context'\n import { DebuggerEvent } from './v3-generated'\n import { DefineComponent } from './v3-define-component'\n import { ComponentOptionsMixin } from './v3-component-options'\n+import { ObjectDirective, ... | 2022-10-11T03:51:05 |
golang/go | 8891b82332de4afa23f935b58263d08a3a5c6d95 | 2603d9a89ae1eb06386b9dd68fdb9f185aca4804 | cmd/go: remove a bogus assertion in mod_convert_dep
The removed line assumed that the script's WORK directory is not a
child of any directory containing version-control metadata.
While that assumption does hold in most cases, it does not hold when,
for example, $TMPDIR is $HOME/tmp and $HOME/.git/config exists.
A sim... | [
{
"path": "src/cmd/go/testdata/script/mod_convert_dep.txt",
"patch": "@@ -20,7 +20,6 @@ cd $WORK/gopkgdir/x\n ! go list .\n stderr 'cannot find main module'\n ! stderr 'Gopkg.lock'\n-! stderr 'go mod init'\n \n -- $WORK/test/Gopkg.lock --\n -- $WORK/test/x/x.go --",
"additions": 0,
"deletions": 1,
... | 2020-06-06T02:35:18 |
nodejs/node | 8bd1668ca5fe0b0d3f78609ba3d6bc173bce6f98 | d8a0364ad576f7a4a5b41a2367d8fd88a80b2832 | doc: fix emitKeypressEvents stream type
PR-URL: https://github.com/nodejs/node/pull/15399
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/readline.md",
"patch": "@@ -453,7 +453,7 @@ added: v0.7.7\n * `stream` {Readable}\n * `interface` {readline.Interface}\n \n-The `readline.emitKeypressEvents()` method causes the given [Writable][]\n+The `readline.emitKeypressEvents()` method causes the given [Readable][]\n `stream` to beg... | 2017-09-13T23:31:37 |
huggingface/transformers | 2a7746c4d16eebc58a315cdd15720c69c65eac6f | 93f8617afdadf34a3815921510b3a83925ef5db2 | Add `non_device_test` pytest mark to filter out non-device tests (#29213)
* add conftest
* fix
* remove deselected | [
{
"path": "conftest.py",
"patch": "@@ -21,10 +21,49 @@\n from os.path import abspath, dirname, join\n \n import _pytest\n+import pytest\n \n from transformers.testing_utils import HfDoctestModule, HfDocTestParser\n \n \n+NOT_DEVICE_TESTS = {\n+ \"test_tokenization\",\n+ \"test_processor\",\n+ \"tes... | 2024-02-26T10:05:49 |
ggml-org/llama.cpp | df70bedda70550fd9ebc4bc965c5dbc3f6d78345 | f914544b16a467a5c94e95ec77027775c3652c09 | arm64: add i8mm route with SVE ggml_vec_dot_q4_K_q8_K and ggml_vec_dot_q6_K_… (#15277)
* add i8mm route with SVE ggml_vec_dot_q4_K_q8_K and ggml_vec_dot_q6_K_q8_K
* Surround SVE function with compiler directive
* fix compile switch
* fix coding style
* ggml : fix indent
---------
Co-authored-by: Georgi Gerganov ... | [
{
"path": "ggml/src/ggml-cpu/arch/arm/quants.c",
"patch": "@@ -2044,6 +2044,26 @@ void ggml_vec_dot_q3_K_q8_K(int n, float * GGML_RESTRICT s, size_t bs, const voi\n \n }\n \n+#ifdef __ARM_FEATURE_SVE\n+static inline svuint32_t ggml_decode_q4scales_and_mins_for_mmla(const uint32_t * vx_scales) {\n+ const ... | 2025-11-10T13:12:59 |
vuejs/vue | 2f335b2f9d09b962f40e38740826d444e4fff073 | 60d268c4261a0b9c5125f308468b31996a8145ad | fix(sfc): remove sfc scoped deep syntax deprecation warnings | [
{
"path": "packages/compiler-sfc/src/stylePlugins/scoped.ts",
"patch": "@@ -1,6 +1,5 @@\n import { PluginCreator, Rule, AtRule } from 'postcss'\n import selectorParser from 'postcss-selector-parser'\n-import { warn } from '../warn'\n \n const animationNameRE = /^(-\\w+-)?animation-name$/\n const animationRE... | 2022-10-11T03:41:31 |
huggingface/transformers | 3f60d11a8750992287cd0d1f3dbc9df6ffc34288 | 75ed76eceaf9b20c7ec37395e4f5d491135186f9 | Improve _update_causal_mask performance (#29210)
* Fix issue 29206
* Fix style | [
{
"path": "src/transformers/models/gemma/modeling_gemma.py",
"patch": "@@ -959,15 +959,14 @@ def _update_causal_mask(self, attention_mask, input_tensor):\n self.register_buffer(\"causal_mask\", torch.triu(causal_mask, diagonal=1), persistent=False)\n \n # We use the current dtype to avoi... | 2024-02-23T09:40:44 |
golang/go | 886caba73ca3d895ecb8f17ea6866b34f2f7e8c1 | 5b9304e0be5b5e11a82e65ecc626be98b0755e3d | runtime: always mark span when marking an object
The page sweeper depends on spans being marked if any object in the
span is marked, but currently only greyobject does this.
gcmarknewobject and wbBufFlush1 also mark objects, but neither set
span marks. As a result, if there are live objects on a span, but
they're all ... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -976,6 +976,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \t\t\tthrow(\"malloc called with no P\")\n \t\t}\n \t}\n+\tvar span *mspan\n \tvar x unsafe.Pointer\n \tnoscan := typ == nil || typ.ptrdata == 0\n \tif size <= maxSmallS... | 2020-06-06T02:01:25 |
nodejs/node | 8f52ccc828c26aee8fe78c82a8a23fabd21918b7 | e3f4305c25c079bc0ae8f215d80a8374afff1eb3 | test: fix actual and expected order
In addition use the newer common.expectsError version.
PR-URL: https://github.com/nodejs/node/pull/14881
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "test/parallel/test-console.js",
"patch": "@@ -26,8 +26,8 @@ const assert = require('assert');\n assert.ok(process.stdout.writable);\n assert.ok(process.stderr.writable);\n // Support legacy API\n-assert.strictEqual('number', typeof process.stdout.fd);\n-assert.strictEqual('number', typeof process... | 2017-09-13T17:32:50 |
ggml-org/llama.cpp | 4b13a684c595ab9323be8dfa6266d9d0fb13c232 | 9898b57cbe69ab81713e16cbb84a799c6eb3e36c | mtmd: fix patch_size initialized to random value in audio models (#17128)
* mtmd: fix patch_size initialized to random value in audio models
* add default hparams | [
{
"path": "tools/mtmd/clip.cpp",
"patch": "@@ -160,13 +160,13 @@ enum patch_merge_type {\n };\n \n struct clip_hparams {\n- int32_t image_size;\n- int32_t patch_size;\n- int32_t n_embd;\n- int32_t n_ff;\n- int32_t projection_dim;\n- int32_t n_head;\n- int32_t n_layer;\n+ int32_t imag... | 2025-11-10T10:41:05 |
vuejs/vue | e0b26c483a1ba407a818b1fcba1a439df24e84a8 | 46ca7bcddc06c50796ccff82d8c45693f1f14f47 | fix: fix parent of multi-nested HOC $el not updating (#12757)
fix #12589 | [
{
"path": "src/core/instance/lifecycle.ts",
"patch": "@@ -83,8 +83,15 @@ export function lifecycleMixin(Vue: typeof Component) {\n vm.$el.__vue__ = vm\n }\n // if parent is an HOC, update its $el as well\n- if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n- vm.$parent... | 2022-08-23T01:22:45 |
huggingface/transformers | 75ed76eceaf9b20c7ec37395e4f5d491135186f9 | 45244940725ec1b3e4c390b74dbafe65b298acca | Fix missing translation in README_ru (#29054)
* Fix missing translation in README_ru
* Update README_ru.md
Co-authored-by: Maria Khalusova <kafooster@gmail.com>
---------
Co-authored-by: Maria Khalusova <kafooster@gmail.com> | [
{
"path": "README_ru.md",
"patch": "@@ -520,7 +520,8 @@ conda install conda-forge::transformers\n 1. **[XLSR-Wav2Vec2](https://huggingface.co/docs/transformers/model_doc/xlsr_wav2vec2)** (from Facebook AI) released with the paper [Unsupervised Cross-Lingual Representation Learning For Speech Recognition](ht... | 2024-02-23T08:26:21 |
ggml-org/llama.cpp | b8595b16e69e3029e06be3b8f6635f9812b2bc3f | 392e09a60852d0e879d4bbedd5ace3e6852f719e | mtmd : fix embedding size for image input (#17123) | [
{
"path": "tools/mtmd/mtmd-helper.cpp",
"patch": "@@ -182,7 +182,7 @@ int32_t mtmd_helper_decode_image_chunk(\n }\n \n const llama_model * model = llama_get_model(lctx);\n- int n_mmproj_embd = llama_model_n_embd(model);\n+ int n_mmproj_embd = llama_model_n_embd_inp(model);\n int n_pos_per_... | 2025-11-09T16:31:02 |
nodejs/node | bac313b0863d18115d27286305158f4b8a17cb0f | f9ad23dc910a09b283098dceeb35a37ac38dcab2 | util: fix out of bounds indices in util.inspect
This fixes a issue brought up in #15288.
PR-URL: https://github.com/nodejs/node/pull/14881
Refs: https://github.com/nodejs/node/issues/15288
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gru... | [
{
"path": "lib/util.js",
"patch": "@@ -652,6 +652,9 @@ function formatSpecialArray(ctx, value, recurseTimes, keys, maxLength, valLen) {\n if (visibleLength === maxLength)\n break;\n const index = +key;\n+ // Arrays can only have up to 2^32 - 1 entries\n+ if (index > 2 ** 32 - 2... | 2017-09-09T06:32:08 |
golang/go | 5b9304e0be5b5e11a82e65ecc626be98b0755e3d | bb8901456cec0baa0b0ad894cfe412ee6275ec5c | crypto/x509: match RFC suggested SKID generation method
Rather than hashing the encoding of the SPKI structure, hash the
bytes of the public key itself.
Fixes #39429
Change-Id: I55a0f8f08ab1f1b5702590b47d8b9a92d1dbcc1f
Reviewed-on: https://go-review.googlesource.com/c/go/+/236878
Run-TryBot: Katie Hockman <katie@gol... | [
{
"path": "src/crypto/x509/x509.go",
"patch": "@@ -2129,16 +2129,13 @@ func CreateCertificate(rand io.Reader, template, parent *Certificate, pub, priv\n \t\tauthorityKeyId = parent.SubjectKeyId\n \t}\n \n-\tencodedPublicKey := asn1.BitString{BitLength: len(publicKeyBytes) * 8, Bytes: publicKeyBytes}\n-\tpki... | 2020-06-07T15:32:28 |
vuejs/vue | 46ca7bcddc06c50796ccff82d8c45693f1f14f47 | 810f6d12edea47cde7f39eaf7ec3ae1b7300d40c | fix(compiler-sfc): avoid deindent when lang is jsx/tsx
fix #12755 | [
{
"path": "packages/compiler-sfc/src/parseComponent.ts",
"patch": "@@ -179,11 +179,11 @@ export function parseComponent(\n let text = source.slice(currentBlock.start, currentBlock.end)\n if (\n options.deindent === true ||\n- // by default, deindent unless it's script with default... | 2022-08-23T01:18:36 |
huggingface/transformers | 45244940725ec1b3e4c390b74dbafe65b298acca | 2cc8cf6ce7ae0416561acbb639df4bbc5f409b6f | fix(mlflow): check mlflow version to use the synchronous flag (#29195)
* fix(mlflow): check mlflow version to use the flag
* fix indent
* add log_params async and fix quality | [
{
"path": "src/transformers/integrations/integration_utils.py",
"patch": "@@ -29,6 +29,7 @@\n from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Union\n \n import numpy as np\n+import packaging.version\n \n from .. import __version__ as version\n from ..utils import flatten_dict, is_datasets_av... | 2024-02-23T08:19:51 |
ggml-org/llama.cpp | 392e09a60852d0e879d4bbedd5ace3e6852f719e | 802cef44bfaa80987076d621c8bf5875627c197b | vulkan: fix memory allocations (#17122) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -2220,9 +2220,12 @@ static vk_buffer ggml_vk_create_buffer(vk_device& device, size_t size, const std\n }\n buf->memory_property_flags = req_flags;\n \n+ bool done = false;\n+\n for (auto mtype_it = memory_type_indi... | 2025-11-09T15:14:41 |
vuejs/vue | 810f6d12edea47cde7f39eaf7ec3ae1b7300d40c | 15618888cb6aae2b6f0151b32c261b1fc19db1b8 | fix(types): Add missing type parameter constraints (#12754) | [
{
"path": "types/options.d.ts",
"patch": "@@ -95,8 +95,8 @@ export type ThisTypedComponentOptionsWithArrayProps<\n Computed,\n PropNames extends string,\n SetupBindings,\n- Mixin,\n- Extends\n+ Mixin extends ComponentOptionsMixin,\n+ Extends extends ComponentOptionsMixin\n > = object &\n Compone... | 2022-08-22T02:28:39 |
golang/go | ee379d2b08ce12c24042da18d711e2a1bd7943f0 | 5c6b2b14db8264a8cdc3634e68c7ae65307df0ae | all: treat all files as binary, but check in .bat with CRLF
This is a followup to CL 96495.
It should be simpler and more robust to achieve .bat files having
CRLF line endings by treating it as a binary file, like all other
files, and checking it in with the desired CRLF line endings.
A test is used to check the ent... | [
{
"path": ".gitattributes",
"patch": "@@ -1,16 +1,16 @@\n # Treat all files in the Go repo as binary, with no git magic updating\n-# line endings. Windows users contributing to Go will need to use a\n-# modern version of git and editors capable of LF line endings.\n+# line endings. This produces predictable... | 2020-06-04T04:35:09 |
nodejs/node | f9ad23dc910a09b283098dceeb35a37ac38dcab2 | 01652ccc682d2ed678d43a22d1ceb33776c0d4b1 | util: refactor inspect for performance and more
The main optimizations are
- Removed visibleKeys
- Removed proxy cache
- Removed Object.assign
- No key concatenating anymore
- No key recalculating anymore
- Improved indentation logic
- Improved string escape logic
- Added many fast paths
- Optimized code branches a lo... | [
{
"path": "lib/util.js",
"patch": "@@ -39,8 +39,8 @@ const {\n isSet,\n isSetIterator,\n isTypedArray,\n- isRegExp: _isRegExp,\n- isDate: _isDate,\n+ isRegExp,\n+ isDate,\n kPending,\n kRejected,\n } = process.binding('util');\n@@ -50,7 +50,8 @@ const {\n deprecate,\n getConstructorOf,\n ... | 2017-08-17T00:36:52 |
huggingface/transformers | 2cc8cf6ce7ae0416561acbb639df4bbc5f409b6f | dabe8556686a5727f7b707099967c8ce8ff16e96 | Fix `torch.compile` with `fullgraph=True` when `attention_mask` input is used (#29211)
* fix torch.export.export for llama
* do not change doc title
* make fix copies | [
{
"path": "docs/source/en/perf_infer_gpu_one.md",
"patch": "@@ -184,7 +184,7 @@ For now, Transformers supports SDPA inference and training for the following arc\n \n <Tip>\n \n-FlashAttention can only be used for models with the `fp16` or `bf16` torch type, so make sure to cast your model to the appropriate... | 2024-02-22T15:40:06 |
vuejs/vue | 8521f9d3f63d26bde99b747f0cb14d0ac5ba5971 | 7161176cd0dff10d65ab58e266018aff2660610f | fix(types): fix missing error for accessing undefined instance properties
fix #12718 | [
{
"path": "types/test/v3/define-component-test.tsx",
"patch": "@@ -1166,6 +1166,62 @@ defineComponent({\n }\n })\n \n-// #12742 allow attaching custom properties (consistent with v3)\n-const Foo = defineComponent({})\n-Foo.foobar = 123\n+describe('constructor attach custom properties', () => {\n+ // #127... | 2022-08-19T04:22:51 |
ggml-org/llama.cpp | 802cef44bfaa80987076d621c8bf5875627c197b | 1c07c0c68c692d39b83f491bad9447af852bb652 | convert : parse safetensors directly (#15667)
* convert : parse safetensors directly
* gguf-py : order safetensors tensors by name
Applies to both local and remote safetensors custom parsing.
This matches the behavior of the official safetensors implementation.
* convert : rename from_safetensors_meta to from_local... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -218,8 +218,7 @@ def index_tensors(self, remote_hf_model_id: str | None = None) -> dict[str, Call\n logger.info(f\"gguf: indexing model part '{part_name}'\")\n ctx: ContextManager[Any]\n if is_safetensors:\n- ... | 2025-11-09T14:49:40 |
golang/go | 608cdcaede1e7133dc994b5e8894272c2dce744b | 666448abebed5c165b90814a0f4146a8ae084fb0 | all: replace usages of whitelist/blacklist and master/slave
There's been plenty of discussion on the usage of these terms in tech.
I'm not trying to have yet another debate. It's clear that there are
people who are hurt by them and who are made to feel unwelcome by their
use due not to technical reasons but to their h... | [
{
"path": "doc/go1.10.html",
"patch": "@@ -30,7 +30,7 @@ <h2 id=\"introduction\">Introduction to Go 1.10</h2>\n runs <a href=\"#test-vet\">vet automatically during tests</a>,\n and\n permits <a href=\"#cgo\">passing string values directly between Go and C using cgo</a>.\n-A new <a href=\"#cgo\">compiler opt... | 2020-06-07T00:59:12 |
vuejs/vue | 7161176cd0dff10d65ab58e266018aff2660610f | 165a14a6c6c406176037465d2961259c5c980399 | fix: fix effect scope tracking for manually created instances
fix #12705 | [
{
"path": "src/core/instance/init.ts",
"patch": "@@ -34,6 +34,7 @@ export function initMixin(Vue: typeof Component) {\n vm.__v_skip = true\n // effect scope\n vm._scope = new EffectScope(true /* detached */)\n+ vm._scope._vm = true\n // merge options\n if (options && options._isCompon... | 2022-08-18T10:14:50 |
ggml-org/llama.cpp | 1c07c0c68c692d39b83f491bad9447af852bb652 | cb1adf885105da7ce23db746b4202f4e987aa3e8 | convert : handle compressed-tensors quant method (#17069)
* convert : handle compressed-tensors quant method
* convert : handle int-quantized models
* convert : handle naive-quantized models
* gguf-py : __pos__ is also unary
* convert : fix flake8 lint
* convert : use F32 for dequant of pack-quantized tensors | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -278,15 +278,14 @@ def dequant_bitnet(weight: Tensor, scale: Tensor) -> Tensor:\n # The scale is inverted\n return data / scale.float()\n \n- def dequant_simple(weight: Tensor, scale: Tensor) -> Tensor:\n+ ... | 2025-11-09T14:45:50 |
golang/go | 3c35eec6184fba625e0c3207c05694f4020131a1 | 325540922a228dd8ab80abb200b834d043d5b925 | runtime: clarify wording/grammar on GODEBUG=invalidptr
Change-Id: Ia06b6be262922991bae3528e7b061d1db9e4c3c0
Reviewed-on: https://go-review.googlesource.com/c/go/+/236679
Reviewed-by: Austin Clements <austin@google.com> | [
{
"path": "src/runtime/extern.go",
"patch": "@@ -87,7 +87,7 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \tWhen set to 0 memory profiling is disabled. Refer to the description of\n \tMemProfileRate for the default value.\n \n-\tinvalidptr: defaults to invalidptr=1, cau... | 2020-06-05T15:32:41 |
vuejs/vue | 165a14a6c6c406176037465d2961259c5c980399 | bba6b3d6b4e3e26d28abbf20e74ec2f3e64f1a92 | fix(ssr): fix on-component directives rendering (#12661)
fix #10733 | [
{
"path": "packages/server-renderer/src/render.ts",
"patch": "@@ -206,6 +206,11 @@ function renderComponentInner(node, isRoot, context) {\n type: 'Component',\n prevActive\n })\n+ if (isDef(node.data) && isDef(node.data.directives)) {\n+ childNode.data = childNode.data || {}\n+ ... | 2022-08-18T08:22:55 |
ggml-org/llama.cpp | 7f3e9d339c99d96d6df9833c63ec27dbbc96f003 | 8a3519b70898b07ec05c391418a05aaa6b377c83 | vulkan: iGPU memory reporting fix (#17110)
* vulkan: use all device-local heaps for memory availability reporting
Co-authored-by: Giuseppe Scrivano <gscrivan@redhat.com>
* use all available heaps for iGPU memory reporting
* Allow multiple memory types per buffer request for devices with split heaps
---------
Co-a... | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -2159,17 +2159,18 @@ static void ggml_vk_queue_command_pools_cleanup(vk_device& device) {\n }\n }\n \n+static std::vector<uint32_t> ggml_vk_find_memory_properties(const vk::PhysicalDeviceMemoryProperties* mem_props, vk::MemoryRequirements* m... | 2025-11-09T08:54:47 |
golang/go | 325540922a228dd8ab80abb200b834d043d5b925 | b44bf986a2ddd903059732b519237d4504cfdeb2 | doc: update contribution guide to make it friendlier for x/ repos
The current contributor documentation is tailored towards contributors
to golang/go, but we have a number of increasingly popular x/ repos.
In this CL, I tried to generalize the language to make it apply to any
repository.
Also, I fixed an old link I n... | [
{
"path": "doc/contribute.html",
"patch": "@@ -263,6 +263,24 @@ <h2 id=\"before_contributing\">Before contributing code</h2>\n an <a href=\"https://golang.org/issues\">existing one</a>.\n </p>\n \n+<h3 id=\"where\">Where to contribute</h3>\n+\n+<p>\n+The Go project consists of the main\n+<a href=\"https://g... | 2020-05-22T03:58:39 |
nodejs/node | e9358af5818d87ebedf5bf1eab1ec7972041bfea | 973c12f631c53a9833e0bcd11f5457ebec5269c4 | errors: remove duplicate error definition
Also fixes error being (now!) properly thrown by alphabetize-errors.
also properly enable lint rule
Was not using proper magic comment syntax before!
-URL: https://github.com/nodejs/node/pull/15307
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Luigi Pinca ... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1250,11 +1250,6 @@ Used when an attempt is made to launch a Node.js process with an unknown\n by errors in user code, although it is not impossible. Occurrences of this error\n are most likely an indication of a bug within Node.js itself.\n \n-<a id=\"ERR_VALUE_O... | 2017-09-10T02:56:30 |
vuejs/vue | bba6b3d6b4e3e26d28abbf20e74ec2f3e64f1a92 | 9eb8ea5b63eec2b09f268738e9d0e311d9eafb19 | feat(types): enhance type for onErrorCaptured (#12735) | [
{
"path": "src/v3/apiLifecycle.ts",
"patch": "@@ -42,7 +42,6 @@ export const onBeforeUpdate = createLifeCycle('beforeUpdate')\n export const onUpdated = createLifeCycle('updated')\n export const onBeforeUnmount = createLifeCycle('beforeDestroy')\n export const onUnmounted = createLifeCycle('destroyed')\n-ex... | 2022-08-18T08:20:27 |
huggingface/transformers | 2a9b1f80c45cab19b542bc7cc004937d39d6f6fb | fc37f38915372c15992b540dfcbbe00a916d4fc6 | [Gemma] Fix eager attention (#29187)
* fix modelling code
* add tests
* fix tests
* add some logit tests
* style
* fix fix | [
{
"path": "src/transformers/models/gemma/modeling_gemma.py",
"patch": "@@ -276,7 +276,7 @@ def forward(\n \n attn_output = attn_output.transpose(1, 2).contiguous()\n \n- attn_output = attn_output.reshape(bsz, q_len, self.hidden_size)\n+ attn_output = attn_output.view(bsz, q_len, -1)\n ... | 2024-02-22T00:07:52 |
ggml-org/llama.cpp | 8a3519b70898b07ec05c391418a05aaa6b377c83 | 80a6cf63473b95742444a1b27d45164591282a7d | vulkan: fix mmq out of bounds reads (#17108)
* vulkan: fix mmq out of bounds reads, streamline outdated matmul host code
* fix mul_mat_id quantization call
* Fix compiler warnings | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -586,7 +586,6 @@ struct vk_device_struct {\n vk_matmul_pipeline2 pipeline_dequant_mul_mat_mat_id_q8_1[GGML_TYPE_COUNT];\n \n vk_pipeline pipeline_matmul_split_k_reduce;\n- vk_pipeline pipeline_quantize_q8_1;\n vk_pipeline pipeline... | 2025-11-09T08:52:57 |
vuejs/vue | 9eb8ea5b63eec2b09f268738e9d0e311d9eafb19 | 2263948c249e7486403bc5880712e6d9fd15c17f | chore: fix some legacy doc urls in warnings and readme (#12725) [ci skip] | [
{
"path": "README.md",
"patch": "@@ -73,7 +73,7 @@ Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/c\n \n ## Documentation\n \n-To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vuejs.org](https://vuejs.org).\n+To check out [live examples](https://v... | 2022-08-18T08:12:20 |
golang/go | b44bf986a2ddd903059732b519237d4504cfdeb2 | 890707f88b75e7bef51f57ba37afd709502c4e80 | doc/go1.15: mention new debug/pe constants
The constants were added in CL 222637.
For #37419
Change-Id: Iae662d677d31c44a7560399ef6771f520c1f7663
Reviewed-on: https://go-review.googlesource.com/c/go/+/236682
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> | [
{
"path": "doc/go1.15.html",
"patch": "@@ -328,7 +328,10 @@ <h3 id=\"minor_library_changes\">Minor changes to the library</h3>\n <dl id=\"debug/pe\"><dt><a href=\"/pkg/debug/pe/\">debug/pe</a></dt>\n <dd>\n <p><!-- CL 222637 -->\n- TODO: <a href=\"https://golang.org/cl/222637\">https://golang.org... | 2020-06-05T16:52:35 |
nodejs/node | 0c258bdc4040fcc4ab590fc80dbcd2182b4c74ae | 92e5f5cc09fdbf223a418aef1154b2b75b3f9dcd | n-api: Context for custom async operations
- Add napi_async_context opaque pointer type.
(If needed, we could later add APIs for getting the async IDs
out of this context.)
- Add napi_async_init() and napi_async_destroy() APIs.
- Add async_context parameter to napi_make_callback().
- Add code and checks to t... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -41,7 +41,8 @@ The documentation for N-API is structured as follows:\n * [Working with JavaScript Properties][]\n * [Working with JavaScript Functions][]\n * [Object Wrap][]\n-* [Asynchronous Operations][]\n+* [Simple Asynchronous Operations][]\n+* [Custom Asynchro... | 2017-08-26T22:44:43 |
huggingface/transformers | ae49b218c3d718df90d8e4a109016450fb8f0632 | 594c1277b2fcc1c1aed252d320359101409e0407 | FIX [`Gemma`] Fix bad rebase with transformers main (#29170)
fix bad rebase | [
{
"path": "src/transformers/models/gemma/modeling_gemma.py",
"patch": "@@ -124,17 +124,16 @@ def rotate_half(x):\n \n \n # Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb\n-def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1):\n+def apply_rotary_pos_emb(q, k, cos... | 2024-02-21T13:56:34 |
ggml-org/llama.cpp | 333f2595a3e0e4c0abf233f2f29ef1710acd134d | 53d7d21e6128af43020190100b7f91d7bdce93c5 | webui: fix keyboard shortcuts for new chat & edit chat title (#17007) | [
{
"path": "tools/server/webui/src/routes/+layout.svelte",
"patch": "@@ -44,12 +44,12 @@\n \t\t\t}\n \t\t}\n \n-\t\tif (isCtrlOrCmd && event.shiftKey && event.key === 'o') {\n+\t\tif (isCtrlOrCmd && event.shiftKey && event.key === 'O') {\n \t\t\tevent.preventDefault();\n \t\t\tgoto('?new_chat=true#/');\n \t\... | 2025-11-08T19:52:35 |
vuejs/vue | 2263948c249e7486403bc5880712e6d9fd15c17f | 5221d4d3b6049c87d196d99dbb64bcd3f3b07279 | fix: directives shorthand normalize error (#12744)
fix #12743 | [
{
"path": "src/core/vdom/modules/directives.ts",
"patch": "@@ -103,7 +103,15 @@ function normalizeDirectives(\n }\n res[getRawDirName(dir)] = dir\n if (vm._setupState && vm._setupState.__sfc) {\n- dir.def = dir.def || resolveAsset(vm, '_setupState', 'v-' + dir.name)\n+ const setupDef =... | 2022-08-18T08:11:47 |
rust-lang/rust | 6eb48824dac44b466ca03fe67760a63d8a45d1dc | d88ffcdb8bfc6f8b917574c1693eb9764a20eff5 | Don't mention `FromResidual` on bad `?`
Unless `try_trait_v2` is enabled, don't mention that `FromResidual` isn't implemented for a specific type when the implicit `From` conversion of a `?` fails. For the end user on stable, `?` might as well be a compiler intrinsic, so we remove that note to avoid further confusion ... | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -3293,6 +3293,14 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n let mut parent_trait_pred =\n self.resolve_vars_if_possible(data.derived.parent_trait_pred);\n l... | 2025-02-18T17:34:16 |
nodejs/node | d195a069b697d4cfc41f09037471908089cbd98f | 7456db937d91750cdbe4f9935e4d40cc682ace07 | src: fix typo in probe description
This fixes a typo in a probe description added in
dc1996dd1f87ba0e90201ffbc7cb133e2ea6b1b2.
PR-URL: https://github.com/nodejs/node/pull/15397
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmai... | [
{
"path": "src/v8ustack.d",
"patch": "@@ -522,7 +522,7 @@ dtrace:helper:ustack:\n \t\tNO_SHARED_FUNCTION_NAME_SENTINEL;\n }\n \n-dtracr:helper:ustack:\n+dtrace:helper:ustack:\n /!this->done && this->hassharedname/\n {\n \tLOAD_STRFIELDS(this->funcrawnamestr, this->funcnamelen,",
"additions": 1,
"del... | 2017-09-13T20:35:25 |
ggml-org/llama.cpp | eeee367de51fb34d46c8103fc0ae827e84d94470 | 64fe17fbb84f493dbc33e4c13042953c4f5bfaeb | server: fix correct time_ms calculation in prompt_progress (#17093)
* fix: correct time_ms calculation in send_partial_response
The time_ms field was incorrectly calculated. The division was happening
before the subtraction leading to incorrect values.
Before: (ggml_time_us() - slot.t_start_process_prompt / 1000) Af... | [
{
"path": "tools/server/README.md",
"patch": "@@ -512,7 +512,7 @@ These words will not be included in the completion, so make sure to add them to\n \n `timings_per_token`: Include prompt processing and text generation speed information in each response. Default: `false`\n \n-`return_progress`: Include prom... | 2025-11-08T13:12:11 |
huggingface/transformers | 594c1277b2fcc1c1aed252d320359101409e0407 | 58245ba6fba739a03388f52b0773d2fc965701e3 | [ `gemma`] Adds support for Gemma 💎 (#29167)
* inital commit
* update
* update conversion checkpoint
* update conversion script
* nits
* some fixes
* nits
* merge
* fix permute
* nits
* fix
* nits
* nits
* nits
* fix rope
* fix both rope
* nites
* style
* make sur... | [
{
"path": "README.md",
"patch": "@@ -374,6 +374,7 @@ Current number of checkpoints: ** (from Microsoft Research) released with the paper [Focal Modulation Networks](https://arxiv.o... | 2024-02-21T13:21:28 |
golang/go | 60cbff6f1906ec1bbc939acfb7cc97b18e639ce9 | a38f29ad613a56b2ad5b3f109a404c06a7a92fed | crypto/x509: match cgo and Apple behavior in domain fallback of macOS roots
This change makes the direct call darwin loadSystemRoots implementation
match the existing cgo implementation, which in turn _mostly_ matches
the Apple implementation. The main change here is that when
SecTrustSettingsCopyTrustSettings the err... | [
{
"path": "src/crypto/x509/root_darwin_amd64.go",
"patch": "@@ -140,20 +140,39 @@ func isRootCertificate(cert *Certificate) bool {\n //\n // https://developer.apple.com/documentation/security/1400261-sectrustsettingscopytrustsetting\n func sslTrustSettingsResult(cert macOS.CFRef) (macOS.SecTrustSettingsResu... | 2020-05-11T23:21:54 |
vuejs/vue | 5221d4d3b6049c87d196d99dbb64bcd3f3b07279 | 89a6b5e8658a6e3ae2cf649829901784ac9deb3c | fix(compiler-sfc): rewriteDefault for class with decorators (#12747) | [
{
"path": "packages/compiler-sfc/src/rewriteDefault.ts",
"patch": "@@ -42,7 +42,12 @@ export function rewriteDefault(\n }).program.body\n ast.forEach(node => {\n if (node.type === 'ExportDefaultDeclaration') {\n- s.overwrite(node.start!, node.declaration.start!, `const ${as} = `)\n+ if (no... | 2022-08-18T08:01:00 |
nodejs/node | bdaa2cb58520b115cdc170bc46ad6120369486bd | 8c8c90b714756433b3333146a2893572b473dfd6 | test: add regression test for 5691
With `CallbackScope`, this has become possible to do properly.
Fixes: https://github.com/nodejs/node/issues/5691
PR-URL: https://github.com/nodejs/node/pull/14697
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/addons/callback-scope/binding.cc",
"patch": "@@ -1,5 +1,6 @@\n #include \"node.h\"\n #include \"v8.h\"\n+#include \"uv.h\"\n \n #include <assert.h>\n #include <vector>\n@@ -30,8 +31,39 @@ void RunInCallbackScope(const v8::FunctionCallbackInfo<v8::Value>& args) {\n args.GetReturnValue().S... | 2017-09-05T17:06:37 |
ggml-org/llama.cpp | d6fe40fa0040bf7207b2380d0f3628fb56d6a86f | e14e842e87103ec2a004770cec95a3f94f861bda | vulkan: Fix test-thread-safety crashes (#17024)
The std::map pipeline_flash_attn_f32_f16 could be searched and inserted at the
same time, which needs to hold the lock. To be safe, hold the lock for all of
ggml_vk_load_shaders. | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -130,9 +130,9 @@ struct vk_pipeline_struct {\n // true if fields have been set by ggml_vk_create_pipeline\n bool initialized {};\n // set to true to request the pipeline is compiled\n- bool needed {};\n+ std::atomic<bool> neede... | 2025-11-08T07:39:45 |
huggingface/transformers | cc4a664baaac790aadc4ca9c5d93031893432433 | 3994fa5bafa56db6581d962d562f3c54fac291df | `torch.compile` compatibility with `generate` + static cache (#29114)
* fix compatibility
* working version
* cleanup
* sanity checks
* more sanity
* working version WITH refactor
* working without API change
* cleanup & tests pass
* more cleaning
* fix test
* fix tests
* Update src/tr... | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -357,7 +357,6 @@ def __init__(self, config: PretrainedConfig, max_batch_size: int, max_cache_len:\n cache_shape = (max_batch_size, self.num_key_value_heads, self.max_cache_len, self.head_dim)\n self.key_cache: torch.Tensor = torch.zer... | 2024-02-21T11:19:30 |
vuejs/vue | b4bf4c52ad31e02307cfd4d643dc5610c893e3ba | 80d1baf92050da411fb1bfe714401c498001dd36 | fix(types): allow attaching unknown options to defined component
fix #12742 | [
{
"path": "types/test/v3/define-component-test.tsx",
"patch": "@@ -1165,3 +1165,7 @@ defineComponent({\n return h('div', {}, [...this.$slots.default!])\n }\n })\n+\n+// #12742 allow attaching custom properties (consistent with v3)\n+const Foo = defineComponent({})\n+Foo.foobar = 123",
"additions":... | 2022-08-18T07:32:12 |
golang/go | 7bc3b6e5e4b6061ebfa267fcb27731ac94ae7f4d | 7795523910227cb6df3c91ebdb317037fc9ceb86 | [dev.link] cmd/link: use fingerprint as package hash
Now the compiler-generated fingerprint is a hash of the export
data. We don't need to hash it ourselves in the linker. And the
linker doesn't need to read export data at all.
Fixes #33820.
Change-Id: I54bf3ebfd0f0c72aa43a352d7b2e0575dd62970d
Reviewed-on: https://g... | [
{
"path": "src/cmd/link/internal/ld/elf.go",
"patch": "@@ -12,7 +12,6 @@ import (\n \t\"crypto/sha1\"\n \t\"encoding/binary\"\n \t\"encoding/hex\"\n-\t\"io\"\n \t\"path/filepath\"\n \t\"sort\"\n \t\"strings\"\n@@ -1713,7 +1712,7 @@ func (ctxt *Link) doelf() {\n \t\tsort.Sort(byPkg(ctxt.Library))\n \t\th := ... | 2020-06-01T23:36:16 |
ggml-org/llama.cpp | e14e842e87103ec2a004770cec95a3f94f861bda | 647b960bd8017ee882d6633bc2e43e2ae82ee85c | CUDA: fix MMQ stream-k fixup ne1 indices (#17089) | [
{
"path": "ggml/src/ggml-cuda/mmq.cuh",
"patch": "@@ -3494,7 +3494,7 @@ static __global__ void mul_mat_q_stream_k_fixup(\n const int col_diff = col_high - col_low;\n \n for (int j = threadIdx.y*warp_size + threadIdx.x; j < mmq_x; j += nwarps*warp_size) {\n- ids_dst_shared[j] = ids_dst[col_low... | 2025-11-08T07:26:18 |
nodejs/node | cba206fa24e6ab15cad23ee7d44fa444f110582e | 688765a3c97378da473db7517e39d8c1dd2fea1c | docs: update 8.5.0 changelog
The original changelog included incorrect information regarding
the new perf_hooks api.
refs: https://github.com/nodejs/node/pull/15308#issuecomment-328874385
PR-URL: https://github.com/nodejs/node/pull/15384
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaël Zasso <mi... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -115,7 +115,7 @@ changes:\n - version: REPLACEME\n pr-url: https://github.com/nodejs/node/pull/15001\n - version: v8.5.0\n- pr-url: https://github.com/nodejs/node/pull/12142\n+ pr-url: https://github.com/nodejs/node/pull/15001\n description: Erro... | 2017-09-13T08:50:43 |
huggingface/transformers | e770f0316d2a9b787c9d1440f204fcb65e176682 | c47576ca6e699c6f8eaa8dfc4959e2e85dec0c72 | [`pipeline`] Add pool option to image feature extraction pipeline (#28985)
* Add pool option
* PR comments - error message and exact outputs check | [
{
"path": "src/transformers/pipelines/image_feature_extraction.py",
"patch": "@@ -14,6 +14,8 @@\n image_processor_kwargs (`dict`, *optional*):\n Additional dictionary of keyword arguments passed along to the image processor e.g.\n {\"size\": {\"height\": 100, \"width\... | 2024-02-20T20:22:08 |
golang/go | b371f189dfdfb2454a20ec276de55fe884d6ff9f | bffb8818e76e830697e183219523aa25a32480f0 | io/ioutil: update WriteFile to clarify it does not change permissions if the file exists.
The existing documentation of WriteFile does not make it clear for
non-native English speakers that it will not change the permissions if
the file already exists before.
Fixes #35711
Change-Id: If861c3e3700957fc9ac3d5313351c57d... | [
{
"path": "src/io/ioutil/ioutil.go",
"patch": "@@ -75,7 +75,7 @@ func ReadFile(filename string) ([]byte, error) {\n \n // WriteFile writes data to a file named by filename.\n // If the file does not exist, WriteFile creates it with permissions perm\n-// (before umask); otherwise WriteFile truncates it befor... | 2020-02-07T10:36:26 |
ggml-org/llama.cpp | 65156105069fa86a4a81b6cb0e8cb583f6420677 | 7956bb4d7f430f23f3c4726f7e6404b89f6e20a4 | CUDA: fix should_use_mmvf for ne11 == 1 (#17085)
* CUDA: fix should_use_mmvf for ne11 == 1
* Apply suggestion from @am17an
Co-authored-by: Aman Gupta <amangupta052@gmail.com>
---------
Co-authored-by: Aman Gupta <amangupta052@gmail.com> | [
{
"path": "ggml/src/ggml-cuda/mmf.cu",
"patch": "@@ -129,7 +129,13 @@ bool ggml_cuda_should_use_mmf(enum ggml_type type, int cc, int warp_size, const\n if (src0_ne[0] % (warp_size * (4/ts)) != 0) {\n return false;\n }\n- for (size_t i = 0; i < GGML_MAX_DIMS; ++i) {\n+\n+ if (src0_nb[0]... | 2025-11-07T19:53:14 |
huggingface/transformers | c47576ca6e699c6f8eaa8dfc4959e2e85dec0c72 | 3c00b885b92fbcd0e7451e56ccf424a2d5a19bbb | Fix drop path being ignored in DINOv2 (#29147)
Fix drop path not being used | [
{
"path": "src/transformers/models/dinov2/modeling_dinov2.py",
"patch": "@@ -380,7 +380,7 @@ def __init__(self, config: Dinov2Config) -> None:\n self.norm1 = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)\n self.attention = Dinov2Attention(config)\n self.layer_scale1 = D... | 2024-02-20T17:31:59 |
rust-lang/rust | fa7a188e85f54ac69607bce89d663a8443b9efe6 | 9b08f0eebb5d1f16069895bdb3c506c5078d17a5 | fix `clippy::len-zero` | [
{
"path": "src/bootstrap/src/lib.rs",
"patch": "@@ -633,7 +633,7 @@ impl Build {\n \n // Check for postponed failures from `test --no-fail-fast`.\n let failures = self.delayed_failures.borrow();\n- if failures.len() > 0 {\n+ if !failures.is_empty() {\n eprintln!(\"\... | 2025-02-18T17:20:11 |
golang/go | bffb8818e76e830697e183219523aa25a32480f0 | f72d7cfc8fb5326c37e47414f388562460abae56 | all: fix dead links to inferno-os bitbucket repository
Generated using:
perl -i -npe 's#inferno-os/src/default#inferno-os/src/master#' $(git grep -l "inferno-os/src/default" | grep -v vendor)
Change-Id: I4b6443bd09a8ea4c8aaeb40a1c73520d1f7ca648
Reviewed-on: https://go-review.googlesource.com/c/go/+/235821
Reviewed... | [
{
"path": "src/cmd/compile/internal/gc/gsubr.go",
"patch": "@@ -1,5 +1,5 @@\n // Derived from Inferno utils/6c/txt.c\n-// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6c/txt.c\n+// https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6c/txt.c\n //\n //\tCopyright © 1994-1999 Lucent ... | 2020-06-03T11:17:17 |
ggml-org/llama.cpp | aa374175c30184aeb1813ec71fc68780dd073906 | 5b180c3d60f3df61cd9955bc5c69e64537958f92 | CUDA: fix crash on uneven context without FA (#16988) | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -2113,7 +2113,7 @@ static bool ggml_cuda_should_fuse_mul_mat_vec_f(const ggml_tensor * tensor) {\n src1->type == GGML_TYPE_F32 && dst->type == GGML_TYPE_F32;\n \n const int cc = ggml_cuda_info().devices[ggml_cuda_get_device()].cc;\n-... | 2025-11-06T13:05:47 |
nodejs/node | ed2f347f27f78102f4fba0e61b93f9096eb7e33d | b8d532c4bdfeef7f52337ffe61dd7ed6c37bb052 | child_process: set shell to false in fork()
This commit ensures that spawn()'s shell option is unconditionally
set to false when fork() is called.
Refs: https://github.com/nodejs/node/pull/15299
Fixes: https://github.com/nodejs/node/issues/13983
PR-URL: https://github.com/nodejs/node/pull/15352
Reviewed-By: James M S... | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -356,6 +356,9 @@ output on this fd is expected to be line delimited JSON objects.\n *Note*: Unlike the fork(2) POSIX system call, `child_process.fork()` does\n not clone the current process.\n \n+*Note*: The `shell` option available in [`child_process.spawn... | 2017-09-09T18:44:55 |
huggingface/transformers | 1c81132e80478e278681686fe44dfec793d5dee9 | b8b16475d41b66ab0e1fe9d1cb82bbff65e5f6d6 | Raise unused kwargs image processor (#29063)
* draft processor arg capture
* add missing vivit model
* add new common test for image preprocess signature
* fix quality
* fix up
* add back missing validations
* quality
* move info level to warning for unused kwargs | [
{
"path": "src/transformers/image_utils.py",
"patch": "@@ -759,3 +759,11 @@ def validate_annotations(\n \"(batch of images) with the following keys: `image_id`, `file_name` and `segments_info`, with \"\n \"the latter being a list of annotations in the COCO format.\"\n ... | 2024-02-20T15:20:20 |
vuejs/vue | f0057b101e6451d5095cdb7fd6308fd31ac0450c | bd89ce53a9de417a9372630bb5d433a40acc1a53 | fix(watch): avoid pre watcher firing on unmount
fix #12703 | [
{
"path": "src/v3/apiWatch.ts",
"patch": "@@ -274,10 +274,7 @@ function doWatch(\n let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE\n // overwrite default run\n watcher.run = () => {\n- if (\n- !watcher.active &&\n- !(flush === 'pre' && instance && instance._isBeingDestroyed)\n- ... | 2022-08-15T11:06:38 |
rust-lang/rust | 9b08f0eebb5d1f16069895bdb3c506c5078d17a5 | 0b7d8ab4c2ad07bc821e11f627db28d96e776f26 | fix `clippy::doc-overindented-list-items` | [
{
"path": "src/bootstrap/src/core/build_steps/toolstate.rs",
"patch": "@@ -354,12 +354,12 @@ fn read_old_toolstate() -> Vec<RepoState> {\n /// 1. Generate a new Personal access token:\n ///\n /// * Login to the bot account, and go to Settings -> Developer settings ->\n-/// Personal access ... | 2025-02-18T17:19:33 |
golang/go | 73dd74a9fe5a000123c0ef47ce5e0dbea1907d41 | b7717e46340b7ffe5fd53313f10dfa85a141f77a | cmd/internal/goobj2: add referenced symbol names to object file
Currently, for symbols defined in other packages and referenced
by index, we don't record its name in the object file, as the
linker doesn't need the name, only the index. As a consequence,
tools like objdump and nm also don't know the referenced symbol
n... | [
{
"path": "src/cmd/internal/goobj/readnew.go",
"patch": "@@ -7,7 +7,6 @@ package goobj\n import (\n \t\"cmd/internal/goobj2\"\n \t\"cmd/internal/objabi\"\n-\t\"fmt\"\n \t\"strings\"\n )\n \n@@ -31,7 +30,13 @@ func (r *objReader) readNew() {\n \t\t// Ignore fingerprint (for tools like objdump which only read... | 2020-06-02T21:45:57 |
ggml-org/llama.cpp | 5b180c3d60f3df61cd9955bc5c69e64537958f92 | b7f9010d24766792d8887c227a883ed3b315d2be | metal : initial Metal4 tensor API support (#16634)
* metal : rework mat-mat multiplication
* metal : initial Metal4 support
* cont
* metal : detect tensor support
* cont : better ifdefs
* metal : support tensors in mul_mm_id
* metal : add env for disabling tensor API
* tests : restore
* metal : remove unused c... | [
{
"path": "ggml/src/ggml-metal/ggml-metal-context.m",
"patch": "@@ -35,7 +35,6 @@\n // additional, inference-time compiled pipelines\n ggml_metal_pipelines_t pipelines_ext;\n \n- bool use_bfloat;\n bool use_fusion;\n bool use_concurrency;\n bool use_graph_optimize;\n@@ -121,11 +120,10... | 2025-11-06T12:45:10 |
nodejs/node | d38e6434091ba4692fdf7d32d1d488bb6a91ad3c | ff16337b809bdc1f535fff1a4770eea48ca87588 | test: remove obsolete debugger tests
The tests in `test/debugger` all fail since the removal of the
pre-inspector debugger (if they weren't already failing). They do not
run in CI (probably because they were never reliable). Remove them and
associated fixtures.
PR-URL: https://github.com/nodejs/node/pull/15139
Review... | [
{
"path": "Makefile",
"patch": "@@ -386,9 +386,6 @@ test-pummel: all\n test-internet: all\n \t$(PYTHON) tools/test.py internet\n \n-test-debugger: all\n-\t$(PYTHON) tools/test.py debugger\n-\n test-inspector: all\n \t$(PYTHON) tools/test.py inspector\n ",
"additions": 0,
"deletions": 3,
"languag... | 2017-09-01T21:42:27 |
huggingface/transformers | ee3af60be0d21044692211d97dfd858aa3e4b418 | 0996a10077219de0556281511fc02f3ab68002d5 | Add support for fine-tuning CLIP-like models using contrastive-image-text example (#29070)
* add support for siglip and chinese-clip model training with contrastive-image-text example
* codebase fixups | [
{
"path": "src/transformers/models/auto/configuration_auto.py",
"patch": "@@ -54,6 +54,7 @@\n (\"camembert\", \"CamembertConfig\"),\n (\"canine\", \"CanineConfig\"),\n (\"chinese_clip\", \"ChineseCLIPConfig\"),\n+ (\"chinese_clip_vision_model\", \"ChineseCLIPVisionConfig\"),\n... | 2024-02-20T12:08:31 |
vuejs/vue | bd89ce53a9de417a9372630bb5d433a40acc1a53 | 4b37b568c7c3fd238aa61fcc956f882223f8e87f | fix: ensure render watcher of manually created instance is correctly tracked in owner scope
fix #12701 | [
{
"path": "src/core/instance/lifecycle.ts",
"patch": "@@ -209,13 +209,15 @@ export function mountComponent(\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on v... | 2022-08-15T07:37:13 |
rust-lang/rust | 0b7d8ab4c2ad07bc821e11f627db28d96e776f26 | 587012b85a019b169a8808112ff978b2a030d2d5 | fix `clippy::double-ended-iterator-last` | [
{
"path": "src/bootstrap/src/core/build_steps/test.rs",
"patch": "@@ -3619,7 +3619,7 @@ impl Step for TestFloatParse {\n let bootstrap_host = builder.config.build;\n let compiler = builder.compiler(builder.top_stage, bootstrap_host);\n let path = self.path.to_str().unwrap();\n- ... | 2025-02-18T17:18:50 |
ggml-org/llama.cpp | 4882f0ff786088871b3ab3abd9e525a4213ee218 | 9d7c518d642db8657e2a53a9793c5f039ed8ea5a | clip: implement minicpm-v sinusoidal embd using GGML (#17036)
* clip: implement minicpm-v sinusoidal embd using GGML
* fix repeat op | [
{
"path": "tools/mtmd/clip.cpp",
"patch": "@@ -1083,16 +1083,24 @@ struct clip_graph {\n }\n \n ggml_cgraph * build_minicpmv() {\n- const int batch_size = 1;\n-\n GGML_ASSERT(model.class_embedding == nullptr);\n- const int n_pos = n_patches;\n+ const int n_pos = n_... | 2025-11-06T10:02:54 |
golang/go | 66e35c995bb68d62612644c6566f500c3df45026 | 09e791feb1dfbfc05578a17cd9c035ef82af4033 | crypto/tls: fix duplicate calls to VerifyConnection
Also add a test that could reproduce this error and
ensure it doesn't occur in other configurations.
Fixes #39012
Change-Id: If792b5131f312c269fd2c5f08c9ed5c00188d1af
Reviewed-on: https://go-review.googlesource.com/c/go/+/233957
Run-TryBot: Katie Hockman <katie@gol... | [
{
"path": "src/crypto/tls/handshake_client_test.go",
"patch": "@@ -1464,6 +1464,225 @@ func TestServerSelectingUnconfiguredCipherSuite(t *testing.T) {\n \t}\n }\n \n+func TestVerifyConnection(t *testing.T) {\n+\tt.Run(\"TLSv12\", func(t *testing.T) { testVerifyConnection(t, VersionTLS12) })\n+\tt.Run(\"TLSv... | 2020-05-13T21:44:20 |
nodejs/node | a172b7c51ec31d18d055889048dd5432bdd01d55 | 5ee2d3ef0eedd97b9cf757c0ee67f44d1b9ffb57 | test: refactor test-debug-prompt
* Use cleaner `process.stdin.write('.exit')` to exit the process rather
than `proc.kill()`.
* Move test to sequential. It uses the default port 9229. It will fail
if another inspector test (or test using port 0) is already using that
port. So it needs to be run sequentially rathe... | [
{
"path": "test/sequential/test-debug-prompt.js",
"patch": "@@ -11,5 +11,5 @@ let output = '';\n proc.stdout.on('data', (data) => {\n output += data;\n if (output.includes('debug> '))\n- proc.kill();\n+ proc.stdin.write('.exit\\n');\n });",
"additions": 1,
"deletions": 1,
"language": "... | 2017-09-02T00:30:10 |
vuejs/vue | 4b37b568c7c3fd238aa61fcc956f882223f8e87f | 5c742eb2e0d8dad268fb29ed4f92d286b5e0f4b5 | fix(types): fix options suggestions when using defineComponent
functional component overloads should be moved last
fix #12736 | [
{
"path": "types/v3-define-component.d.ts",
"patch": "@@ -67,30 +67,6 @@ type DefineComponent<\n props: PropsOrPropOptions\n }\n \n-/**\n- * overload 0.0: functional component with array props\n- */\n-export function defineComponent<\n- PropNames extends string,\n- Props = Readonly<{ [key in PropNam... | 2022-08-15T01:53:12 |
huggingface/transformers | 15cfe38942e4012f5476e7f45dfacf26791b0ccc | efdd436663436e78d8ad3213d11325d86578db95 | [`Core tokenization`] `add_dummy_prefix_space` option to help with latest issues (#28010)
* add add_dummy_prefix_space option to slow
* checking kwargs might be better. Should be there for all spm tokenizer IMO
* nits
* fix copies
* more copied
* nits
* add prefix space
* nit
* nits
* Updat... | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -585,6 +585,9 @@ def converted(self) -> Tokenizer:\n \n replacement = \"▁\"\n add_prefix_space = True\n+ if hasattr(self.original_tokenizer, \"add_prefix_space\"):\n+ add_prefix_space = self.original_token... | 2024-02-20T11:50:31 |
rust-lang/rust | 587012b85a019b169a8808112ff978b2a030d2d5 | 5a8923768043b58aafa2977de057f5308617a4c8 | fix `clippy::unneeded-struct-pattern` | [
{
"path": "src/bootstrap/src/core/build_steps/check.rs",
"patch": "@@ -69,7 +69,7 @@ impl Step for Std {\n );\n \n std_cargo(builder, target, compiler.stage, &mut cargo);\n- if matches!(builder.config.cmd, Subcommand::Fix { .. }) {\n+ if matches!(builder.config.cmd, Subcommand:... | 2025-02-18T17:16:18 |
ggml-org/llama.cpp | 9d7c518d642db8657e2a53a9793c5f039ed8ea5a | 22c8c3c6ad8d6239c366ce3a84ace8b0ac59ef88 | sycl: add CONCAT operator support (#16047)
* sycl: add CONCAT operator support
* cleanup: remove stray lines added by mistake
* fix: code format issues in concat.cpp and tests/test-backend-ops.cpp
* chore: fix editorconfig violations
* cleanup: drop unnecessary i16 type support
* docs: update sycl-csv and regener... | [
{
"path": "docs/ops.md",
"patch": "@@ -24,7 +24,7 @@ Legend:\n | ARGSORT | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |\n | CEIL | ❌ | ❌ | ✅ | 🟡 | ❌ | ❌ | ✅ | ❌ | ❌ |\n | CLAMP | ❌ | ✅ | ✅ | ✅ | 🟡 | 🟡 | ✅ | 🟡 | ❌ |\n-| ... | 2025-11-06T10:02:33 |
vuejs/vue | 5c742eb2e0d8dad268fb29ed4f92d286b5e0f4b5 | 00458cd38d209410d3c675729230a42a0a34a4b9 | fix(compiler-sfc): allow full hostnames in asset url base (#12732)
fix #12731 | [
{
"path": "packages/compiler-sfc/src/templateCompilerModules/utils.ts",
"patch": "@@ -24,10 +24,15 @@ export function urlToRequire(\n // does not apply to absolute urls or urls that start with `@`\n // since they are aliases\n if (firstChar === '.' || firstChar === '~') {\n+ // Allow for fu... | 2022-08-15T01:37:08 |
huggingface/transformers | efdd436663436e78d8ad3213d11325d86578db95 | 5e95dcabe1d3d522a8bc5a45990c53d9d4e9f2eb | FIX [`PEFT` / `Trainer` ] Handle better peft + quantized compiled models (#29055)
* handle peft + compiled models
* add tests
* fixup
* adapt from suggestions
* clarify comment | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -429,6 +429,12 @@ def __init__(\n getattr(model, \"hf_quantizer\", None) is not None and model.hf_quantizer.is_trainable\n )\n \n+ # Filter out quantized + compiled models\n+ if _is_quantized_and_base_model and hasattr(m... | 2024-02-20T11:45:08 |
nodejs/node | 5ee2d3ef0eedd97b9cf757c0ee67f44d1b9ffb57 | 99a779947c9dc4e440b3e5143601e68a655b1db9 | test: fix sequential/test-async-wrap-getasyncid
Previously, this test would contain a DNS query that timed out
after 60 seconds, thus occupying one of the parallel test slots
for that period.
Fix that by creating a new channel for that request, and cancelling
it immediately.
PR-URL: https://github.com/nodejs/node/pu... | [
{
"path": "test/sequential/test-async-wrap-getasyncid.js",
"patch": "@@ -56,8 +56,12 @@ function testInitialized(req, ctor_name) {\n \n testInitialized(dns.lookup('www.google.com', () => {}), 'GetAddrInfoReqWrap');\n testInitialized(dns.lookupService('::1', 22, () => {}), 'GetNameInfoReqWrap');\n- test... | 2017-09-09T20:41:34 |
rust-lang/rust | 5408aaea598793f0803af59f66dfd31376b6c661 | 26f588bba4e2b2309628ecc1322b6d254253eae7 | fix rust-analyzer tests
Signed-off-by: onur-ozkan <work@onurozkan.dev> | [
{
"path": "src/bootstrap/src/core/build_steps/test.rs",
"patch": "@@ -369,6 +369,7 @@ impl Step for RustAnalyzer {\n let stage = self.stage;\n let host = self.host;\n let compiler = builder.compiler(stage, host);\n+ let compiler = tool::get_tool_rustc_compiler(builder, compile... | 2025-02-18T17:21:50 |
ggml-org/llama.cpp | a44d77126c911d105f7f800c17da21b2a5b112d1 | 5886f4f545591dafbbd9d6117a46d7399ce13bfa | vulkan: Fix GGML_VULKAN_CHECK_RESULTS to better handle fusion (#16919) | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -14104,30 +14104,18 @@ size_t comp_size;\n size_t comp_nb[GGML_MAX_DIMS];\n size_t check_counter = 0;\n static void ggml_vk_check_results_0(ggml_backend_vk_context * ctx, ggml_cgraph * cgraph, int tensor_idx) {\n- ggml_tensor * tensor = cgrap... | 2025-11-05T18:51:03 |
vuejs/vue | 00458cd38d209410d3c675729230a42a0a34a4b9 | 1d8b892fcd9edcef1feeed74ad586beabb9f6df2 | fix(types): Make SetupBindings optional on ExtendedVue and CombinedVueInstance (#12727)
fix #12726
fix #12717 | [
{
"path": "types/vue.d.ts",
"patch": "@@ -100,7 +100,7 @@ export type CombinedVueInstance<\n Methods,\n Computed,\n Props,\n- SetupBindings\n+ SetupBindings = {}\n > = Data &\n Methods &\n Computed &\n@@ -114,7 +114,7 @@ export type ExtendedVue<\n Methods,\n Computed,\n Props,\n- SetupBin... | 2022-08-09T00:50:53 |
huggingface/transformers | 5e95dcabe1d3d522a8bc5a45990c53d9d4e9f2eb | a7755d24096306c84a3557394b54a95db7a0f76f | [`cuda kernels`] only compile them when initializing (#29133)
* only compile when needed
* fix mra as well
* fix yoso as well
* update
* rempve comment
* Update src/transformers/models/deformable_detr/modeling_deformable_detr.py
* Update src/transformers/models/deformable_detr/modeling_deformable_det... | [
{
"path": "src/transformers/models/deformable_detr/modeling_deformable_detr.py",
"patch": "@@ -17,8 +17,10 @@\n \n import copy\n import math\n+import os\n import warnings\n from dataclasses import dataclass\n+from pathlib import Path\n from typing import Dict, List, Optional, Tuple, Union\n \n import torch\... | 2024-02-20T11:38:59 |
rust-lang/rust | d93926cb5d1cb2da36757b137cfdbe9961d05625 | 3b022d8ceea570db9730be34d964f0cc663a567f | Fix typo in hidden internal docs of `TrustedRandomAccess`
I typoed the coercion direction here 4 years ago; fixing it now | [
{
"path": "library/core/src/iter/adapters/zip.rs",
"patch": "@@ -556,21 +556,21 @@ impl<A: Debug + TrustedRandomAccessNoCoerce, B: Debug + TrustedRandomAccessNoCoe\n /// * `std::iter::ExactSizeIterator::len`\n /// * `std::iter::Iterator::__iterator_get_unchecked`\n /// * `std::iter::TrustedRando... | 2025-02-18T16:52:11 |
nodejs/node | 99a779947c9dc4e440b3e5143601e68a655b1db9 | eb4940e2d29e98572c69e59aaf447f1dd68f7425 | doc: add missing doc for readable._destroy
PR-URL: https://github.com/nodejs/node/pull/15316
Fixes: https://github.com/nodejs/node/issues/15291
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daniel Beveniu... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -1601,6 +1601,15 @@ The `readable._read()` method is prefixed with an underscore because it is\n internal to the class that defines it, and should never be called directly by\n user programs.\n \n+#### readable.\\_destroy(err, callback)\n+<!-- YAML\n+added: v8.0.0... | 2017-09-10T13:53:57 |
ggml-org/llama.cpp | 13b339bcd91de64d59512f308f6f69eaca688103 | 2f0c2db43e2adfa9ffbdfa1176b3b6bd9c9ed536 | server : do not default to multiple slots with speculative decoding (#17017)
* server : do not default to multiple slots with speculative decoding
* cont : fix | [
{
"path": "common/common.h",
"patch": "@@ -507,6 +507,10 @@ struct common_params {\n // return false from callback to abort model loading or true to continue\n llama_progress_callback load_progress_callback = NULL;\n void * load_progress_callback_user_data = NULL;\n+\n+ bool ... | 2025-11-05T12:32:55 |
vuejs/vue | 2af751b6efa0cd9cb817ed96af41948e92599837 | ba7dd2c4ed62dba30bde7c1d521f7bfbab529102 | fix(reactivity): fix shallowReactive nested ref setting edge cases
ref #12688 | [
{
"path": "src/core/observer/index.ts",
"patch": "@@ -191,7 +191,7 @@ export function defineReactive(\n } else if (getter) {\n // #7981: for accessor properties without setter\n return\n- } else if (isRef(value) && !isRef(newVal)) {\n+ } else if (!shallow && isRef(value) && !... | 2022-07-22T03:19:34 |
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.