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 | 0aed2a4133d4a6cbefa9f86096500009bacc8e4c | 6ad5f4e334a7b2cecf319d7f4aecfaa8d790395e | runtime: no SIGWINCH to pgrp while GDB is running
When run with stdin == /dev/null and stdout/stderr == pipe (i.e., as
os/exec.Command.CombinedOutput), GDB suffers from a bug
(https://sourceware.org/bugzilla/show_bug.cgi?id=26056) that causes
SIGSEGV when sent a SIGWINCH signal.
Package runtime tests TestEINTR and Te... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -19,6 +19,12 @@ import (\n \t\"testing\"\n )\n \n+// NOTE: In some configurations, GDB will segfault when sent a SIGWINCH signal.\n+// Some runtime tests send SIGWINCH to the entire process group, so those tests\n+// must never run in parallel with G... | 2020-05-29T20:01:17 |
huggingface/transformers | 4156f517ce0f00e0b7842410542aad5fe37e73cf | 6d1f545665ac66420af9f6702d891a30c5d070ea | Patch to skip failing `test_save_load_low_cpu_mem_usage` tests (#29043)
* Patch to skip currently failing tests
* Whoops - wrong place | [
{
"path": "tests/models/bert_generation/test_modeling_bert_generation.py",
"patch": "@@ -305,6 +305,12 @@ def test_model_from_pretrained(self):\n model = BertGenerationEncoder.from_pretrained(\"google/bert_for_seq_generation_L-24_bbc_encoder\")\n self.assertIsNotNone(model)\n \n+ @unittes... | 2024-02-15T17:26:33 |
rust-lang/rust | 40ecda6a33bdfb4ca66ecb5555473511a9b1b9f6 | ce36a966c79e109dabeef7a47fe68e5294c6d71e | Remove obsolete MinGW ThinLTO+TLS workaround
#109797 is fixed | [
{
"path": "library/std/src/sys/thread_local/os.rs",
"patch": "@@ -28,9 +28,7 @@ pub macro thread_local_inner {\n // user provided type or type alias with a matching name. Please update the shadowing test\n // in `tests/thread.rs` if these types are renamed.\n unsafe {\n- /... | 2025-02-17T21:17:05 |
vuejs/vue | f8de4ca9d458a03378e848b1e62d6507f7124871 | d3add06e6e18a78a3745240632fecd076eb49d19 | fix(types): fix missing instance properties on defineComponent this
ref https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223 | [
{
"path": "types/test/v3/define-component-test.tsx",
"patch": "@@ -1139,9 +1139,14 @@ defineComponent({\n }\n })\n \n+// Missing / mismatching Vue 2 properties\n // https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223\n defineComponent({\n render(h) {\n+ this.$listeners\n+ this.$on('f... | 2022-07-08T07:39:16 |
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 | 6d1f545665ac66420af9f6702d891a30c5d070ea | 8a0ed0a9a2ee8712b2e2c3b20da2887ef7c55fe6 | FIX: Fix error with `logger.warning` + inline with recent refactor (#29039)
Update modeling_utils.py | [
{
"path": "src/transformers/modeling_utils.py",
"patch": "@@ -4192,7 +4192,7 @@ def warn_if_padding_and_no_attention_mask(self, input_ids, attention_mask):\n \n @property\n def _is_quantized_training_enabled(self):\n- logger.warning(\n+ warnings.warn(\n \"`_is_quantized_tra... | 2024-02-15T14:33:26 |
golang/go | 6ad5f4e334a7b2cecf319d7f4aecfaa8d790395e | c2d1df6391a7b4bcdc6112c512c2fd9c365153c5 | go/build: move build constraint docs to 'go help buildconstraint'
CL 228017 added a new help page 'go help buildconstraint' which
summarized the information on build constraints in the go/build
documentation. The summary was almost as long as the go/build
documentation, since there's very little that can be left out.
... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1480,56 +1480,91 @@\n //\n // Build constraints\n //\n-// Build constraints describe the conditions under which each source file\n-// should be included in the corresponding package. Build constraints\n-// for a given source file may be added by build constra... | 2020-05-08T15:57:44 |
rust-lang/rust | 123217b3b8233ba0cc852f81fe6ca55c47bed8cc | 2773456f5f3560bb0590d32452ca58f21b0181d0 | Fix what looks like an inverted message
I believe this is trying to say there is something that is in the file,
but shouldn't be. | [
{
"path": "src/tools/tidy/src/deps.rs",
"patch": "@@ -666,7 +666,7 @@ pub static CRATES: &[&str] = &[\n for extra in expected.difference(&proc_macro_deps) {\n tidy_error!(\n bad,\n- \"`{extra}` is not registered in `src/bootstrap/src/utils/proc_macro_deps.r... | 2025-02-17T18:58:57 |
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 |
huggingface/transformers | 8a0ed0a9a2ee8712b2e2c3b20da2887ef7c55fe6 | 5b6fa2306add0cb06dd1a0ecd708633e8c7e5e58 | Fix copies between DETR and DETA (#29037) | [
{
"path": "src/transformers/models/deta/modeling_deta.py",
"patch": "@@ -627,7 +627,8 @@ def __init__(self, config: DetaConfig, num_heads: int, n_points: int):\n \n def _reset_parameters(self):\n nn.init.constant_(self.sampling_offsets.weight.data, 0.0)\n- thetas = torch.arange(self.n_hea... | 2024-02-15T14:02:58 |
rust-lang/rust | 2773456f5f3560bb0590d32452ca58f21b0181d0 | 32b1bffa11640f3ad88c4761e0ec9e5546940159 | Move error_index_generator to the rustbook workspace
I had forgotten that error_index_generator is using mdbook. This moves
it to be part of the rustbook workspace so that it can share the
dependency with rustbook. | [
{
"path": "Cargo.lock",
"patch": "@@ -61,19 +61,6 @@ version = \"0.2.21\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\"\n \n-[[package]]\n-name = \"ammonia\"\n-version = \"4.0.0\"\n-source = \"registry+h... | 2025-02-17T18:57:51 |
golang/go | c2d1df6391a7b4bcdc6112c512c2fd9c365153c5 | 6851a55f28ae88f4c9809b241d737fe65a977dd3 | cmd/go: group 'go get' update messages together near the end of output
In module mode, 'go get' prints a message for each version query it
resolves. This change groups those messages together near the end of
the output so they aren't mixed with other module "finding" and
"downloading" messages. They'll still be printe... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -6,8 +6,10 @@\n package modget\n \n import (\n+\t\"bytes\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"io\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"sort\"\n@@ -702,6 +704,12 @@ func runGet(cmd *base.Command, args []string) {\n \tmodload.AllowWriteGoMod()\n \tm... | 2020-05-06T16:59:18 |
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 |
huggingface/transformers | 5b6fa2306add0cb06dd1a0ecd708633e8c7e5e58 | 83e96dc0ab40803b7d70e83b921cc739b1176a66 | DeformableDetrModel support fp16 (#29013)
* Update ms_deform_attn_cuda.cu
* Update ms_deform_attn_cuda.cuh
* Update modeling_deformable_detr.py
* Update src/transformers/models/deformable_detr/modeling_deformable_detr.py
Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com>
* Updat... | [
{
"path": "src/transformers/kernels/deformable_detr/cuda/ms_deform_attn_cuda.cu",
"patch": "@@ -64,7 +64,7 @@ at::Tensor ms_deform_attn_cuda_forward(\n for (int n = 0; n < batch/im2col_step_; ++n)\n {\n auto columns = output_n.select(0, n);\n- AT_DISPATCH_FLOATING_TYPES(value.type(), ... | 2024-02-15T12:31:09 |
vuejs/vue | d3add06e6e18a78a3745240632fecd076eb49d19 | 1d5a411c1e3aa062aa5080432cf3f852f1583ed2 | fix(types): fix this.$slots type for defineComponent | [
{
"path": "types/test/v3/define-component-test.tsx",
"patch": "@@ -1138,3 +1138,10 @@ defineComponent({\n }\n }\n })\n+\n+// https://github.com/vuejs/vue/issues/12628#issuecomment-1177258223\n+defineComponent({\n+ render(h) {\n+ return h('div', {}, [...this.$slots.default!])\n+ }\n+})",
"addi... | 2022-07-08T07:17:22 |
rust-lang/rust | 9821bb0d6dd675df25d81b34c448dbc88f9a47cf | 7f8781419ca23d276ad9acbb309149cd7361a54e | move dev docs to manual
fix formatting | [
{
"path": "src/tools/rust-analyzer/CONTRIBUTING.md",
"patch": "@@ -4,7 +4,7 @@ Thank you for your interest in contributing to rust-analyzer! There are many way\n and we appreciate all of them.\n \n To get a quick overview of the crates and structure of the project take a look at the\n-[./docs/dev](./docs/de... | 2025-02-15T00:29:36 |
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 |
golang/go | e8f5a33191b6b2690fdfda770272a650f4df631d | 65f514edfb0ca5208e961318306eeddfdf79fda7 | cmd/compile: fix incorrect rewriting to if condition
Some ARM64 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 in c... | [
{
"path": "src/cmd/compile/fmtmap_test.go",
"patch": "@@ -151,9 +151,11 @@ var knownFormats = map[string]string{\n \t\"int %x\": \"\",\n \t\"int16 %d\": \"\",\n \t\"int16 %x\": \"\",\n+\t\"... | 2020-05-06T09:54:40 |
vuejs/vue | 1d5a411c1e3aa062aa5080432cf3f852f1583ed2 | dc8a68e8c6c4e8ed4fdde094004fca272d71ef2e | fix(types): fix type inference when using components option | [
{
"path": "types/options.d.ts",
"patch": "@@ -20,7 +20,7 @@ export type Component<\n | typeof Vue\n | FunctionalComponentOptions<Props>\n | ComponentOptions<never, Data, Methods, Computed, Props, SetupBindings>\n- | DefineComponent<any, any, any, any, any>\n+ | DefineComponent<any, any, any, any, an... | 2022-07-08T07:15:22 |
huggingface/transformers | 83e96dc0ab40803b7d70e83b921cc739b1176a66 | f3788b09e183fd54d19a2afda845fa963012a1f8 | Add cuda_custom_kernel in DETA (#28989)
* enable graident checkpointing in DetaObjectDetection
* fix missing part in original DETA
* make style
* make fix-copies
* Revert "make fix-copies"
This reverts commit 4041c86c29248f1673e8173b677c20b5a4511358.
* remove fix-copies of DetaDecoder
* enable swi... | [
{
"path": "src/transformers/kernels/deta/cpu/ms_deform_attn_cpu.cpp",
"patch": "@@ -0,0 +1,40 @@\n+/*!\n+**************************************************************************************************\n+* Deformable DETR\n+* Copyright (c) 2020 SenseTime. All Rights Reserved.\n+* Licensed under the Apache... | 2024-02-15T12:09:39 |
golang/go | 65f514edfb0ca5208e961318306eeddfdf79fda7 | 1519bc4457af7179557a4f04bb35a4e07bedd118 | math: fix dead link to springerlink (now link.springer)
Change-Id: Ie5fd026af45d2e7bc371a38d15dbb52a1b4958cd
Reviewed-on: https://go-review.googlesource.com/c/go/+/235717
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> | [
{
"path": "src/math/exp_amd64.s",
"patch": "@@ -8,7 +8,7 @@\n // methods of elementary functions suitable for SIMD computation\", Proc.\n // of International Supercomputing Conference 2010 (ISC'10), pp. 25 -- 32\n // (May 2010). The paper is available at\n-// https://www.springerlink.com/content/340228x1657... | 2020-05-29T14:09:50 |
vuejs/vue | dc8a68e8c6c4e8ed4fdde094004fca272d71ef2e | 8904ca77c2d675707728e6a50decd3ef3370a428 | fix: pass element creation helper to static render fns for functional components
fix #12625 | [
{
"path": "src/core/instance/render-helpers/render-static.ts",
"patch": "@@ -18,7 +18,7 @@ export function renderStatic(\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n- null,\n+ this._c,\n this // for render f... | 2022-07-08T07:03:09 |
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 |
huggingface/transformers | f3788b09e183fd54d19a2afda845fa963012a1f8 | 609a1767e8ba367350abf3c553d40b68607987e5 | Fix static generation when compiling! (#28937)
* wow I was scared!
* fix everything
* nits
* make it BC?
* add todo
* nits
* is_tracing should still be used to pass tracing tests
* nits
* some nits to make sure genration works with static cache uncompiled
* fix sdpa
* fix FA2 for both st... | [
{
"path": "src/transformers/cache_utils.py",
"patch": "@@ -344,17 +344,15 @@ class StaticCache(Cache):\n The default `dtype` to use when initializing the layer.\n \"\"\"\n \n- def __init__(\n- self, config: PretrainedConfig, max_batch_size: int, max_cache_len: int, device, dtype=to... | 2024-02-15T05:27:40 |
nodejs/node | c981483686be11980908ebebe77723ae95d05b86 | da057dbf8f9fe643ee892001ac8f8343b2ab049b | http2: cleanup of h2 compat layer, add tests
Remove unnecessary variable assignments, remove unreachable code
pathways, remove path getter and setter, and other very minor
cleanup. Only remove reference to stream on nextTick so that
users and libraries can access it in the finish event.
Fixes: https://github.com/node... | [
{
"path": "lib/internal/http2/compat.js",
"patch": "@@ -17,13 +17,30 @@ const kRawHeaders = Symbol('rawHeaders');\n const kTrailers = Symbol('trailers');\n const kRawTrailers = Symbol('rawTrailers');\n \n+const {\n+ NGHTTP2_NO_ERROR,\n+\n+ HTTP2_HEADER_AUTHORITY,\n+ HTTP2_HEADER_METHOD,\n+ HTTP2_HEADER_... | 2017-09-12T11:39:53 |
vuejs/vue | 8904ca77c2d675707728e6a50decd3ef3370a428 | 012e10c9ca13fcbc9bf67bf2835883edcd4faace | fix(watch): fix watchers triggered in mounted hook
fix #12624 | [
{
"path": "src/v3/apiWatch.ts",
"patch": "@@ -320,8 +320,8 @@ function doWatch(\n } else {\n // pre\n watcher.update = () => {\n- if (instance && instance === currentInstance) {\n- // pre-watcher triggered inside setup()\n+ if (instance && instance === currentInstance && !instance... | 2022-07-08T06:47:03 |
ggml-org/llama.cpp | 8da3c0e200a586f768ada6f38745acb01380174c | c22473b580807929fd9e3a3344a48e8cfbe6c88f | batch : fix consistency checks for the input positions (#16890) | [
{
"path": "src/llama-batch.cpp",
"patch": "@@ -261,15 +261,29 @@ bool llama_batch_allocr::init(\n \n const llama_pos p0 = memory ? memory->seq_pos_max(s) : -1;\n \n- if (p0 >= 0 && p0 >= seq_pos_min(s)) {\n- LLAMA_LOG_ERROR(\n- \"%s: the tokens of... | 2025-10-31T11:50:33 |
huggingface/transformers | 7a0fccc6ebb7a2f16849245c8b70361bbcef3461 | 5f06053dd821c91f7bd697309109abaa3396b605 | FIX [`Trainer` / tags]: Fix trainer + tags when users do not pass `"tags"` to `trainer.push_to_hub()` (#29009)
* fix trainer tags
* add test | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -3842,7 +3842,10 @@ def push_to_hub(self, commit_message: Optional[str] = \"End of training\", blockin\n # Add additional tags in the case the model has already some tags and users pass\n # \"tags\" argument to `push_to_hub` so that train... | 2024-02-14T22:56:35 |
nodejs/node | da057dbf8f9fe643ee892001ac8f8343b2ab049b | 6ccb9fe8097b4199e0bb56e06ff567bd3fa73ca5 | doc: fix some internal links
PR-URL: https://github.com/nodejs/node/pull/15293
Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Colin Ih... | [
{
"path": "doc/api/cluster.md",
"patch": "@@ -826,14 +826,14 @@ socket.on('data', (id) => {\n });\n ```\n \n-[`ChildProcess.send()`]: child_process.html#child_process_child_send_message_sendhandle_options_callback\n+[`ChildProcess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle... | 2017-09-09T11:09:28 |
golang/go | 1519bc4457af7179557a4f04bb35a4e07bedd118 | 8f4151ea67e1d498e0880f28d3fd803dc2c5448f | net/http: clarify that AddCookie only sanitizes the Cookie being added
AddCookie properly encodes a cookie and appends it to the Cookie header
field but does not modify or sanitize what the Cookie header field
contains already. If a user manualy sets the Cookie header field to
something not conforming to RFC 6265 then... | [
{
"path": "src/net/http/request.go",
"patch": "@@ -425,6 +425,8 @@ func (r *Request) Cookie(name string) (*Cookie, error) {\n // AddCookie does not attach more than one Cookie header field. That\n // means all cookies, if any, are written into the same line,\n // separated by semicolon.\n+// AddCookie only ... | 2020-05-26T14:55:28 |
vuejs/vue | 012e10c9ca13fcbc9bf67bf2835883edcd4faace | 559600f13d312915c0a1b54ed4edd41327dbedd6 | fix(build): fix mjs dual package hazard
close #12626 | [
{
"path": "dist/vue.runtime.mjs",
"patch": "@@ -0,0 +1,75 @@\n+import Vue from './vue.runtime.common.js'\r\n+export default Vue\r\n+\r\n+// this should be kept in sync with src/v3/index.ts\r\n+export const {\r\n+ version,\r\n+\r\n+ // refs\r\n+ ref,\r\n+ shallowRef,\r\n+ isRef,\r\n+ toRef,\r\n+ toRef... | 2022-07-08T03:42:36 |
ggml-org/llama.cpp | 0f715b4e759acceccb9f437cfd2a988fff85514a | d2d931f173b8a736b08999436e9259aafddec718 | server : fix typos in server.cpp comments [no ci] (#16883) | [
{
"path": "tools/server/server.cpp",
"patch": "@@ -3608,7 +3608,7 @@ struct server_context {\n slot.task->params.sampling.preserved_tokens.find(token) != slot.task->params.sampling.preserved_tokens.end();\n };\n \n- // frist, add sampled tokens from any ongoing sequences\n+ ... | 2025-10-31T08:51:26 |
huggingface/transformers | 5f06053dd821c91f7bd697309109abaa3396b605 | 0199a484ebaeac4492693b3f49626b7c220488b4 | [TPU] Support PyTorch/XLA FSDP via SPMD (#28949)
* Initial commit
* Add guards for the global mesh
* Address more comments
* Move the dataloader into integrations/tpu.py
* Fix linters
* Make karg more explicitly
* Remove the move device logic
* Fix the CI
* Fix linters
* Re-enable checkpoint... | [
{
"path": "src/transformers/integrations/tpu.py",
"patch": "@@ -0,0 +1,36 @@\n+# Copyright 2024 The HuggingFace Team. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the License.\n+# You may obtain a copy ... | 2024-02-14T21:44:49 |
nodejs/node | 6ccb9fe8097b4199e0bb56e06ff567bd3fa73ca5 | 25105008a18b2783928837a1e13a6abffb64da27 | errors: fix ERR_MODULE_RESOLUTION_LEGACY message
PR-URL: https://github.com/nodejs/node/pull/15290
Refs: https://github.com/nodejs/node/pull/14369
Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -241,7 +241,7 @@ E('ERR_METHOD_NOT_IMPLEMENTED', 'The %s method is not implemented');\n E('ERR_MISSING_ARGS', missingArgs);\n E('ERR_MISSING_MODULE', 'Cannot find module %s');\n E('ERR_MODULE_RESOLUTION_LEGACY', '%s not found by import in %s.' +\n- 'Legacy b... | 2017-09-09T09:41:07 |
vuejs/vue | 26ff4bc0ed75d8bf7921523a2e546df24ec81d8f | b70a2585fcd102def2bb5a3b2b589edf5311122d | fix(types): global component registration type compat w/ defineComponent
fix #12622 | [
{
"path": "types/test/v3/define-component-test.tsx",
"patch": "@@ -1,3 +1,4 @@\n+import Vue, { VueConstructor } from '../../index'\n import {\n Component,\n defineComponent,\n@@ -8,12 +9,12 @@ import {\n } from '../../index'\n import { describe, test, expectType, expectError, IsUnion } from '../utils'\n... | 2022-07-08T02:39:23 |
ggml-org/llama.cpp | 2976b0374d36609b0429dd6ce48807e2ad39a7c2 | d2a2673dd1c86a01ab010e18b13b8bb959968c48 | vulkan: Fix crash when FP16 mul_mat accumulation is not supported (#16796)
* Experimenting crash fix
* added assert for aborting and fixed comment
* changed to check if a pipeline is empty or not
* Moved function in class definition
* replaced with is_empty
* Modified is_empty to check only unaligned pipelines | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -145,8 +145,13 @@ static void ggml_vk_destroy_pipeline(vk::Device& device, vk_pipeline& pipeline);\n struct vk_matmul_pipeline_struct {\n vk_pipeline l, m, s;\n vk_pipeline a_l, a_m, a_s;\n+ // Returns true when all unaligned pipeline... | 2025-10-31T07:18:59 |
golang/go | 8f4151ea67e1d498e0880f28d3fd803dc2c5448f | 107ebb178176f00c988a40943446af6f672b1e63 | encoding/xml: only initialize nil struct fields when decoding
fieldInfo.value used to initialize nil anonymous struct fields if they
were encountered. This behavior is wanted when decoding, but not when
encoding. When encoding, the value should never be modified, and these
nil fields should be skipped entirely.
To fi... | [
{
"path": "src/encoding/xml/marshal.go",
"patch": "@@ -482,8 +482,11 @@ func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo, startTemplat\n \t\txmlname := tinfo.xmlname\n \t\tif xmlname.name != \"\" {\n \t\t\tstart.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name\n-\t\t} else if v, ... | 2019-09-24T17:14:10 |
huggingface/transformers | 0199a484ebaeac4492693b3f49626b7c220488b4 | 725f4ad1ccad4e1aeb309688706b56713070334b | Backbone kwargs in config (#28784)
* Enable instantiating model with pretrained backbone weights
* Clarify pretrained import
* Use load_backbone instead
* Add backbone_kwargs to config
* Pass kwargs to constructors
* Fix up
* Input verification
* Add tests
* Tidy up
* Update tests/utils/test... | [
{
"path": "src/transformers/models/conditional_detr/configuration_conditional_detr.py",
"patch": "@@ -98,6 +98,9 @@ class ConditionalDetrConfig(PretrainedConfig):\n is `False`, this loads the backbone's config and uses that to initialize the backbone with random weights.\n use_pretrained... | 2024-02-14T20:46:44 |
nodejs/node | 6ff521b59b966adc202431c6a9a9091419bb5030 | 3f7813b0e9d9ea5c98d1e8a130d2b63119320924 | errors: eliminate circular dependency on assert
PR-URL: https://github.com/nodejs/node/pull/15002
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -12,7 +12,6 @@ const kCode = Symbol('code');\n const messages = new Map();\n \n // Lazily loaded\n-var assert = null;\n var util = null;\n \n function makeNodeError(Base) {\n@@ -55,11 +54,22 @@ class AssertionError extends Error {\n }\n }\n \n+// This is de... | 2017-08-24T05:16:10 |
vuejs/vue | b70a2585fcd102def2bb5a3b2b589edf5311122d | ca7daefaa15a192046d22d060220cd595a6a275f | fix(compiler-sfc): use safer deindent default for compatibility with previous behavior | [
{
"path": "packages/compiler-sfc/src/parseComponent.ts",
"patch": "@@ -10,7 +10,6 @@ export const DEFAULT_FILENAME = 'anonymous.vue'\n const splitRE = /\\r?\\n/g\n const replaceRE = /./g\n const isSpecialTag = makeMap('script,style,template', true)\n-const isNeedIndentLang = makeMap('pug,jade')\n \n export ... | 2022-07-08T01:45:11 |
ggml-org/llama.cpp | d2a2673dd1c86a01ab010e18b13b8bb959968c48 | 13002a08960e51a76c4d696165b5d7638d2f2b99 | vulkan: fix shmem overrun in mmq id shader (#16873)
* vulkan: fix shmem overrun in mmq id shader
* metal : fix mul_mm_id
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> | [
{
"path": "ggml/src/ggml-metal/ggml-metal-device.cpp",
"patch": "@@ -677,7 +677,7 @@ ggml_metal_pipeline_t ggml_metal_library_get_pipeline_mul_mm_id_map0(ggml_metal_\n char name[256];\n \n snprintf(base, 256, \"kernel_mul_mm_id_map0_ne20_%d\", ne20);\n- snprintf(name, 256, \"%s\", base);\n+ sn... | 2025-10-31T07:14:49 |
golang/go | 107ebb178176f00c988a40943446af6f672b1e63 | 86ed0955bf58ecb738b87892b4377e556e2cc88a | Revert "encoding/json: reuse values when decoding map elements"
This reverts golang.org/cl/179337.
Reason for revert: broke a few too many reasonably valid Go programs.
The previous behavior was perhaps less consistent, but the docs were
never very clear about when the decoder merges with existing values,
versus repl... | [
{
"path": "src/encoding/json/decode.go",
"patch": "@@ -677,6 +677,7 @@ func (d *decodeState) object(v reflect.Value) error {\n \t\treturn nil\n \t}\n \n+\tvar mapElem reflect.Value\n \torigErrorContext := d.errorContext\n \n \tfor {\n@@ -700,66 +701,17 @@ func (d *decodeState) object(v reflect.Value) error ... | 2020-05-20T17:03:31 |
huggingface/transformers | 725f4ad1ccad4e1aeb309688706b56713070334b | 3f4e79d29ce32d9f8f75b082836b01ee180d0966 | Add tie_weights() to LM heads and set bias in set_output_embeddings() (#28948)
* Add tie_weights() to LM heads and set bias in set_output_embeddings()
The bias were not tied correctly in some LM heads, and this change should fix that.
* Moving test_save_and_load_low_cpu_mem_usage to ModelTesterMixin
* Adding ... | [
{
"path": "src/transformers/models/bert/modeling_bert.py",
"patch": "@@ -692,6 +692,9 @@ def __init__(self, config):\n # Need a link between the two variables so that the bias is correctly resized with `resize_token_embeddings`\n self.decoder.bias = self.bias\n \n+ def _tie_weights(self):... | 2024-02-14T20:39:01 |
vuejs/vue | ca7daefaa15a192046d22d060220cd595a6a275f | 15e6f1dee47ea38af0ad541014e91df0ad9b062f | fix(ssr/reactivity): fix array setting error at created in ssr [#12632] (#12633)
fix #12632 | [
{
"path": "packages/server-renderer/test/ssr-reactivity.spec.ts",
"patch": "@@ -93,6 +93,10 @@ describe('SSR Reactive', () => {\n \n set(state.value, 1, {})\n expect(isReactive(state.value[1])).toBe(true)\n+\n+ const rawArr = []\n+ set(rawArr, 1, {})\n+ expect(isReactive(rawArr[1])).toBe(fa... | 2022-07-08T01:44:41 |
nodejs/node | cb44cd4936171440b435a00097b853f8967cf578 | 210fc72e87e276d8ff1d483e1b3262e413a4de84 | test: fix single test runner regression
When ESM support was added it created a regression in the test runner
that broke the ability to run individual tests. This commit
re-introduces the use of `NormalizePath` which fixes the regression
in the test runner
Refs: https://github.com/nodejs/node/pull/15300
PR-URL: https... | [
{
"path": "tools/test.py",
"patch": "@@ -789,7 +789,7 @@ def Contains(self, path, file):\n if len(path) > len(file):\n return False\n for i in xrange(len(path)):\n- if not path[i].match(file[i]):\n+ if not path[i].match(NormalizePath(file[i])):\n return False\n return Tru... | 2017-09-11T06:22:22 |
ggml-org/llama.cpp | 9984cbb61d12491d604484fb38b678fa15064061 | ce18efeaf1234bd08f25bc08f88ef95cf5d9e51f | opencl: fix boundary handling for mul_mm (#16875) | [
{
"path": "ggml/src/ggml-opencl/kernels/mul_mm_f16_f32_l4_lm.cl",
"patch": "@@ -79,8 +79,8 @@ kernel void kernel_mul_mm_f16_f32_l4_lm(\n \n for (int block = 0; block < ne00; block += BK) {\n for (int l = 0; l < BM; l += loadstride_a) {\n- if (loadc_a + l < ne01) {\n- const ... | 2025-10-30T23:00:20 |
golang/go | 86ed0955bf58ecb738b87892b4377e556e2cc88a | 5a00adf1ea4320bb7f6c2d0b5ae7cf540275c0a4 | os: in Symlink, stat the correct target path for drive-relative targets on Windows
Previously, when the target (“old”) path passed to os.Symlink was a
“root-relative” Windows path,¹ we would erroneously prepend
destination (“new”) path when determining which path to Stat,
resulting in an invalid path which was then ma... | [
{
"path": "src/os/file_windows.go",
"patch": "@@ -330,8 +330,18 @@ func Symlink(oldname, newname string) error {\n \n \t// need the exact location of the oldname when it's relative to determine if it's a directory\n \tdestpath := oldname\n-\tif !isAbs(oldname) {\n-\t\tdestpath = dirname(newname) + `\\` + ol... | 2020-05-26T20:11:22 |
huggingface/transformers | 354775bc5755c4a6c47e008d28f27f8ccdcf8f8f | 0507e69d34f8902422eb4977ec066dd6bef179a0 | Fix flaky test vision encoder-decoder generate (#28923) | [
{
"path": "tests/models/vision_encoder_decoder/test_modeling_vision_encoder_decoder.py",
"patch": "@@ -23,7 +23,6 @@\n \n from transformers import DonutProcessor, NougatProcessor, TrOCRProcessor\n from transformers.testing_utils import (\n- is_flaky,\n require_levenshtein,\n require_nltk,\n r... | 2024-02-14T15:40:57 |
nodejs/node | 6ebdb69472beaabe4d3aac7f66e1f83b196278af | fc1fa4e2c49aa060b97b139ff02b5be8037dba94 | crypto: fix Node_SignFinal
PR #11705 switched Node away from using using OpenSSL's legacy EVP_Sign*
and EVP_Verify* APIs. Instead, it computes a hash normally via
EVP_Digest* and then uses EVP_PKEY_sign and EVP_PKEY_verify to verify
the hash directly. This change corrects two problems:
1. The documentation still reco... | [
{
"path": "benchmark/crypto/rsa-sign-verify-throughput.js",
"patch": "@@ -18,7 +18,7 @@ keylen_list.forEach(function(key) {\n \n var bench = common.createBenchmark(main, {\n writes: [500],\n- algo: ['RSA-SHA1', 'RSA-SHA224', 'RSA-SHA256', 'RSA-SHA384', 'RSA-SHA512'],\n+ algo: ['SHA1', 'SHA224', 'SHA256'... | 2017-09-09T22:41:56 |
rust-lang/rust | 49cf00c7c04e24bb27a09fbcfe9bac9278075608 | 87e5969572ebc0d6b97277d4ad06fa3f5a0b7010 | Clean up dropck code a bit
- Remove `Result` that couldn't be Err on valid compilation.
- Always compute errors on failure. | [
{
"path": "compiler/rustc_borrowck/src/type_check/liveness/trace.rs",
"patch": "@@ -4,6 +4,7 @@ use rustc_index::interval::IntervalSet;\n use rustc_infer::infer::canonical::QueryRegionConstraints;\n use rustc_infer::infer::outlives::for_liveness;\n use rustc_middle::mir::{BasicBlock, Body, ConstraintCategor... | 2025-02-11T15:36:24 |
ggml-org/llama.cpp | b52edd25586fabb70f0c21b274473b307cf14499 | 517b7170e1a4d733583c4b07c5b7a49acc05911c | server : remove n_past (#16818)
* server : remove n_past
* server : replace slot.n_prompt_tokens() with slot.task->n_tokens()
* server : fixes + clean-up
* cont : fix context shift
* server : add server_tokens::pos_next()
Co-authored-by: Xuan-Son Nguyen <son@huggingface.co>
* server : fix pos_next() usage
Co-au... | [
{
"path": "tools/server/README.md",
"patch": "@@ -587,7 +587,7 @@ These words will not be included in the completion, so make sure to add them to\n - `word`: Stopped due to encountering a stopping word from `stop` JSON array provided\n - `stopping_word`: The stopping word encountered which stopped the gen... | 2025-10-30T16:42:57 |
golang/go | 6bf2eea62a3425c57f3d908ec32047a9ae41c025 | 0d20a492823211cd816ded24c98cfcd58b198faa | cmd/compile: always use StackMapDontCare as register map index when reg map is not used
When go115ReduceLiveness is true (so we don't emit actual
register maps), use StackMapDontCare consistently for the
register map index, so RegMapValid is always false.
This fixes a compiler crash when doing -live=2 debug print.
F... | [
{
"path": "src/cmd/compile/internal/gc/plive.go",
"patch": "@@ -1249,7 +1249,7 @@ func (lv *Liveness) compact(b *ssa.Block) {\n \t\tif go115ReduceLiveness {\n \t\t\thasStackMap := lv.hasStackMap(v)\n \t\t\tisUnsafePoint := lv.allUnsafe || lv.unsafePoints.Get(int32(v.ID))\n-\t\t\tidx := LivenessIndex{StackMa... | 2020-05-27T15:37:00 |
huggingface/transformers | 0507e69d34f8902422eb4977ec066dd6bef179a0 | 69ca640dd6d52860d9e1ba5701ee06b0aedb0a1f | Introduce AcceleratorConfig dataclass (#28664)
* Introduce acceleratorconfig dataclass
* Extra second warn
* Move import
* Try moving import under is_accelerate_available
* Quality
* Apply suggestions from code review
Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com>
* Cl... | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -76,6 +76,7 @@\n TrainerState,\n )\n from .trainer_pt_utils import (\n+ AcceleratorConfig,\n DistributedTensorGatherer,\n IterableDatasetShard,\n LabelSmoother,\n@@ -4029,11 +4030,21 @@ def create_accelerator_and_postprocess(self):\n ... | 2024-02-14T15:18:09 |
vuejs/vue | 6d1dbeee7ebd27a87c37393d8cabf2ef8253f3a4 | 360272bde32e93b1a8d611e4b97af1300c38e7a3 | fix: add renderTracked/Triggered merge strategy (#12616) | [
{
"path": "src/shared/constants.ts",
"patch": "@@ -14,5 +14,7 @@ export const LIFECYCLE_HOOKS = [\n 'activated',\n 'deactivated',\n 'errorCaptured',\n- 'serverPrefetch'\n+ 'serverPrefetch',\n+ 'renderTracked',\n+ 'renderTriggered'\n ] as const",
"additions": 3,
"deletions": 1,
"languag... | 2022-07-06T04:59:30 |
rust-lang/rust | 87e5969572ebc0d6b97277d4ad06fa3f5a0b7010 | cde8c6f52bf83f3976302a7f7508c962ed6d15ff | Update tests for dropck normalization errors
Takes crash tests from #135039, #103899, #91985 and #105299 and turns them into ui tests | [
{
"path": "tests/crashes/103899.rs",
"patch": "@@ -1,27 +0,0 @@\n-//@ known-bug: #103899\n-\n-trait BaseWithAssoc {\n- type Assoc;\n-}\n-\n-trait WrapperWithAssoc {\n- type BaseAssoc: BaseWithAssoc;\n-}\n-\n-struct Wrapper<B> {\n- inner: B,\n-}\n-\n-struct ProjectToBase<T: BaseWithAssoc> {\n- da... | 2025-01-31T18:13:02 |
ggml-org/llama.cpp | 835e918d8428f5119927d7150bf5a26176dedda0 | d261223d24e97f2df50220e4a5b7f0adb69bba81 | common: fix typo in cli help text (#16864) | [
{
"path": "common/arg.cpp",
"patch": "@@ -3203,7 +3203,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n ).set_examples({LLAMA_EXAMPLE_IMATRIX}));\n add_opt(common_arg(\n {\"--parse-special\"},\n- string_format(\"prase special tokens (chat, tool, ... | 2025-10-30T15:47:31 |
nodejs/node | 45357d055694000b78a27e1959f304f5838005be | c20901a7f574d7ecea70dfc852a3307d7178ddba | http2: fix refs to status 205, add tests
Fix references within http2 core to HTTP_STATUS_CONTENT_RESET to point
to the correct HTTP_STATUS_RESET_CONTENT. Add tests for status 204,
205 & 304 in respond, respondWithFD & respondWithFile. Add general
error tests for respondWithFD & respondWithFile.
PR-URL: https://github... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -121,7 +121,7 @@ const {\n HTTP2_METHOD_CONNECT,\n \n HTTP_STATUS_CONTINUE,\n- HTTP_STATUS_CONTENT_RESET,\n+ HTTP_STATUS_RESET_CONTENT,\n HTTP_STATUS_OK,\n HTTP_STATUS_NO_CONTENT,\n HTTP_STATUS_NOT_MODIFIED,\n@@ -1879,7 +1879,7 @@ class Server... | 2017-09-07T11:29:26 |
huggingface/transformers | 7252e8d9374b3088215c94b9f82904e22010fac0 | 1ecf5f7c982d761b4daaa96719d162c324187c64 | [`Doc`] Fix docbuilder - make `BackboneMixin` and `BackboneConfigMixin` importable from `utils`. (#29002)
* Trigger doc build
* Test removing references
* Importable from utils
* Trigger another run on a new commit for testing | [
{
"path": "docs/source/en/main_classes/backbones.md",
"patch": "@@ -18,8 +18,8 @@ rendered properly in your Markdown viewer.\n \n A backbone is a model used for feature extraction for higher level computer vision tasks such as object detection and image classification. Transformers provides an [`AutoBackbon... | 2024-02-14T10:29:22 |
vuejs/vue | 360272bde32e93b1a8d611e4b97af1300c38e7a3 | 94ccca207c9c5fc0fc8985e0c103d8a1c9cff412 | fix(ssr/reactivity): fix composition api behavior in SSR
fix #12615 | [
{
"path": "packages/server-renderer/test/ssr-reactivity.spec.ts",
"patch": "@@ -0,0 +1,192 @@\n+// @vitest-environment node\n+\n+import Vue from 'vue'\n+import {\n+ reactive,\n+ ref,\n+ isReactive,\n+ shallowRef,\n+ isRef,\n+ set,\n+ nextTick,\n+ getCurrentInstance\n+} from 'v3'\n+import { createRen... | 2022-07-06T04:49:30 |
golang/go | 0d20a492823211cd816ded24c98cfcd58b198faa | e3491c46034cecbaf0f33928b09e1e3c0c6a0d20 | run.bat: use ..\bin\go instead of "go" to install std and cmd
The paths for the other "go" commands in this file were fixed in CL 223741,
but this one was missed (and run.bat is not caught by the builders).
Change-Id: Iba1efddc7d2fbe6af39c39d643508decc954bbc5
Reviewed-on: https://go-review.googlesource.com/c/go/+/234... | [
{
"path": "src/run.bat",
"patch": "@@ -30,7 +30,7 @@ rem TODO avoid rebuild if possible\n \n if x%1==x--no-rebuild goto norebuild\n echo ##### Building packages and commands.\n-go install -a -v std cmd\n+..\\bin\\go install -a -v std cmd\n if errorlevel 1 goto fail\n echo.\n :norebuild",
"additions": 1,... | 2020-05-21T04:09:34 |
ggml-org/llama.cpp | d261223d24e97f2df50220e4a5b7f0adb69bba81 | dcca0d3ab840ebe9b2ccd4719033d408eeb758d7 | model: add support for qwen3vl series (#16780)
* support qwen3vl series.
Co-authored-by: Thireus ☠ <Thireus@users.noreply.github.com>
Co-authored-by: yairpatch <yairpatch@users.noreply.github.com>
Co-authored-by: LETS-BEE <LETS-BEE@users.noreply.github.com>
* bugfix: fix the arch check for qwen3vl-moe.
* use build_... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -3852,7 +3852,43 @@ def set_gguf_parameters(self):\n def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iterable[tuple[str, Tensor]]:\n # process the experts separately\n name = name.replace(\"language_model.\", \"\... | 2025-10-30T15:19:14 |
vuejs/vue | 94ccca207c9c5fc0fc8985e0c103d8a1c9cff412 | e244687135dcd0fd55ad0423d5d5fbf2ba389c4e | fix(types): allow slot attribute
close #12617 | [
{
"path": "types/jsx.d.ts",
"patch": "@@ -1303,6 +1303,12 @@ type EventHandlers<E> = {\n type ReservedProps = {\n key?: string | number | symbol\n ref?: VNodeData['ref']\n+ /**\n+ * @deprecated Old named slot syntax has been deprecated, use the new syntax\n+ * instead: `<template v-slot:name>`\n+ ... | 2022-07-06T03:17:33 |
nodejs/node | 78fc72620369d61d18d4a4c144cc4a23d625b28f | 94be2b17938d5ecdf1d40317d0bdee46906bfe4b | http2: store headersSent after stream destroyed
Store headersSent directly on response state after finish event
is triggered, so that users can always access it.
PR-URL: https://github.com/nodejs/node/pull/15232
Fixes: https://github.com/nodejs/node/issues/15226
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed... | [
{
"path": "lib/internal/http2/compat.js",
"patch": "@@ -320,7 +320,7 @@ class Http2ServerResponse extends Stream {\n \n get headersSent() {\n const stream = this[kStream];\n- return stream.headersSent;\n+ return stream !== undefined ? stream.headersSent : this[kState].headersSent;\n }\n \n g... | 2017-09-06T21:22:42 |
golang/go | e3491c46034cecbaf0f33928b09e1e3c0c6a0d20 | 748533e3a1a8e64b3910b9cac1e767d95ee38f84 | net/http: handle body rewind in HTTP/2 connection loss better
In certain cases the HTTP/2 stack needs to resend a request.
It obtains a fresh body to send by calling req.GetBody.
This call was missing from the path where the HTTP/2
round tripper returns ErrSkipAltProtocol, meaning fall back
to HTTP/1.1. The result was... | [
{
"path": "src/net/http/transfer.go",
"patch": "@@ -335,7 +335,7 @@ func (t *transferWriter) writeBody(w io.Writer) error {\n \tvar ncopy int64\n \n \t// Write body. We \"unwrap\" the body first if it was wrapped in a\n-\t// nopCloser. This is to ensure that we can take advantage of\n+\t// nopCloser or read... | 2020-05-22T00:46:05 |
huggingface/transformers | 1ecf5f7c982d761b4daaa96719d162c324187c64 | 63ffd56d02a5e7d11e89dbca13b70a10ce8ff8c1 | AQLM quantizer support (#28928)
* aqlm init
* calibration and dtypes
* docs
* Readme update
* is_aqlm_available
* Simpler link in docs
* Test TODO real reference
* init _import_structure fix
* AqlmConfig autodoc
* integration aqlm
* integrations in tests
* docstring fix
* legacy typ... | [
{
"path": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -55,6 +55,9 @@ RUN python3 -m pip install --no-cache-dir auto-gptq --extra-index-url https://hu\n # Add einops for additional model testing\n RUN python3 -m pip install --no-cache-dir einops\n \n+# Add aqlm for quantization testing\n+RU... | 2024-02-14T08:25:41 |
rust-lang/rust | cde8c6f52bf83f3976302a7f7508c962ed6d15ff | 136f777ae1dbdfee2664503468a9a3231d50925a | Handle normalization failures in drop elaboration
Drop elaboration looks at fields of a type, which may error when we try
to normalize them. Borrowck will have detected this if HIR typeck
didn't, but we don't delete the MIR body for errors in borrowck so
still have to handle this happening in drop elaboration by check... | [
{
"path": "compiler/rustc_mir_transform/src/elaborate_drop.rs",
"patch": "@@ -266,8 +266,21 @@ where\n let tcx = self.tcx();\n \n assert_eq!(self.elaborator.typing_env().typing_mode, ty::TypingMode::PostAnalysis);\n- let field_ty =\n- tcx.nor... | 2025-01-31T18:08:09 |
vuejs/vue | 1294385300742acbea5f05c166685bd4a1fab35a | fb93c1be77f12ea1375c5e8b47d168e4d5ceb7be | fix(compiler-sfc): preserve old deindent behavior for pug
fix #12611 | [
{
"path": "packages/compiler-sfc/src/parseComponent.ts",
"patch": "@@ -10,6 +10,7 @@ export const DEFAULT_FILENAME = 'anonymous.vue'\n const splitRE = /\\r?\\n/g\n const replaceRE = /./g\n const isSpecialTag = makeMap('script,style,template', true)\n+const isNeedIndentLang = makeMap('pug,jade')\n \n export ... | 2022-07-05T02:32:56 |
huggingface/transformers | 63ffd56d02a5e7d11e89dbca13b70a10ce8ff8c1 | de6029a0593d6ab73b4b0c6c71f5aa6e2520293f | Add SiglipForImageClassification and CLIPForImageClassification (#28952)
* First draft
* Add CLIPForImageClassification
* Remove scripts
* Fix doctests | [
{
"path": "docs/source/en/model_doc/clip.md",
"patch": "@@ -172,6 +172,11 @@ The resource should ideally demonstrate something new instead of duplicating an\n [[autodoc]] CLIPVisionModel\n - forward\n \n+## CLIPForImageClassification\n+\n+[[autodoc]] CLIPForImageClassification\n+ - forward\n+\n </pt>... | 2024-02-14T07:41:31 |
ggml-org/llama.cpp | bacddc049a00786df44e682262f6e298742bfbc3 | 229bf686287d18f82c44e89888cc662145ecfdb4 | model: Add support for CogVLM model (#15002)
* Added GGUF mappings for CogVLM model
* Add tensor mapping for CogVLM visual encoder
* Add CogVLM to conversion script, no vision part yet
* Added CogVLM vision model to conversion script
* Add graph for CogVLM CLIP model
* Add graph for CogVLM
* Fixes for CogVLM. No... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -1528,7 +1528,7 @@ def set_gguf_parameters(self):\n self.gguf_writer.add_vision_embedding_length(self.find_vparam([\"hidden_size\"]))\n self.gguf_writer.add_vision_feed_forward_length(self.find_vparam([\"intermediate_size\"]))\n ... | 2025-10-30T11:18:50 |
rust-lang/rust | 136f777ae1dbdfee2664503468a9a3231d50925a | 273465e1f2932a30a5b56ac95859cdc86f3f33fa | Report dropck normalization errors in borrowck
HIR type checking no longer runs dropck, so we may get new errors when
we run it in borrowck. If this happens then rerun the query in a local
infcx and report errors for it. | [
{
"path": "compiler/rustc_borrowck/src/type_check/liveness/trace.rs",
"patch": "@@ -3,15 +3,18 @@ use rustc_index::bit_set::DenseBitSet;\n use rustc_index::interval::IntervalSet;\n use rustc_infer::infer::canonical::QueryRegionConstraints;\n use rustc_infer::infer::outlives::for_liveness;\n-use rustc_middle... | 2025-01-31T18:06:38 |
golang/go | 748533e3a1a8e64b3910b9cac1e767d95ee38f84 | 902d8de79ed9bb6013cdb1952db1538bc1d10677 | runtime: check gdb exit status and log output
All GDB tests currently ignore non-zero exit statuses. When tests
flakes, we don't even know if GDB exited successfully or not.
Add checks for non-zero exits, which are not expected.
Furthermore, always log the output from GDB. The tests are currently
inconsistent about ... | [
{
"path": "src/runtime/runtime-gdb_test.go",
"patch": "@@ -241,8 +241,11 @@ func testGdbPython(t *testing.T, cgo bool) {\n \t\t\"-ex\", \"echo END\\n\",\n \t\tfilepath.Join(dir, \"a.exe\"),\n \t)\n-\tgot, _ := exec.Command(\"gdb\", args...).CombinedOutput()\n-\tt.Logf(\"gdb output: %s\\n\", got)\n+\tgot, er... | 2020-05-26T19:55:54 |
nodejs/node | 94be2b17938d5ecdf1d40317d0bdee46906bfe4b | 668ad449226940db92a5092822b77f3620631748 | test: kill subprocess only after last ACK
* Add multiple comments.
* Switch to a persistent fixture for subprocess.
* Assert that `send` queue is drained.
PR-URL: https://github.com/nodejs/node/pull/15186
Fixes: https://github.com/nodejs/node/issues/15176
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-child-process-send-returns-boolean.js",
"patch": "@@ -1,28 +1,58 @@\n 'use strict';\n const common = require('../common');\n+\n+// subprocess.send() will return false if the channel has closed or when the\n+// backlog of unsent messages exceeds a threshold that makes it unwise ... | 2017-09-04T15:18:54 |
vuejs/vue | caceece8fa9b75c4832a91d3af0bc2958166d3f2 | 6f0d2e6985a332d75ce93d29dd7031496196c1ac | fix(compiler-sfc): fix template usage check edge case for v-on statements
fix #12591 | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -39,7 +39,7 @@ import { walk } from 'estree-walker'\n import { RawSourceMap } from 'source-map'\n import { warnOnce } from './warn'\n import { isReservedTag } from 'web/util'\n-import { dirRE } from 'compiler/parser'\n+import { bindRE, dir... | 2022-07-04T03:38:36 |
ggml-org/llama.cpp | 229bf686287d18f82c44e89888cc662145ecfdb4 | d7395115baf395b75a73a17b0b796e746e468da9 | cuda : fix argsort with 64k+ rows (#16849) | [
{
"path": "ggml/src/ggml-cuda/argsort.cu",
"patch": "@@ -87,7 +87,7 @@ template<ggml_sort_order order>\n static __global__ void k_argsort_f32_i32(const float * x, int * dst, const int ncols, int ncols_pad) {\n // bitonic sort\n int col = threadIdx.x;\n- int row = blockIdx.y;\n+ int row = block... | 2025-10-30T07:56:28 |
huggingface/transformers | de6029a0593d6ab73b4b0c6c71f5aa6e2520293f | 164bdef8cc5143a0766cee448e97166682a722b1 | Add `StableLM` (#28810)
* Add `StableLM`
* fix(model): re-create from `huggingface-cli add-new-model-like persimmon`
* fix: re-add changes to address comments
* fix(readme): add links to paper
* fix(tokenization_auto): remove `GPTNeoXTokenizerFastFast` ref
* fix(tests): re-add `@slow` decorator to integ... | [
{
"path": "README.md",
"patch": "@@ -489,6 +489,7 @@ Current number of checkpoints: ** (from Facebook), released together with the paper [Large-Scale Self- ... | 2024-02-14T06:15:18 |
nodejs/node | 668ad449226940db92a5092822b77f3620631748 | 61e9ba127140ece5412f52a0218fb7446e360387 | intl: unexpose Intl.v8BreakIterator
It was never an official Ecma-402 API, it is about to be superseded
by `Intl.Segmenter` and it's prone to crash under some circumstances.
Searches don't turn up any usage in the wild and the recommendation
from the V8 team is to remove it. Now seems like a good a time as
any to do... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -185,9 +185,10 @@ and should no longer be used.\n <a id=\"DEP0017\"></a>\n ### DEP0017: Intl.v8BreakIterator\n \n-Type: Runtime\n+Type: End-of-Life\n \n-The `Intl.v8BreakIterator` is deprecated and will be removed or replaced soon.\n+`Intl.v8BreakIterator` w... | 2017-09-07T11:26:47 |
golang/go | c0e8e405c02388fb8e7d3bea092f5aa8b19b2ad9 | b2ce3931d8d34ffe3fbed0d9eed2676d916e5431 | cmd/go: clean -cache -n should not delete cache
Uses the `cfg.BuildN` flag to avoid deleting inside the `if cleanCache`
block. Introduces a test in src/cmd/go/testdata/script.
Fixes #39250
Change-Id: I857c441b1d7aa7c68cfd646d6833e6eaca5b18d1
Reviewed-on: https://go-review.googlesource.com/c/go/+/235140
Run-TryBot: J... | [
{
"path": "src/cmd/go/internal/clean/clean.go",
"patch": "@@ -137,20 +137,27 @@ func runClean(cmd *base.Command, args []string) {\n \t\t\t\tif cfg.BuildN || cfg.BuildX {\n \t\t\t\t\tb.Showcmd(\"\", \"rm -r %s\", strings.Join(subdirs, \" \"))\n \t\t\t\t}\n-\t\t\t\tfor _, d := range subdirs {\n-\t\t\t\t\t// O... | 2020-05-26T14:45:11 |
vuejs/vue | 86fb6bd15174490509236eb85407125217569692 | e452e9d4368aaba173e8c942e5fd82f999cf65ae | chore(benchmarks:ssr): createRenderer function path error (#12601) | [
{
"path": "benchmarks/ssr/renderToStream.js",
"patch": "@@ -5,7 +5,7 @@\n process.env.NODE_ENV = 'production'\n \n const Vue = require('../../dist/vue.runtime.common.js')\n-const createRenderer = require('../../packages/vue-server-renderer').createRenderer\n+const createRenderer = require('../../packages/se... | 2022-07-04T02:58:42 |
ggml-org/llama.cpp | 3464bdac37027c5e9661621fc75ffcef3c19c6ef | e3af5563bd049141e036b50f843196db33d23e97 | llama: fix ASAN error with M-RoPE (#16848) | [
{
"path": "src/llama-batch.cpp",
"patch": "@@ -669,10 +669,8 @@ llama_ubatch llama_batch_allocr::ubatch_add(const std::vector<int32_t> & idxs, u\n \n auto udata = std::make_shared<llama_ubatch::data_t>();\n \n- const int32_t n_pos_cur = batch.embd ? n_pos_per_embd : 1;\n-\n const int64_t n_embd_a... | 2025-10-29T19:11:39 |
huggingface/transformers | bd4b83e1ba52904e4917ac41dbbd10cd41803d0b | 3de6a6b4936229e3b4467dd7de1c24f2fae64528 | [`DETR`] Update the processing to adapt masks & bboxes to reflect padding (#28363)
* Update the processing so bbox coords are adjusted for padding
* Just pad masks
* Tidy up, add tests
* Better tests
* Fix yolos and mark as slow for pycocotols
* Fix yolos - return_tensors
* Clarify padding and normal... | [
{
"path": "src/transformers/models/bridgetower/image_processing_bridgetower.py",
"patch": "@@ -280,7 +280,7 @@ def center_crop(\n **kwargs,\n )\n \n- # Copied from transformers.models.detr.image_processing_detr.DetrImageProcessor._pad_image\n+ # Copied from transformers.models.vilt... | 2024-02-13T18:27:06 |
vuejs/vue | e452e9d4368aaba173e8c942e5fd82f999cf65ae | bcb62d1a001125bfac91c1dd4f8bd51ac42b5a0f | fix: export proxyRefs
close #12600 | [
{
"path": "src/v3/apiSetup.ts",
"patch": "@@ -12,7 +12,7 @@ import {\n } from '../shared/util'\n import { currentInstance, setCurrentInstance } from './currentInstance'\n import { shallowReactive } from './reactivity/reactive'\n-import { isRef } from './reactivity/ref'\n+import { proxyWithRefUnwrap } from '... | 2022-07-04T02:56:33 |
golang/go | b2ce3931d8d34ffe3fbed0d9eed2676d916e5431 | 4abec2a48070da6ca9b8cf53888ad993e0ee82ef | cmd/go: report error for empty GOPROXY list
If GOPROXY is "", we set it to the default value,
"https://proxy.golang.org,direct". However, if GOPROXY is a non-empty
string that doesn't contain any URLs or keywords, we treat it as
either "off" or "noproxy", which can lead to some strange errors.
This change reports an ... | [
{
"path": "src/cmd/go/internal/modfetch/proxy.go",
"patch": "@@ -171,6 +171,14 @@ func proxyList() ([]proxySpec, error) {\n \t\t\t\tfallBackOnError: fallBackOnError,\n \t\t\t})\n \t\t}\n+\n+\t\tif len(proxyOnce.list) == 0 ||\n+\t\t\tlen(proxyOnce.list) == 1 && proxyOnce.list[0].url == \"noproxy\" {\n+\t\t\t... | 2020-05-21T14:59:29 |
nodejs/node | 61e9ba127140ece5412f52a0218fb7446e360387 | 78286984da50ed7f0ed8914b587da62c552277ce | n-api: implement napi_run_script
Fixes: https://github.com/nodejs/abi-stable-node/issues/51
PR-URL: https://github.com/nodejs/node/pull/15216
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com
Reviewed-By: James M Snell <j... | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -43,6 +43,7 @@ The documentation for N-API is structured as follows:\n * [Object Wrap][]\n * [Asynchronous Operations][]\n * [Promises][]\n+* [Script Execution][]\n \n The N-API is a C API that ensures ABI stability across Node.js versions\n and different compiler ... | 2017-09-06T10:00:43 |
ggml-org/llama.cpp | e3af5563bd049141e036b50f843196db33d23e97 | 10fcc41290e233788f5a4215314156e8e023eb92 | llama: store mrope data in KV cell (#16825)
* llama: store mrope data in KV cell
* correct x,y ordering
* address review comments
* add consistency checks
* Update src/llama-kv-cache.cpp
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
* add TODO
* fix asan error
* kv-cells : improve ext handling
* cont ... | [
{
"path": "src/llama-batch.cpp",
"patch": "@@ -215,6 +215,7 @@ bool llama_batch_allocr::init(\n /*.n_seq_tokens =*/ (uint32_t) 1,\n /*.n_seqs =*/ (uint32_t) batch.n_tokens,\n /*.n_seqs_unq =*/ (uint32_t) this->seq_id_unq.size(),\n+ /*.n_pos =*/ n... | 2025-10-29T17:09:18 |
huggingface/transformers | 3de6a6b4936229e3b4467dd7de1c24f2fae64528 | 3e70a207dfa6408c440042f2f8076dd6bfb43e8b | Update configuration_llama.py: fixed broken link (#28946)
* Update configuration_llama.py: fix broken link
* [Nit] Explicit redirection not required
Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com>
---------
Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.c... | [
{
"path": "src/transformers/models/llama/configuration_llama.py",
"patch": "@@ -78,7 +78,7 @@ class LlamaConfig(PretrainedConfig):\n End of stream token id.\n pretraining_tp (`int`, *optional*, defaults to 1):\n Experimental feature. Tensor parallelism rank used during pretra... | 2024-02-13T13:02:07 |
vuejs/vue | ff5acb12cfa64f975f216a55aafa976b07052665 | 15b9b9b19dd3ae7cce5dcd89739e5cf719523fc5 | fix: fix NaN comparison on state change
fix #12595 | [
{
"path": "src/shared/util.ts",
"patch": "@@ -361,6 +361,6 @@ export function hasChanged(x: unknown, y: unknown): boolean {\n if (x === y) {\n return x === 0 && 1 / x !== 1 / (y as number)\n } else {\n- return x === x && y === y\n+ return x === x || y === y\n }\n }",
"additions": 1,
... | 2022-07-04T02:37:05 |
golang/go | b5bf2f068251355538b66d36cc787cf59ced55be | e5a6a94aeb98fbfd2a046bd75042cbcbc2a529d4 | crypto/x509: allow setting MaxPathLen to -1 without IsCA
This fixes a bug in CL 228777 which disallowed
a MaxPathLen of -1 without IsCA, even though the
x509.Certificate documentation indicates that
MaxPathLen of -1 is considered "unset".
Updates #38216
Change-Id: Ib7240e00408d060f27567be8b820d0eee239256f
Reviewed-o... | [
{
"path": "src/crypto/x509/x509.go",
"patch": "@@ -2100,7 +2100,7 @@ func CreateCertificate(rand io.Reader, template, parent *Certificate, pub, priv\n \t\treturn nil, errors.New(\"x509: no SerialNumber given\")\n \t}\n \n-\tif template.BasicConstraintsValid && !template.IsCA && (template.MaxPathLen != 0 || ... | 2020-05-26T19:36:58 |
nodejs/node | a2b68723a920b9cc70377727ec0e3bbe11fbe548 | c14ca4925ab69509d08b453c482732325f09b617 | timers: fix outdated comment
PR-URL: https://github.com/nodejs/node/pull/14314
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@t... | [
{
"path": "lib/timers.js",
"patch": "@@ -741,7 +741,7 @@ function tryOnImmediate(immediate, oldTail) {\n var threw = true;\n emitBefore(immediate[async_id_symbol], immediate[trigger_id_symbol]);\n try {\n- // make the actual call outside the try/catch to allow it to be optimized\n+ // make the a... | 2017-07-16T21:32:39 |
rust-lang/rust | b7a9a321265c0e9a597762c7c8107d4b7eba378b | 123f17c57ba3062e6b641fbd089bd6343826ba22 | Fix detection of ref patterns for path patterns
I was wrong on #19127, I thought hir-def resolver is enough for them, but it turns out not because of paths like `<Enum>::Variant` and `Type::AssocThatIsEnum::Variant`. | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/diagnostics.rs",
"patch": "@@ -7,6 +7,7 @@ use std::ops::{Deref, DerefMut};\n \n use either::Either;\n use hir_def::{hir::ExprOrPatId, path::Path, resolver::Resolver, type_ref::TypesMap, TypeOwnerId};\n+use la_arena::{Idx, RawIdx};\n \n use crate::{... | 2025-02-17T09:51:29 |
huggingface/transformers | da20209dbc26a6a870a6e7be87faa657b571b7bc | b44567538b48e63354ecd0a87ba0492888bcfbeb | Add sudachi_projection option to BertJapaneseTokenizer (#28503)
* add sudachi_projection option
* Upgrade sudachipy>=0.6.8
* add a test case for sudachi_projection
* Compatible with older versions of SudachiPy
* make fixup
* make style
* error message for unidic download
* revert jumanpp test case... | [
{
"path": "src/transformers/models/bert_japanese/tokenization_bert_japanese.py",
"patch": "@@ -22,7 +22,7 @@\n from typing import Any, Dict, List, Optional, Tuple\n \n from ...tokenization_utils import PreTrainedTokenizer, _is_control, _is_punctuation, _is_whitespace\n-from ...utils import is_sentencepiece_... | 2024-02-13T03:47:20 |
vuejs/vue | 15b9b9b19dd3ae7cce5dcd89739e5cf719523fc5 | 8cdd0ac07e2222f344c2f0f4d7d2885b60435f7a | fix(reactivity): shallowReactive should not unwrap refs (#12605)
fix #12597 | [
{
"path": "src/core/observer/index.ts",
"patch": "@@ -181,7 +181,7 @@ export function defineReactive(\n }\n }\n }\n- return isRef(value) ? value.value : value\n+ return isRef(value) && !shallow ? value.value : value\n },\n set: function reactiveSetter(newVal) {\n ... | 2022-07-04T02:33:44 |
ggml-org/llama.cpp | bcf5bda6f5df559565d11d7c8e8295c1159a85ec | 3eb2be1ca5f37480aeb16102970d9e65f43347fe | Vulkan MMQ Integer Dot Refactor and K-Quant support (#16536)
* vulkan: add mmq q2_k integer dot support
* Refactor mmq caching
* Reduce mmq register use
* Load 4 quant blocks into shared memory in one step
* Pack q2_k blocks into caches of 32
* Use 32-bit accumulators for integer dot matmul
* Add q4_k mmq
* Add... | [
{
"path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -486,6 +486,7 @@ struct vk_device_struct {\n vk_matmul_pipeline2 pipeline_matmul_id_f16_f32;\n \n vk_matmul_pipeline2 pipeline_dequant_mul_mat_mat_id[GGML_TYPE_COUNT];\n+ vk_matmul_pipeline2 pipeline_dequant_mul_mat_mat_id_q8_1[GGML_T... | 2025-10-29T13:39:03 |
golang/go | e5a6a94aeb98fbfd2a046bd75042cbcbc2a529d4 | 20160b37c6b7d12e25987baf2d95ba861b327a3b | cmd/link/internal/ld/lib.go: use lld on Android
Set linker explicitly to lld because the default does not work on NDK
versions r19c, r20, r20b and r21. NDK 18b (or earlier) based builds
will need to specify -fuse-ld=gold.
Fixes #38838
Change-Id: Ib75f71fb9896b843910f41bd12aa1e36868fa9b3
GitHub-Last-Rev: eeaa171604b5... | [
{
"path": "src/cmd/link/internal/ld/lib.go",
"patch": "@@ -1478,6 +1478,11 @@ func (ctxt *Link) hostlink() {\n \t\t// from the beginning of the section (like sym.STYPE).\n \t\targv = append(argv, \"-Wl,-znocopyreloc\")\n \n+\t\tif objabi.GOOS == \"android\" {\n+\t\t\t// Use lld to avoid errors from default ... | 2020-05-26T07:00:30 |
rust-lang/rust | f46c7652d54168dc617861d195e3ef87c08bd9c4 | d5eb31c9347ae3c494c8d723711dacca7d1cfe8b | CI: rfl: move job forward to Linux v6.14-rc3
Linux v6.14-rc3 contains commit 6273a058383e ("x86: rust: set
rustc-abi=x86-softfloat on rustc>=1.86.0"), which resolves the error
from https://github.com/rust-lang/rust/pull/136146.
Signed-off-by: Miguel Ojeda <ojeda@kernel.org> | [
{
"path": "src/ci/docker/scripts/rfl-build.sh",
"patch": "@@ -2,7 +2,7 @@\n \n set -euo pipefail\n \n-LINUX_VERSION=50e57739141b41f731ab31f8380821c7969f9dc4\n+LINUX_VERSION=v6.14-rc3\n \n # Build rustc, rustdoc, cargo, clippy-driver and rustfmt\n ../x.py build --stage 2 library rustdoc clippy rustfmt\n@@ -2... | 2025-02-17T09:41:59 |
nodejs/node | c14ca4925ab69509d08b453c482732325f09b617 | 5f223759229a112af41508c470d683152523c6e3 | doc: fix Error property markdown level
Properties should be documented at same level as their constructor, as
they are in the other API doc sections.
PR-URL: https://github.com/nodejs/node/pull/15247
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snel... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -256,14 +256,14 @@ will affect any stack trace captured *after* the value has been changed.\n If set to a non-number value, or set to a negative number, stack traces will\n not capture any frames.\n \n-#### error.code\n+### error.code\n \n * {string}\n \n The `err... | 2017-09-07T20:32:37 |
huggingface/transformers | b44567538b48e63354ecd0a87ba0492888bcfbeb | d90acc16437e8c9e45e068fa1cc1a263b9a7208f | [`NllbTokenizer`] refactor with added tokens decoder (#27717)
* refactor with addedtokens decoder
* style
* get rid of lang code to id
* style
* keep some things for BC
* update tests
* add the mask token at the end of the vocab
* nits
* nits
* fix final tests
* style
* nits
* Updat... | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -800,8 +800,6 @@ def vocab(self, proto):\n (\"<unk>\", 0.0),\n ]\n vocab += [(piece.piece, piece.score) for piece in proto.pieces[3:]]\n- vocab += [('ace_Arab', 0.0), ('ace_Latn', 0.0), ('acm_Arab', 0.0),... | 2024-02-13T02:49:20 |
vuejs/vue | 326d24a4e42b4f4fd243b36037e88b71963d963d | 0ea6c366f5770f016183513792fce8765df47739 | fix(sfc): only include legacy decorator parser plugin when new plugin is not used | [
{
"path": "packages/compiler-sfc/src/compileScript.ts",
"patch": "@@ -126,7 +126,12 @@ export function compileScript(\n )\n }\n if (options.babelParserPlugins) plugins.push(...options.babelParserPlugins)\n- if (isTS) plugins.push('typescript', 'decorators-legacy')\n+ if (isTS) {\n+ plugins.pu... | 2022-06-30T02:37:40 |
ggml-org/llama.cpp | 9a3ea685b937c0f0cbfda2e50004ea54bf187512 | 338074c383c81366320d176d83b94b0a567ee0c2 | CUDA: Fix bug in topk-moe for gpt-oss (#16821)
* CUDA: Fix bug in topk-moe for gpt-oss
When using ggml_can_fuse_subgraph, the output nodes which are passed are wrong. This causes `test-backend-ops` to still fuse ndoes (because the nodes are not used elsewhere in the graph),
but it actually doesn't fuse in the actual ... | [
{
"path": "ggml/src/ggml-cuda/ggml-cuda.cu",
"patch": "@@ -2978,7 +2978,7 @@ static bool ggml_cuda_can_fuse(const struct ggml_cgraph * cgraph, int node_idx,\n ggml_cuda_topk_moe_ops(/*with_norm=*/false, /*delayed_softmax=*/true);\n \n if (ops.size() == topk_moe_ops_with_norm.size() &&\n- ... | 2025-10-29T07:55:06 |
golang/go | 6265ed745241da6c04ac8b9463c6feaaf332087b | 8ca2eae206cbe063de68cec046f41a7c7b8c4d4f | [dev.link] cmd/compile: emit fewer R_USETYPE relocations
Background: when compiling a function, it's possible that a local
variable will be optimized away, which could potentially degrade the
debugging experience if the compiler fails to emit DWARF information
for the variable's type. To mitigate this situation, the c... | [
{
"path": "src/cmd/compile/internal/gc/pgen.go",
"patch": "@@ -428,9 +428,10 @@ func debuginfo(fnsym *obj.LSym, infosym *obj.LSym, curfn interface{}) ([]dwarf.S\n \n \tdecls, dwarfVars := createDwarfVars(fnsym, fn.Func, apdecls)\n \n-\t// For each type referenced by the functions auto vars, attach a\n-\t// ... | 2020-05-21T11:16:29 |
nodejs/node | 428bcb78770f551827835551f9d5fd99e7162efe | 11b7428832466dd6933e9c26deaf3a4ce1d33cef | promises: more robust stringification
PR-URL: https://github.com/nodejs/node/pull/13784
Fixes: https://github.com/nodejs/node/issues/13771
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Matteo Collina <matteo.collina... | [
{
"path": "lib/internal/process/promises.js",
"patch": "@@ -1,5 +1,7 @@\n 'use strict';\n \n+const { safeToString } = process.binding('util');\n+\n const promiseRejectEvent = process._promiseRejectEvent;\n const hasBeenNotifiedProperty = new WeakMap();\n const promiseToGuidProperty = new WeakMap();\n@@ -58,... | 2017-06-19T08:19:55 |
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.