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 | ebccba7954fe9507df993dda7ba78fa34e030390 | 38fea3a4ec97fbcfad1f2d329f3a12c53cc36301 | cmd/go: process -debug-trace flag for cmd/test and cmd/vet
These commands are build-like commands that do their own flag
processing, so the value of debug-trace isn't available until
the command starts running. Start tracing in the cmd's run
function.
Updates #38714
Change-Id: I4d633e6ee907bf09feac52c2aff3daceb9b20e... | [
{
"path": "src/cmd/go/internal/test/test.go",
"patch": "@@ -31,6 +31,7 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modload\"\n \t\"cmd/go/internal/str\"\n+\t\"cmd/go/internal/trace\"\n \t\"cmd/go/internal/work\"\n \t\"cmd/internal/test2json\"\n )\n@@ -571,6 +572,23 @@ func runTest(c... | 2020-06-22T23:02:00 |
rust-lang/rust | 7a2db88a569ca125516f3ac5e546952f1df0c0fa | f8a913b1381e90379c7ca63ac2b88b9518936628 | Add a span to `CompilerBuiltinsCannotCall`
Currently, this error emit a diagnostic with no context like:
error: `compiler_builtins` cannot call functions through upstream monomorphizations; encountered invalid call from `<math::libm::support::hex_float::Hexf<i32> as core::fmt::LowerHex>::fmt` to `core::fmt::num::... | [
{
"path": "compiler/rustc_codegen_cranelift/src/abi/mod.rs",
"patch": "@@ -402,9 +402,13 @@ pub(crate) fn codegen_terminator_call<'tcx>(\n \n if is_call_from_compiler_builtins_to_upstream_monomorphization(fx.tcx, instance) {\n if target.is_some() {\n- let caller = with_no_... | 2025-02-24T02:47:59 |
nodejs/node | abf8bae475917fafcc3282214db5eebeefa09af0 | 5e93df684052bde146992bce4898e6d583345bb3 | test: use fixtures module
PR-URL: https://github.com/nodejs/node/pull/16034
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewat... | [
{
"path": "test/parallel/test-https-unix-socket-self-signed.js",
"patch": "@@ -6,11 +6,11 @@ if (!common.hasCrypto)\n \n common.refreshTmpDir();\n \n-const fs = require('fs');\n+const fixtures = require('../common/fixtures');\n const https = require('https');\n const options = {\n- cert: fs.readFileSync(`$... | 2017-10-06T19:25:07 |
ggml-org/llama.cpp | 4aced7a63156555911157d3002f9d3ddef4a1e55 | 745fa0e78b3d3fd3fd12a260c47300dc3869d07e | [SYCL] Support gpt-oss by OPs add-id, mul_mat for mxfp4, swiglu_oai (#17826)
* support gpt-oss GPU by OP add-id, mul_mat for mxfp4, swiglu_oai, fix warning
* fix fault ut case, update ops.md
* rebase, fix format issue | [
{
"path": "docs/ops.md",
"patch": "@@ -18,20 +18,20 @@ Legend:\n | ACC | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ |\n | ADD | ❌ | ✅ | ✅ | ✅ | 🟡 | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |\n | ADD1 | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ |... | 2025-12-15T02:35:15 |
ollama/ollama | 1bee2347bedb0ea43d15ffc42b481cb9a4804aea | 884d78ceb3f0b6a3867186460d23015cdca7fab4 | pr feedback
- defer closing llm on embedding
- do not override licenses
- remove debugging print line
- reformat model file docs | [
{
"path": "docs/modelfile.md",
"patch": "@@ -103,9 +103,7 @@ EMBED <file path>\n The `PARAMETER` instruction defines a parameter that can be set when the model is run.\n \n ```\n-\n PARAMETER <parameter> <parametervalue>\n-\n ```\n \n ### Valid Parameters and Values\n@@ -139,54 +137,40 @@ PARAMETER <paramet... | 2023-08-08T20:56:48 |
huggingface/transformers | fed27ffc7ec62837dca9bbfc83442eb3678ee026 | 33288ff15011ad4291effa3f1e4912acecc24399 | Adding FlaxNoRepeatNGramLogitsProcessor (#29677)
* fix issue with logit processor in beam search in Flax
* adding FlaxNoRepeatNGramLogitsProcessor class + unit test
* style correction and code verification
* add FlaxNoRepeatNGramLogitsProcessor to the test_processor_list and test_processor_list_jitted tests
... | [
{
"path": "src/transformers/generation/__init__.py",
"patch": "@@ -162,6 +162,7 @@\n \"FlaxTopKLogitsWarper\",\n \"FlaxTopPLogitsWarper\",\n \"FlaxWhisperTimeStampLogitsProcessor\",\n+ \"FlaxNoRepeatNGramLogitsProcessor\",\n ]\n _import_structure[\"flax_utils\"] = [\n ... | 2024-04-02T09:39:33 |
golang/go | abfeec5eb0356d1ac91a097d2124a6b7c8cfccd4 | a2a2237ae02016dd9ce16388963cfceece6744f3 | testing/iotest: add ErrReader
Adds an io.Reader that always returns 0 and a non-nil error.
Fixes #38781
Change-Id: I56bd124de07bc8809e77c6cfaab33a1e32cfe2ee
GitHub-Last-Rev: 4e232b17e9120405d4ea4743350ee361a3505043
GitHub-Pull-Request: golang/go#34741
Reviewed-on: https://go-review.googlesource.com/c/go/+/199501
Run... | [
{
"path": "src/testing/iotest/logger_test.go",
"patch": "@@ -81,14 +81,6 @@ func TestWriteLogger_errorOnWrite(t *testing.T) {\n \t}\n }\n \n-type errReader struct {\n-\terr error\n-}\n-\n-func (r errReader) Read([]byte) (int, error) {\n-\treturn 0, r.err\n-}\n-\n func TestReadLogger(t *testing.T) {\n \tolw ... | 2020-08-16T21:58:40 |
nodejs/node | 5e93df684052bde146992bce4898e6d583345bb3 | 506a5f75f859c5664c85a324e6950a00b4f64ea2 | test: replace fixturesDir with fixtures module
PR-URL: https://github.com/nodejs/node/pull/16036
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-repl-syntax-error-stack.js",
"patch": "@@ -1,8 +1,8 @@\n 'use strict';\n \n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n-const path = require('path');\n const repl = require('repl');\n let found = f... | 2017-10-06T19:25:05 |
ggml-org/llama.cpp | 745fa0e78b3d3fd3fd12a260c47300dc3869d07e | 52392291b2f3a24b5d3fef4fc0b56f10db358dc1 | model : add glm-asr support (#17901)
* [model] add glm-asr support
* fix format for ci
* fix convert format for ci
* update glm_asr convert script & use build_ffn for glm_asr clip & use build_stack for padding and review
* check root architecture for convert hf script
* fix conficlt with upstream
* fix convert s... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -713,6 +713,9 @@ def load_hparams(dir_model: Path, is_mistral_format: bool):\n if \"llm_config\" in config:\n # rename for InternVL\n config[\"text_config\"] = config[\"llm_config\"]\n+ if \"lm_config\" in config:\n+ ... | 2025-12-15T02:18:46 |
ollama/ollama | a027a7dd65bb5f30ceabc45513956b4994581b92 | 22986ccb38abbbb29456aafcd85b303923cecabe | add `0.0.0.0` as an allowed origin by default
Fixes #282 | [
{
"path": "server/routes.go",
"patch": "@@ -323,7 +323,6 @@ func CopyModelHandler(c *gin.Context) {\n func Serve(ln net.Listener, extraOrigins []string) error {\n \tconfig := cors.DefaultConfig()\n \tconfig.AllowWildcard = true\n-\t// only allow http/https from localhost\n \tallowedOrigins := []string{\n \t... | 2023-08-08T20:39:50 |
huggingface/transformers | 33288ff15011ad4291effa3f1e4912acecc24399 | 416711c3ea88109cf25a9c5f85b4aeee2cb831b5 | [bnb] Fix bug in `_replace_with_bnb_linear` (#29958)
fix bug | [
{
"path": "src/transformers/integrations/bitsandbytes.py",
"patch": "@@ -156,7 +156,10 @@ def _replace_with_bnb_linear(\n \n if (isinstance(module, nn.Linear) or isinstance(module, Conv1D)) and name not in modules_to_not_convert:\n # Check if the current key is not in the `modules_to_not... | 2024-04-02T09:18:03 |
golang/go | a2a2237ae02016dd9ce16388963cfceece6744f3 | 7ee26224436d80dca3f7e98c8fcf21185522d8e6 | cmd/link: emit correct jump instruction on ARM for DYNIMPORT
On ARM, for a JMP/CALL relocation, the instruction bytes is
encoded in Reloc.Add (issue #19811). I really hate it, but before
it is fixed we have to follow the rule and emit the right bits
from r.Add.
Fixes #40769.
Change-Id: I862e105408d344c5cc58ca9140d2e... | [
{
"path": "src/cmd/link/internal/arm/asm.go",
"patch": "@@ -220,7 +220,7 @@ func adddynrel(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loade\n \t\taddpltsym(target, ldr, syms, targ)\n \t\tsu := ldr.MakeSymbolUpdater(s)\n \t\tsu.SetRelocSym(rIdx, syms.PLT)\n-\t\tsu.SetRelocAdd(rIdx, int64(ldr... | 2020-08-13T20:59:52 |
ggml-org/llama.cpp | 9e6649ecf244a99749dacc28fc4f49f7d6ad6f60 | 0759b09c90f9e1bb8beebe74882b9f094b91f7bb | vulkan: fix mul_mat_vec_iq1_s formatting (#18026) | [
{
"path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_vec_iq1_s.comp",
"patch": "@@ -10,44 +10,44 @@ FLOAT_TYPE temp[NUM_COLS][NUM_ROWS];\n void calc_superblock(const uint a_offset, const uint b_offset, const uint ib32, const uint i,\n const uint num_blocks_per_row, const uint first_ro... | 2025-12-14T13:52:46 |
nodejs/node | b5f3054eb66a427ee0703596a3c065ac984ac760 | c11a30dc5159c52aaeff2bcec39f5d5181f8bba2 | test: use fixtures.readKey
Replace the common.fixturesDir by fixtures.readKey
in http2 subsystem test 'server startup'.
PR-URL: https://github.com/nodejs/node/pull/15892
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewate... | [
{
"path": "test/parallel/test-http2-server-startup.js",
"patch": "@@ -5,22 +5,19 @@\n // other than start listening.\n \n const common = require('../common');\n+const commonFixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const assert = require('a... | 2017-10-06T16:54:03 |
ollama/ollama | 8713ac23a86e1eaf8b94f93bb0d51d13b0225d87 | 5eb712f96256278a6ffdbebb53d551c2aa2a8e45 | allow overriding `template` and `system` in `/api/generate`
Fixes #297
Fixes #296 | [
{
"path": "api/types.go",
"patch": "@@ -33,9 +33,11 @@ func (e StatusError) Error() string {\n }\n \n type GenerateRequest struct {\n-\tModel string `json:\"model\"`\n-\tPrompt string `json:\"prompt\"`\n-\tContext []int `json:\"context,omitempty\"`\n+\tModel string `json:\"model\"`\n+\tPrompt strin... | 2023-08-08T04:55:34 |
huggingface/transformers | 416711c3ea88109cf25a9c5f85b4aeee2cb831b5 | 83b26dd79d5640dda9f50fafced4da7d5b38d818 | Fix 29807 sinusoidal positional encodings in Flaubert, Informer and XLM (#29904)
* Fix sinusoidal_embeddings in FlaubertModel
* Fix for Informer
* Fix for XLM
* Move sinusoidal emb for XLM
* Move sinusoidal emb for Flaubert
* Small cleanup
* Add comments on tests code copied from
* Add with Distil... | [
{
"path": "src/transformers/models/flaubert/modeling_flaubert.py",
"patch": "@@ -58,10 +58,10 @@\n # Copied from transformers.models.xlm.modeling_xlm.create_sinusoidal_embeddings\n def create_sinusoidal_embeddings(n_pos, dim, out):\n position_enc = np.array([[pos / np.power(10000, 2 * (j // 2) / dim) fo... | 2024-04-02T08:27:26 |
rust-lang/rust | f49b6c6cd58aa61c804dcb22cc013c728f8924af | b522e7c5ea8334fbccb9dd7f9b33759304743fd0 | Added into_value const function to ControlFlow<T, T>
Fixed issue with usage of generics and moved feature gate to crate root
Removed const tag
Fixed alphabetical ordering of feature gate, added same to doctest
Removed crate-level declaration of feature gate control_flow_into_value
Used const_precise_live_drops to ... | [
{
"path": "library/core/src/ops/control_flow.rs",
"patch": "@@ -229,6 +229,27 @@ impl<B, C> ControlFlow<B, C> {\n }\n }\n \n+impl<T> ControlFlow<T, T> {\n+ /// Extracts the value `T` that is wrapped by `ControlFlow<T, T>`.\n+ ///\n+ /// # Examples\n+ ///\n+ /// ```\n+ /// #![feature(co... | 2025-02-23T19:06:25 |
nodejs/node | c11a30dc5159c52aaeff2bcec39f5d5181f8bba2 | c0c5e262ddf8441c9acb6254266ca74d9457c39a | test: replace fixturesDir with fixtures module
`test/parallel/test-tls-ecdh.js` was loading fixture keys using
`common.fixturesDir`. Now it's using `fixtures.readKey` instead.
PR-URL: https://github.com/nodejs/node/pull/15893
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@b... | [
{
"path": "test/parallel/test-tls-ecdh.js",
"patch": "@@ -21,6 +21,7 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n@@ -32,11 +33,10 @@ const assert = require('assert');\n const tl... | 2017-10-06T17:08:09 |
huggingface/transformers | 83b26dd79d5640dda9f50fafced4da7d5b38d818 | 096f304695f7e7b169b031f7814352e900ad71c4 | [`generate`] fix breaking change for patch (#29976)
* fix bug and add tests
* nit
* otherway to get the cur len instead of attention mask
* more places where this might have been broken
* nit
* oups
* inputs_embeds vs input_embeds
* test generated outptus
* style
* nit
* fix
* skip fai... | [
{
"path": "src/transformers/generation/utils.py",
"patch": "@@ -3034,6 +3034,8 @@ def _beam_search(\n num_beams = beam_scorer.num_beams\n \n batch_beam_size, cur_len = input_ids.shape\n+ if \"inputs_embeds\" in model_kwargs:\n+ cur_len = model_kwargs[\"inputs_embeds\"].shap... | 2024-04-02T07:51:45 |
ggml-org/llama.cpp | 254098a279691615438f1a1bbe87f372199e13ea | 3238b1400cf4f0f174c39579d92ce1a8ddb68110 | common : refactor common_sampler + grammar logic changes (#17937)
* common : refactor common_sampler + grammar logic changes
* tests : increase max_tokens to get needed response
* batched : fix uninitialized samplers | [
{
"path": "common/arg.cpp",
"patch": "@@ -1415,7 +1415,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.sampling.top_k = value;\n params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_TOP_K;\... | 2025-12-14T08:11:13 |
ollama/ollama | 5eb712f96256278a6ffdbebb53d551c2aa2a8e45 | 931a5f3cb92da72615774754ce0b240dc350b48e | trim whitespace before checking stop conditions
Fixes #295 | [
{
"path": "llama/llama.go",
"patch": "@@ -250,9 +250,9 @@ func (llm *LLM) Predict(ctx []int, prompt string, fn func(api.GenerateResponse))\n \n func (llm *LLM) checkStopConditions(b bytes.Buffer) error {\n \tfor _, stopCondition := range llm.Stop {\n-\t\tif stopCondition == b.String() {\n+\t\tif stopConditi... | 2023-08-08T04:27:55 |
golang/go | 7ee26224436d80dca3f7e98c8fcf21185522d8e6 | a22ec6e650669f5101c7e0955d82e29d644eef4e | cmd/link: link dynamic library automatically
cgo_import_dynamic pragma indicates a symbol is imported from a
dynamic library. Currently, the linker does not actually link
against the dynamic library, so we have to "force" it by using
//go:cgo_import_dynamic _ _ "dylib"
syntax, which links in the library unconditiona... | [
{
"path": "src/cmd/link/internal/ld/go.go",
"patch": "@@ -183,6 +183,9 @@ func setCgoAttr(ctxt *Link, lookup func(string, int) loader.Sym, file string, pk\n \t\t\t\t\thostObjSyms[s] = struct{}{}\n \t\t\t\t}\n \t\t\t\thavedynamic = 1\n+\t\t\t\tif lib != \"\" && ctxt.IsDarwin() {\n+\t\t\t\t\tmachoadddynlib(li... | 2020-08-13T00:27:57 |
huggingface/transformers | e4f5b57a3b43eeb5d292c7e4b3040d9b811b2479 | fa2c49b00baadd4e7c509c7f241015f6deeb7664 | [tests] fix the wrong output in `ImageToTextPipelineTests.test_conditional_generation_llava` (#29975)
bug fix | [
{
"path": "tests/pipelines/test_pipelines_image_to_text.py",
"patch": "@@ -290,7 +290,7 @@ def test_conditional_generation_llava(self):\n outputs,\n [\n {\n- \"generated_text\": \"<image> \\nUSER: What does the label 15 represent? (1) lava (2) core ... | 2024-04-01T11:08:39 |
nodejs/node | de2f4ea1052c001a73e4762c4dbaa6f1c3e56ef8 | 4a1359fe1dea6c8db0f066802f3e960e5f491836 | test: change fixturesDir to fixtures.path
PR-URL: https://github.com/nodejs/node/pull/15902
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-fs-read-stream-throw-type-error.js",
"patch": "@@ -1,10 +1,10 @@\n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const fs = require('fs');\n-const path = require('path');\n \n-const e... | 2017-10-06T17:02:27 |
ggml-org/llama.cpp | 3238b1400cf4f0f174c39579d92ce1a8ddb68110 | 4722671641fdc29b371d517db05d4b395c6e068c | vulkan: Fix data race/hang in scalar/cm1 flash attention (#17887) | [
{
"path": "ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp",
"patch": "@@ -256,6 +256,9 @@ void main() {\n barrier();\n }\n \n+ // prevent race on tmpsh\n+ barrier();\n+\n // reduce across threads\n \n [[unroll]] for (uint32_t r = 0; r < Br; ++r) {",
"additions": 3,
"de... | 2025-12-14T08:00:00 |
golang/go | a22ec6e650669f5101c7e0955d82e29d644eef4e | d19fedd180fceb6a60961e19387893ddb047e4e6 | Revert "cmd/internal/obj: fix inline marker issue on s390x"
This reverts CL 247697.
Reason for revert: This change broke the linux-arm builder.
Change-Id: I8ca0d5b3b2ea0109ffbfadeab1406a1b60e7d18d
Reviewed-on: https://go-review.googlesource.com/c/go/+/248718
Reviewed-by: Michael Munday <mike.munday@ibm.com>
Run-TryB... | [
{
"path": "src/cmd/internal/obj/pcln.go",
"patch": "@@ -278,21 +278,6 @@ func linkpcln(ctxt *Link, cursym *LSym) {\n \tfuncpctab(ctxt, &pcln.Pcfile, cursym, \"pctofile\", pctofileline, pcln)\n \tfuncpctab(ctxt, &pcln.Pcline, cursym, \"pctoline\", pctofileline, nil)\n \n-\t// Check that all the Progs used as... | 2020-08-17T13:17:26 |
rust-lang/rust | ae8b7b38aaf02976fc9d5012fadb26309cd03b8b | 96c609e5f70e3f0b213eff516dcb70bcb05ffe0f | fix | [
{
"path": "library/stdarch/crates/core_arch/src/x86/avx512f.rs",
"patch": "@@ -28615,7 +28615,7 @@ pub unsafe fn _mm512_cmp_ps_mask<const IMM8: i32>(a: __m512, b: __m512) -> __mma\n let a = a.as_f32x16();\n let b = b.as_f32x16();\n let r = vcmpps(a, b, IMM8, neg_one, _MM_FROUND_CUR_DIRECTION);\n... | 2025-02-12T18:28:42 |
huggingface/transformers | fa2c49b00baadd4e7c509c7f241015f6deeb7664 | 569f6c7d43a9bfee1fafe9d57f8d951141080a06 | Fix copies main ci (#29979)
* fix copies
* nit
* style
* Update utils/check_copies.py | [
{
"path": "tests/models/qwen2_moe/test_modeling_qwen2_moe.py",
"patch": "@@ -504,7 +504,7 @@ def test_flash_attn_2_generate_use_cache(self):\n @require_torch_gpu\n @pytest.mark.flash_attn_test\n @slow\n- def test_flash_attn_2_inference_padding_right(self):\n+ def test_flash_attn_2_inferenc... | 2024-04-01T10:43:58 |
ggml-org/llama.cpp | d15d177f43b7dd7f73a965716bd76a3327abb2d6 | 77ad8542bd09c374d65be8abffd88ae4aa1e704d | vulkan: faster q6_k matmul (#17813)
* q6_k faster mul mat
* 8 values
* fix comment
* switch to two at a time
* start ci for .glsl files | [
{
"path": ".github/workflows/build.yml",
"patch": "@@ -20,7 +20,8 @@ on:\n '**/*.swift',\n '**/*.m',\n '**/*.metal',\n- '**/*.comp'\n+ '**/*.comp',\n+ '**/*.glsl'\n ]\n \n pull_request:\n@@ -40,7 +41,8 @@ on:\n '**/*.swift',\n '**/*.m',\n '**/*.metal'... | 2025-12-14T07:29:37 |
nodejs/node | 4a1359fe1dea6c8db0f066802f3e960e5f491836 | 585c1199a242cfe5e7561e812b438934de199055 | test: changed fixtures require
PR-URL: https://github.com/nodejs/node/pull/15899
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/sequential/test-require-cache-without-stat.js",
"patch": "@@ -23,9 +23,10 @@\n // We've experienced a regression where the module loader stats a bunch of\n // directories on require() even if it's been called before. The require()\n // should caching the request.\n-const common = require('..... | 2017-10-06T17:06:52 |
rust-lang/rust | 4183c085116e36a2ee78a5b1f3d94892cefce7ba | 1eddb158f9f804a9ca843d5ccce70c341340c9d2 | Fix some `use` items that import more than necessary. | [
{
"path": "compiler/rustc_middle/src/mir/terminator.rs",
"patch": "@@ -8,7 +8,7 @@ use rustc_hir::LangItem;\n use rustc_macros::{HashStable, TyDecodable, TyEncodable, TypeFoldable, TypeVisitable};\n use smallvec::{SmallVec, smallvec};\n \n-use super::{TerminatorKind, *};\n+use super::*;\n \n impl SwitchTarg... | 2025-02-23T22:30:42 |
golang/go | d19fedd180fceb6a60961e19387893ddb047e4e6 | 7148abc1b900555199998aac25af11783a9eb41c | runtime: move checkmarks to a separate bitmap
Currently, the GC stores the object marks for checkmarks mode in the
heap bitmap using a rather complex encoding: for one word objects, the
checkmark is stored in the pointer/scalar bit since one word objects
must be pointers; for larger objects, the checkmark is stored in... | [
{
"path": "src/reflect/all_test.go",
"patch": "@@ -6467,12 +6467,9 @@ func verifyGCBitsSlice(t *testing.T, typ Type, cap int, bits []byte) {\n \t// Repeat the bitmap for the slice size, trimming scalars in\n \t// the last element.\n \tbits = rep(cap, bits)\n-\tfor len(bits) > 2 && bits[len(bits)-1] == 0 {\n... | 2020-06-05T20:48:03 |
huggingface/transformers | 569f6c7d43a9bfee1fafe9d57f8d951141080a06 | 3b8e2932ce743008f63585aae1e1b8b30dc8b3ac | Fix FA2 tests (#29909)
* fix FA2 tests
* refactor inference test name | [
{
"path": "tests/models/bark/test_modeling_bark.py",
"patch": "@@ -879,7 +879,7 @@ def test_resize_embeddings_untied(self):\n @require_torch_gpu\n @pytest.mark.flash_attn_test\n @slow\n- def test_flash_attn_2_inference(self):\n+ def test_flash_attn_2_inference_equivalence(self):\n ... | 2024-04-01T07:51:00 |
ollama/ollama | 872011630aeadc97e0e9d0b4e7d1d7f5de05e926 | 203fdbc4b8b69f1ed291e41c4f535913f7b73acc | fix license | [
{
"path": "server/images.go",
"patch": "@@ -271,7 +271,19 @@ func CreateModel(name string, path string, fn func(resp api.ProgressResponse)) e\n \t\t\t\t\tlayers = append(layers, newLayer)\n \t\t\t\t}\n \t\t\t}\n-\t\tcase \"license\", \"template\", \"system\", \"prompt\":\n+\t\tcase \"license\":\n+\t\t\tfn(a... | 2023-08-01T04:34:52 |
ggml-org/llama.cpp | 609a2d026897829730ca231285469a9c80967fb7 | a63cbafbbc5a7afe80b75486cffa651003aaede4 | models : fix YaRN regression + consolidate logic (#18006)
* models : fix YaRN regression + consolidate logic
* cont : fix the fix
* cont : remove header
* cont : add header | [
{
"path": "src/llama-context.cpp",
"patch": "@@ -9,6 +9,7 @@\n #include \"llama-model.h\"\n \n #include <cinttypes>\n+#include <cmath>\n #include <cstring>\n #include <limits>\n #include <stdexcept>\n@@ -72,6 +73,43 @@ llama_context::llama_context(\n cparams.yarn_ext_factor = rope_scaling_type == LL... | 2025-12-14T06:34:56 |
nodejs/node | 585c1199a242cfe5e7561e812b438934de199055 | d00bb87cc7f3cb01403a932365698f9667d47be6 | test: replaced fixturesDir with fixtures module
This was an assigned task at Node.js Interactive North America 2017.
This replaced the fixturesDir exported by the common module with
the fixturesDir on the common/fixtures module in the path-makelong test.
PR-URL: https://github.com/nodejs/node/pull/15908
Reviewed-By: ... | [
{
"path": "test/parallel/test-path-makelong.js",
"patch": "@@ -21,11 +21,12 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const path = require('path');\n \n if (common.isWindows) {\n- const file = path.jo... | 2017-10-06T17:16:42 |
golang/go | 7148abc1b900555199998aac25af11783a9eb41c | 7bbd5ca5a6a94f58d33de6b1244248a32dc8cd9c | runtime: simplify heapBitsSetType doubleCheck
The heapBitsSetType function has a slow doubleCheck debugging mode
that checks the bitmap written out by the rest of the function using
far more obvious logic. But even this has some surprisingly complex
logic in it. Simplify it a bit. This also happens to fix the logic on... | [
{
"path": "src/runtime/mbitmap.go",
"patch": "@@ -1403,17 +1403,20 @@ Phase4:\n \t// Double check the whole bitmap.\n \tif doubleCheck {\n \t\t// x+size may not point to the heap, so back up one\n-\t\t// word and then call next().\n-\t\tend := heapBitsForAddr(x + size - sys.PtrSize).next()\n-\t\tendAI := ar... | 2020-06-05T20:44:29 |
huggingface/transformers | 3b8e2932ce743008f63585aae1e1b8b30dc8b3ac | 6e584070d4f86964c4268baed08a5a5da8f82633 | Rework tests to compare trainer checkpoint args (#29883)
* Start rework
* Fix failing test
* Include max
* Update src/transformers/trainer.py
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com>
---------
Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> | [
{
"path": "src/transformers/trainer.py",
"patch": "@@ -1565,23 +1565,28 @@ def compare_trainer_and_checkpoint_args(self, training_args, trainer_state):\n \"logging_steps\": \"logging_steps\",\n \"eval_steps\": \"eval_steps\",\n \"save_steps\": \"save_steps\",\n- ... | 2024-03-31T02:19:17 |
ggml-org/llama.cpp | a63cbafbbc5a7afe80b75486cffa651003aaede4 | 0e59224990e6b535e87fbf10851dcd35aed04f3a | ggml : arm repack fix build | [
{
"path": "ggml/src/ggml-cpu/arch/arm/repack.cpp",
"patch": "@@ -24,7 +24,7 @@\n \n #define UNUSED GGML_UNUSED\n \n-#if defined(__aarch64__) && defined(__ARM_NEON) && defined(__ARM_FEATURE_MATMUL_INT8)\n+#if defined(__aarch64__) && defined(__ARM_NEON) && (defined(__ARM_FEATURE_MATMUL_INT8) || defined(__ARM_... | 2025-12-13T20:54:14 |
ollama/ollama | 319f078dd981d1a5cb3445db238683df9d1481d6 | 9968153729bc7c18ebb8a4b9b28e27473d42f4ba | remove -Werror
there are compile warnings on Linux which -Werror elevates to errors,
preventing compile | [
{
"path": "llama/llama.go",
"patch": "@@ -1,7 +1,7 @@\n package llama\n \n /*\n-#cgo CPPFLAGS: -O3 -Wall -Wextra -Werror -Wno-unused-function -Wno-unused-variable -DNDEBUG -DGGML_USE_K_QUANTS\n+#cgo CPPFLAGS: -O3 -Wall -Wextra -Wno-unused-function -Wno-unused-variable -DNDEBUG -DGGML_USE_K_QUANTS\n #cgo CXX... | 2023-07-31T22:54:10 |
nodejs/node | 47d80384f9e3fd5bbe1edda87c212f28d4e69160 | b2e46c5b5453f26d6db4dd54317da0925f0936b4 | test: updated error message
PR-URL: https://github.com/nodejs/node/pull/15906
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-cluster-send-deadlock.js",
"patch": "@@ -31,8 +31,8 @@ const net = require('net');\n if (cluster.isMaster) {\n const worker = cluster.fork();\n worker.on('exit', function(code, signal) {\n- assert.strictEqual(code, 0, 'Worker exited with an error code');\n- assert(!si... | 2017-10-06T17:03:48 |
huggingface/transformers | 6e584070d4f86964c4268baed08a5a5da8f82633 | 46d636818bcd43143ebe736c5ad6a12e602fe0d4 | [`BC`] Fix BC for AWQ quant (#29965)
fix awq quant | [
{
"path": "src/transformers/models/cohere/modeling_cohere.py",
"patch": "@@ -963,7 +963,7 @@ def _update_causal_mask(self, attention_mask, input_tensor, cache_position):\n dtype, device = input_tensor.dtype, input_tensor.device\n min_dtype = torch.finfo(dtype).min\n sequence_length =... | 2024-03-30T18:37:25 |
golang/go | bf512685fee6282f1a50069ef444412bdf59611b | d79350bac73670c04a91b6761d334b810201f6ee | syscall: cap RLIMIT_NOFILE soft limit in TestRlimit on darwin
On some machines, kern.maxfilesperproc is 4096. If Rlimit.Cur is larger
than that, Setrlimit will get an errEINVAL.
Fixes #40564.
Change-Id: Ib94303c790a489ff0559c88d41a021e514d18f8d
Reviewed-on: https://go-review.googlesource.com/c/go/+/246658
Reviewed-b... | [
{
"path": "src/syscall/syscall_unix_test.go",
"patch": "@@ -336,11 +336,11 @@ func TestRlimit(t *testing.T) {\n \t}\n \tset := rlimit\n \tset.Cur = set.Max - 1\n-\tif runtime.GOOS == \"darwin\" && set.Cur > 10240 {\n-\t\t// The max file limit is 10240, even though\n-\t\t// the max returned by Getrlimit is 1... | 2020-08-05T05:52:32 |
ggml-org/llama.cpp | 71fdcf0616fa0f93dab37e4c0d0d77e708e398a9 | 615655aafe46339f04e2879d14d7d0d68fc2cfcd | ggml : arm repack fix build (whisper/0) | [
{
"path": "ggml/src/ggml-cpu/arch/arm/repack.cpp",
"patch": "@@ -24,6 +24,7 @@\n \n #define UNUSED GGML_UNUSED\n \n+#if defined(__aarch64__) && defined(__ARM_NEON) && defined(__ARM_FEATURE_MATMUL_INT8)\n static inline void decode_q4_Kx8_scales_mins(const uint8_t * scales_in,\n ... | 2025-12-13T06:04:09 |
ollama/ollama | 9968153729bc7c18ebb8a4b9b28e27473d42f4ba | 7da249fcc12adf158343b902d054e1b141316ea7 | fix Go warnings | [
{
"path": "server/images.go",
"patch": "@@ -635,9 +635,7 @@ func PushModel(name string, regOpts *RegistryOptions, fn func(api.ProgressRespon\n \t}\n \n \tvar layers []*Layer\n-\tfor _, layer := range manifest.Layers {\n-\t\tlayers = append(layers, layer)\n-\t}\n+\tlayers = append(layers, manifest.Layers...)... | 2023-08-01T01:37:40 |
nodejs/node | 17857d4fc97d03020d3012ed890da509b294d0d2 | 3953164e42c73bbb72297e45f11e33f32e03c792 | test: use common.fixtures in tls test
PR-URL: https://github.com/nodejs/node/pull/15965
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "test/parallel/test-tls-max-send-fragment.js",
"patch": "@@ -21,20 +21,21 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n+\n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const assert = require('assert');\n const tls... | 2017-10-06T17:41:48 |
ggml-org/llama.cpp | 615655aafe46339f04e2879d14d7d0d68fc2cfcd | c00ff929dcfd150234e62f30e863bca4f1337aee | cmake : set `CMAKE_RUNTIME_OUTPUT_DIRECTORY` for non standalone build (ggml/1394)
Some backend depends on CMAKE_RUNTIME_OUTPUT_DIRECTORY to create temporary file like metal backened.
Missing CMAKE_RUNTIME_OUTPUT_DIRECTORY will cause some cmake error like permission denied (try to copy file to root).
This PR wants to s... | [
{
"path": "ggml/CMakeLists.txt",
"patch": "@@ -54,6 +54,10 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)\n # TODO\n else()\n set(GGML_STANDALONE OFF)\n+\n+ if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)\n+ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)\n+ endif()\n en... | 2025-12-12T14:37:38 |
golang/go | 9138a2a67f7f29948f6f608bf904b3605f1b45d0 | 681559e1f10f83a053b4ebab101de3d77ede8353 | cmd/link: avoid duplicate DT_NEEDED entries
When adding a new library entry, ensure we record it as seen to avoid
adding duplicates of it.
Fixes #39256
Change-Id: Id309adf80c533d78fd485517c18bc9ab5f1d29fb
Reviewed-on: https://go-review.googlesource.com/c/go/+/235257
Run-TryBot: Joel Sing <joel@sing.id.au>
TryBot-Res... | [
{
"path": "src/cmd/link/internal/ld/elf.go",
"patch": "@@ -2378,6 +2378,7 @@ func elfadddynsym(ldr *loader.Loader, target *Target, syms *ArchSyms, s loader.S\n \t\tif target.Arch.Family == sys.AMD64 && !cgoeDynamic && dil != \"\" && !seenlib[dil] {\n \t\t\tdu := ldr.MakeSymbolUpdater(syms.Dynamic)\n \t\t\tE... | 2020-05-26T04:40:44 |
nodejs/node | 3953164e42c73bbb72297e45f11e33f32e03c792 | 0662ebeef99b9ce233b0c683e762e8c76ce69785 | test: replace error msg w/ template literal
PR-URL: https://github.com/nodejs/node/pull/15910
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-cluster-send-handle-twice.js",
"patch": "@@ -35,8 +35,8 @@ if (cluster.isMaster) {\n for (let i = 0; i < workers.toStart; ++i) {\n const worker = cluster.fork();\n worker.on('exit', common.mustCall(function(code, signal) {\n- assert.strictEqual(code, 0, 'Worker e... | 2017-10-06T17:10:18 |
ggml-org/llama.cpp | c00ff929dcfd150234e62f30e863bca4f1337aee | 4ed2bae50d64dcff7f99cb2b28f737fda314abf5 | scripts: add script to compare logprobs of llama.cpp against other frameworks (#17947)
* scripts: add script to compare logits of llama.cpp against other frameworks
* accept custom prompt file
* fix code style
* clarify endpoint
* fix displaying
* use abs for diff
* fix vllm case
* rm output file
* rename to c... | [
{
"path": "scripts/compare-logprobs.py",
"patch": "@@ -0,0 +1,281 @@\n+import argparse\n+import requests\n+import json\n+from pathlib import Path\n+import logging\n+\n+logger = logging.getLogger(\"compare-logprobs\")\n+logging.basicConfig(level=logging.INFO)\n+\n+\n+DESCRIPTION = \"\"\"\n+Compare logits bet... | 2025-12-13T21:33:29 |
golang/go | 99f179f55a66f35dc7861fa411b42ed61bd0df31 | 51ac0f0f4cb432204dee3d434335fd1e61ca8446 | fmt: avoid badverb formatting for %q when used with integers
Instead of returning a bad verb error format for runes above
utf8.Maxrune return a quoted utf8.RuneError rune (\ufffd).
This makes the behaviour consistent with the "c" verb and
aligns behaviour to not return bad verb error format when
a verb is applied to t... | [
{
"path": "src/fmt/fmt_test.go",
"patch": "@@ -290,11 +290,11 @@ var fmtTests = []struct {\n \t{\"%q\", '\\U00000e00', `'\\u0e00'`},\n \t{\"%q\", '\\U0010ffff', `'\\U0010ffff'`},\n \t// Runes that are not valid.\n-\t{\"%q\", int32(-1), \"%!q(int32=-1)\"},\n+\t{\"%q\", int32(-1), `'�'`},\n \t{\"%q\", 0xDC80,... | 2020-07-20T05:57:06 |
nodejs/node | 261ae7f58a9ec670f7c6c7dbb911619685105068 | 721f6df7053ae783bd6b1f58d47474df523f2d0c | test: replace fixturesDir with fixtures module
PR-URL: https://github.com/nodejs/node/pull/15919
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "test/sequential/test-debugger-debug-brk.js",
"patch": "@@ -1,10 +1,13 @@\n 'use strict';\n const common = require('../common');\n common.skipIfInspectorDisabled();\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const spawn = require('child_process').spawn;... | 2017-10-06T17:11:02 |
ggml-org/llama.cpp | 4ed2bae50d64dcff7f99cb2b28f737fda314abf5 | 5266379bcae74214af397f36aa81b2a08b15d545 | server-models.cpp: add missing <filesystem> (#18000)
Fixes: https://github.com/ggml-org/llama.cpp/issues/17999 | [
{
"path": "tools/server/server-models.cpp",
"patch": "@@ -16,6 +16,7 @@\n #include <atomic>\n #include <chrono>\n #include <queue>\n+#include <filesystem>\n \n #ifdef _WIN32\n #include <winsock2.h>",
"additions": 1,
"deletions": 0,
"language": "C++"
}
] | 2025-12-13T21:02:43 |
golang/go | f7fc25ed5a16ee7678680ffd0bcc3078cc249e0a | c810c6db101b53154b06f9ef1ff7455aaff16c36 | image/gif: add more writer benchmarks
The two existing benchmarks encode randomized pixels, which isn't very
representative. The two new benchmarks encode a PNG photo as a GIF.
Also rename the benchmarks for consistency.
Also fix the bytes-per-op measure for paletted images, which are 1 (not
4) bytes per pixel.
Als... | [
{
"path": "src/image/gif/writer_test.go",
"patch": "@@ -9,6 +9,7 @@ import (\n \t\"image\"\n \t\"image/color\"\n \t\"image/color/palette\"\n+\t\"image/draw\"\n \t_ \"image/png\"\n \t\"io/ioutil\"\n \t\"math/rand\"\n@@ -656,33 +657,22 @@ func TestEncodeWrappedImage(t *testing.T) {\n \t}\n }\n \n-func Benchma... | 2020-08-13T14:04:05 |
huggingface/transformers | 46d636818bcd43143ebe736c5ad6a12e602fe0d4 | f6701bc664fa65dd7621d6465a250bd5b4287671 | Update model card and link of blog post. (#29928)
* Update qwen2_moe.md
* update link of blogpost.
* fixup
---------
Co-authored-by: bozheng-hit <dsoul0621@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -473,7 +473,7 @@ Current number of checkpoints: ** (from Shanghai AI Laboratory, Nanjing University, The University of Hong Kong etc.) released with ... | 2024-03-30T16:49:03 |
ollama/ollama | d1c098b038b6304945c57a31b1893202d60cba88 | 90ba0b80c7d8629a85c232085d47fcf4af85d1ee | tell users to check the server error logs | [
{
"path": "cmd/cmd.go",
"patch": "@@ -278,6 +278,18 @@ func generate(cmd *cobra.Command, model, prompt string) error {\n \t\t}\n \n \t\tif err := client.Generate(context.Background(), &request, fn); err != nil {\n+\t\t\tif strings.Contains(err.Error(), \"failed to load model\") {\n+\t\t\t\t// tell the user ... | 2023-07-31T15:49:33 |
ggml-org/llama.cpp | 4d5ae24c0ac79c4e360773bac58dd2c2a46b7f67 | 66ba51252ed1cf08739fbed8a538d3cb3541655d | arg: fix common_params_parse not accepting negated arg (#17991) | [
{
"path": "common/arg.cpp",
"patch": "@@ -724,7 +724,7 @@ static void add_rpc_devices(const std::string & servers) {\n }\n }\n \n-bool common_params_parse(int argc, char ** argv, llama_example ex, std::map<common_arg, std::string> & out_map) {\n+bool common_params_to_map(int argc, char ** argv, llama_ex... | 2025-12-13T11:53:37 |
huggingface/transformers | f6701bc664fa65dd7621d6465a250bd5b4287671 | e644b6003846fea049f4e71cbb9ff239c2a5901d | Reset alarm signal when the function is ended (#29706)
Fixes #29690 | [
{
"path": "src/transformers/dynamic_module_utils.py",
"patch": "@@ -592,8 +592,9 @@ def resolve_trust_remote_code(trust_remote_code, model_name, has_local_code, has\n if has_local_code:\n trust_remote_code = False\n elif has_remote_code and TIME_OUT_REMOTE_CODE > 0:\n+ ... | 2024-03-30T16:41:27 |
golang/go | 8c39bbf9c93f773ab351bbddb4c3dd93e4fddc76 | 01f99b4e9540f34b44e13b25f6dd04b82ac952d9 | cmd/compile: stop race instrumentation from clobbering frame pointer
There is an optimization rule that removes calls to racefuncenter and
racefuncexit, if there are no other race calls in the function. The
rule removes the call to racefuncenter, but it does *not* remove the
store of its argument to the outargs sectio... | [
{
"path": "src/cmd/compile/internal/gc/racewalk.go",
"patch": "@@ -42,7 +42,7 @@ var omit_pkgs = []string{\n \t\"internal/cpu\",\n }\n \n-// Only insert racefuncenterfp/racefuncexit into the following packages.\n+// Don't insert racefuncenterfp/racefuncexit into the following packages.\n // Memory accesses ... | 2020-08-11T20:19:57 |
nodejs/node | 0fbe0a02df0a99c34c5b1e6abb92a450284cfca8 | b8b248a9b3eb24ca60695e42de6cfbc2f37c5c4c | test: improve an error message
PR-URL: https://github.com/nodejs/node/pull/15921
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-cluster-master-kill.js",
"patch": "@@ -79,7 +79,8 @@ if (cluster.isWorker) {\n }));\n \n process.once('exit', () => {\n- assert.strictEqual(typeof pid, 'number', 'did not get worker pid info');\n+ assert.strictEqual(typeof pid, 'number',\n+ `got ... | 2017-10-06T16:50:01 |
ollama/ollama | 90ba0b80c7d8629a85c232085d47fcf4af85d1ee | 39bb25d5f6693422a7e7941dfbae1682c32be0d7 | fix `build_darwin.sh` | [
{
"path": "scripts/build_darwin.sh",
"patch": "@@ -11,7 +11,7 @@ codesign --deep --force --options=runtime --sign \"$APPLE_IDENTITY\" --timestamp d\n \n # build and sign the mac app\n npm run --prefix app make:sign\n-cp app/out/make/zip/darwin/universal/Ollama-darwin-universal-${VERSION:-0.0..zip dist/Ollam... | 2023-07-29T17:13:10 |
ggml-org/llama.cpp | 66ba51252ed1cf08739fbed8a538d3cb3541655d | 36255a22681583c3787bce778132c89d74da4e4c | cmake: correct scope - link ws2_32 for MinGW/w64devkit builds in cpp-httplib (#17972)
* fix - w64devkit build
* fix - w64devkit build private scope | [
{
"path": "vendor/cpp-httplib/CMakeLists.txt",
"patch": "@@ -11,8 +11,9 @@ endif()\n target_link_libraries (${TARGET} PRIVATE Threads::Threads)\n \n if (WIN32 AND NOT MSVC)\n- target_link_libraries(${TARGET} PUBLIC ws2_32)\n+ target_link_libraries(${TARGET} PRIVATE ws2_32)\n endif()\n+\n target_compi... | 2025-12-13T11:46:36 |
golang/go | c6a11f0dd279f374602794af60c7cde4585a1e6f | d30363062283dcdca4392ef61f13f9b332ca8bc3 | crypto,internal/bytealg: fix assembly that clobbers BP
BP should be callee-save. It will be saved automatically if
there is a nonzero frame size. Otherwise, we need to avoid this register.
Change-Id: If3f551efa42d830c8793d9f0183cb8daad7a2ab5
Reviewed-on: https://go-review.googlesource.com/c/go/+/248260
Run-TryBot: Ke... | [
{
"path": "src/crypto/elliptic/p256_asm_amd64.s",
"patch": "@@ -1336,7 +1336,7 @@ TEXT p256SubInternal(SB),NOSPLIT,$0\n \n \tRET\n /* ---------------------------------------*/\n-TEXT p256MulInternal(SB),NOSPLIT,$0\n+TEXT p256MulInternal(SB),NOSPLIT,$8\n \tMOVQ acc4, mul0\n \tMULQ t0\n \tMOVQ mul0, acc0\n@@ ... | 2020-08-11T20:04:48 |
ggml-org/llama.cpp | fd1085ffb71dabf4490b428512d0fd6fdc637536 | 380b4c984e06f8d8381392d15814b3392e39560e | model-conversion : use CONVERTED_MODEL value for converted model [no ci] (#17984)
* model-conversion : use CONVERTED_MODEL value for converted model [no ci]
This commit updates the model verification scripts to use the
CONVERTED_MODEL environment variable instead of using the MODEL_PATH
(the original model path) as t... | [
{
"path": "examples/model-conversion/scripts/causal/compare-logits.py",
"patch": "@@ -1,10 +1,13 @@\n #!/usr/bin/env python3\n \n-import numpy as np\n import sys\n-import os\n+import numpy as np\n from pathlib import Path\n \n+# Add utils directory to path for direct script execution\n+sys.path.insert(0, st... | 2025-12-13T07:34:26 |
huggingface/transformers | e644b6003846fea049f4e71cbb9ff239c2a5901d | 156d30da94cc62f745ad9577655a6633240d3c23 | fix: get mlflow version from mlflow-skinny (#29918)
Co-authored-by: Alexander Jipa <azzhipa@amazon.com> | [
{
"path": "src/transformers/integrations/integration_utils.py",
"patch": "@@ -131,6 +131,13 @@ def is_mlflow_available():\n return importlib.util.find_spec(\"mlflow\") is not None\n \n \n+def get_mlflow_version():\n+ try:\n+ return importlib.metadata.version(\"mlflow\")\n+ except importlib.... | 2024-03-30T16:38:29 |
rust-lang/rust | afc89a1e021c99bdcd89a71c4c93ff6f3a2072c8 | 6fc19785f7d4d0b91304a8c90348a2dbfd24d664 | Fixed tidy error | [
{
"path": "tests/rustdoc/inline_local/staged-inline.rs",
"patch": "@@ -43,4 +43,4 @@ pub mod core {\n pub mod ready {\n }\n }\n-}\n\\ No newline at end of file\n+}",
"additions": 1,
"deletions": 1,
"language": "Rust"
}
] | 2025-02-23T16:54:00 |
nodejs/node | c4178abc6471365632f2468692a7b1c79ba528b5 | 56c0e7d10f32b6a7e6010cf38d164e2fbabe93f7 | test: use fixtures module instead of common
PR-URL: https://github.com/nodejs/node/pull/15925
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-https-simple.js",
"patch": "@@ -21,17 +21,17 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const assert = require('assert');\n const https = requ... | 2017-10-06T17:15:52 |
golang/go | b6ad2880323191713a5525bae5eb27d62c1d1c35 | ccc951637be806e6e7a3c2c922bf4746b60e7395 | net/http: avoid setting body when NoBody is set for js/wasm
When http.NoBody is set, it is equivalent to Body being zero bytes.
We therefore set the body only if it is of length greater than 0.
Manually verified with wasmbrowsertest.
Fixes #36339
Change-Id: I9c108c38f99409f72ea101819af572429505a8ad
Reviewed-on: htt... | [
{
"path": "src/net/http/roundtrip_js.go",
"patch": "@@ -98,9 +98,11 @@ func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n \t\t\treturn nil, err\n \t\t}\n \t\treq.Body.Close()\n-\t\tbuf := uint8Array.New(len(body))\n-\t\tjs.CopyBytesToJS(buf, body)\n-\t\topt.Set(\"body\", buf)\n+\t\tif len(bo... | 2020-06-13T05:07:22 |
ollama/ollama | 0871083776a8a158daf0fad4ee39fa251fc6f6a8 | e5b26c3aa2efa7857d258dc1d74b866b4ca4c0e6 | app: fix tray icon color scheme in dark mode | [
{
"path": "app/forge.config.ts",
"patch": "@@ -23,6 +23,10 @@ const config: ForgeConfig = {\n path.join(__dirname, './assets/iconTemplate@2x.png'),\n path.join(__dirname, './assets/iconUpdateTemplate.png'),\n path.join(__dirname, './assets/iconUpdateTemplate@2x.png'),\n+ path.join(__d... | 2023-07-27T20:25:36 |
ggml-org/llama.cpp | 380b4c984e06f8d8381392d15814b3392e39560e | e39a2ce66d0a61915f22097e5453e291618b3518 | common: support negated args (#17919)
* args: support negated args
* update docs
* fix typo
* add more neg options
* Apply suggestions from code review
Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
* rm duplicated arg
* fix LLAMA_ARG_NO_HOST
* add test
---------
Co-authored-by: Sigbjørn Skjæ... | [
{
"path": "common/arg.cpp",
"patch": "@@ -105,6 +105,16 @@ bool common_arg::is_exclude(enum llama_example ex) {\n \n bool common_arg::get_value_from_env(std::string & output) const {\n if (env == nullptr) return false;\n+ if (!args_neg.empty()) {\n+ // for compatibility, we need to check LLAMA... | 2025-12-12T22:58:53 |
huggingface/transformers | 156d30da94cc62f745ad9577655a6633240d3c23 | 6fd93fe93abeb5c66feaead859b57ff6356dc442 | Add warning message for `run_qa.py` (#29867)
* improve: error message for best model metric
* update: raise warning instead of error | [
{
"path": "examples/pytorch/question-answering/run_qa.py",
"patch": "@@ -627,6 +627,14 @@ def post_processing_function(examples, features, predictions, stage=\"eval\"):\n references = [{\"id\": str(ex[\"id\"]), \"answers\": ex[answer_column_name]} for ex in examples]\n return EvalPrediction(... | 2024-03-30T16:02:31 |
rust-lang/rust | 6fc19785f7d4d0b91304a8c90348a2dbfd24d664 | b88076097751f7677b850b94b20faf5679fca321 | fixed by differentiating glob export | [
{
"path": "src/librustdoc/passes/propagate_stability.rs",
"patch": "@@ -39,6 +39,16 @@ impl DocFolder for StabilityPropagator<'_, '_> {\n let item_stability = self.cx.tcx.lookup_stability(def_id);\n let inline_stability =\n item.inline_stmt_id.and_then(|di... | 2025-02-23T16:47:18 |
nodejs/node | 56c0e7d10f32b6a7e6010cf38d164e2fbabe93f7 | e8bf4d5dea8e9ade5237b6b8957fae075c4436b5 | test: replace fixtureDir with fixtures module
This commit replaces the usage of common.fixturesDir with
fixtures.path.
PR-URL: https://github.com/nodejs/node/pull/15823
Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
R... | [
{
"path": "test/parallel/test-http2-respond-file-push.js",
"patch": "@@ -3,9 +3,11 @@\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n+\n+const fixtures = require('../common/fixtures');\n+\n const http2 = require('http2');\n const assert = require('assert'... | 2017-10-06T16:43:20 |
golang/go | c0dded04f7ded5048b44200078a1f723f5e1bcc1 | 69d34e2c6965f70fe1ead3e7e8ab45ada3267ebc | runtime: do not explicitly exit on ctrl handler
The default ctrl+c handler should process exits in situations where it
makes sense, like console apps, but not in situations where it doesn't,
like libraries or services. Therefore, we should remove the exit(2) so
that the default handler is used for this. This also uses... | [
{
"path": "src/runtime/os_windows.go",
"patch": "@@ -1010,11 +1010,6 @@ func ctrlhandler1(_type uint32) uint32 {\n \tif sigsend(s) {\n \t\treturn 1\n \t}\n-\tif !islibrary && !isarchive {\n-\t\t// Only exit the program if we don't have a DLL.\n-\t\t// See https://golang.org/issues/35965.\n-\t\texit(2) // SI... | 2020-07-14T07:41:03 |
ggml-org/llama.cpp | e39a2ce66d0a61915f22097e5453e291618b3518 | a8c7f33d792c7ba8ecb889752f80945373e2ddfc | clip: move model cgraphs into their own files (#17965)
* clip: move model cgraphs into their own files
* more explicit enums
* fix linux build
* fix naming
* missing headers
* nits: add comments for contributors | [
{
"path": "tools/mtmd/CMakeLists.txt",
"patch": "@@ -6,11 +6,25 @@ add_library(mtmd\n mtmd.cpp\n mtmd-audio.cpp\n mtmd.h\n+ mtmd-helper.cpp\n+ mtmd-helper.h\n clip.cpp\n clip.h\n clip-impl.h\n- mtmd-help... | 2025-12-12T20:14:48 |
huggingface/transformers | 6fd93fe93abeb5c66feaead859b57ff6356dc442 | 5ad7f17002f304b1e880fe2333c7deba95d12f4e | Fix rope theta for OpenLlama (#29893)
fix: rope_theta for open llama | [
{
"path": "src/transformers/models/deprecated/open_llama/configuration_open_llama.py",
"patch": "@@ -66,6 +66,8 @@ class OpenLlamaConfig(PretrainedConfig):\n relevant if `config.is_decoder=True`.\n tie_word_embeddings(`bool`, *optional*, defaults to `False`):\n Whether to tie... | 2024-03-30T15:30:52 |
rust-lang/rust | 1a440d56d63458e4491f289c4950396f73304264 | 07697360aee0cebcb4e304236ba1884d8dde5469 | Fix documentation for unstable sort | [
{
"path": "library/core/src/slice/mod.rs",
"patch": "@@ -2928,10 +2928,17 @@ impl<T> [T] {\n /// This sort is unstable (i.e., may reorder equal elements), in-place (i.e., does not\n /// allocate), and *O*(*n* \\* log(*n*)) worst-case.\n ///\n- /// If the implementation of [`Ord`] for `T` does... | 2025-02-23T14:29:53 |
nodejs/node | e8bf4d5dea8e9ade5237b6b8957fae075c4436b5 | 0e1a9fafddd3ba852e2754288799fe4d1be6269f | doc: fix macosx-firewall suggestion BUILDING
Adding back the changes made by commit# 791d560, that suggests running
macosx-firewall.sh script after bulid step. These changes were deleted
by commit# fc102d0, but they are still applicable.
PR-URL: https://github.com/nodejs/node/pull/15829
Reviewed-By: Ryan Graham <r.m.... | [
{
"path": "BUILDING.md",
"patch": "@@ -88,7 +88,7 @@ On macOS you will need to install the `Xcode Command Line Tools` by running\n installed, you can find them under the menu `Xcode -> Open Developer Tool ->\n More Developer Tools...`. This step will install `clang`, `clang++`, and\n `make`.\n-* You may wan... | 2017-10-06T16:45:03 |
ggml-org/llama.cpp | a8c7f33d792c7ba8ecb889752f80945373e2ddfc | b7f5f46e03edbe73abb0784e27faa20efb8a42d5 | ci : change the cann version and the container pull method (#17953)
fix error format
Update build.yml
Remove unnecessary zip files
fix
update | [
{
"path": ".devops/cann.Dockerfile",
"patch": "@@ -4,7 +4,7 @@\n \n # Define the CANN base image for easier version updates later\n ARG CHIP_TYPE=910b\n-ARG CANN_BASE_IMAGE=quay.io/ascend/cann:8.3.rc1.alpha001-${CHIP_TYPE}-openeuler22.03-py3.11\n+ARG CANN_BASE_IMAGE=quay.io/ascend/cann:8.3.rc2-${CHIP_TYPE}-... | 2025-12-12T19:43:00 |
golang/go | 69d34e2c6965f70fe1ead3e7e8ab45ada3267ebc | 948d324f7d8641a042da46c25417ebabd84e5e78 | test: bump array size in fixedbugs/issue39292.go
The previous array length was large enough to exceed
maxImplicitStackSize on 64-bit architectures, but not on 32-bit
architectures.
Fixes #40808.
Change-Id: I69e9abb447454b2e7875ba503a0cb772e965ae31
Reviewed-on: https://go-review.googlesource.com/c/go/+/248680
Run-Try... | [
{
"path": "test/fixedbugs/issue39292.go",
"patch": "@@ -6,7 +6,7 @@\n \n package p\n \n-type t [10000]*int\n+type t [20000]*int\n \n func (t) f() {\n }",
"additions": 1,
"deletions": 1,
"language": "Go"
}
] | 2020-08-15T04:30:04 |
huggingface/transformers | 5ad7f17002f304b1e880fe2333c7deba95d12f4e | 43d17c18360ac9c3d3491389328e2fe55fe8f9ce | Super tiny fix 12 typos about "with with" (#29926)
* with with
* style | [
{
"path": "docs/source/en/model_doc/fastspeech2_conformer.md",
"patch": "@@ -24,7 +24,7 @@ This model was contributed by [Connor Henderson](https://huggingface.co/connor-h\n \n \n ## 🤗 Model Architecture\n-FastSpeech2's general structure with a Mel-spectrogram decoder was implemented, and the traditional t... | 2024-03-29T14:31:31 |
ollama/ollama | dbb3174cbcea9d646ff2b2ba67b4b5e47909cb9b | 31673d26d055cbb9733486b695bd6e7024601caa | app: fix #218 and keep dock open on install | [
{
"path": "app/src/app.tsx",
"patch": "@@ -2,7 +2,7 @@ import { useState } from 'react'\n import copy from 'copy-to-clipboard'\n import { CheckIcon, DocumentDuplicateIcon } from '@heroicons/react/24/outline'\n import Store from 'electron-store'\n-import { getCurrentWindow } from '@electron/remote'\n+import ... | 2023-07-27T14:53:38 |
rust-lang/rust | 4ab9329699392901e7b0f2b3000923a6e15380cb | 8a493b1a303470376275e04f03632423b6f7916f | Include private items in completions for local crates
Don't filter out private items when completing paths in the same crate. Instead respect the `privateEditable` setting.
Fixes #9850 | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/expr.rs",
"patch": "@@ -147,7 +147,10 @@ pub(crate) fn complete_expr_path(\n });\n match resolution {\n hir::PathResolution::Def(hir::ModuleDef::Module(module)) => {\n- let mod... | 2025-02-21T20:01:33 |
nodejs/node | 0e1a9fafddd3ba852e2754288799fe4d1be6269f | b5e8ae4ff8f869ac0b38b44049d992fdbfb21331 | test: replaced fixturesDir with fixtures module
This was an assigned task at Node.js Interactive North America 2017.
This replaced the fixturesDir exported by the common module with
the fixturesDir on the common/fixtures module.
PR-URL: https://github.com/nodejs/node/pull/15881
Reviewed-By: Rich Trott <rtrott@gmail.c... | [
{
"path": "test/parallel/test-http2-respond-file.js",
"patch": "@@ -3,9 +3,9 @@\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n+const fixtures = require('../common/fixtures');\n const http2 = require('http2');\n const assert = require('assert');\n-const p... | 2017-10-06T16:59:12 |
huggingface/transformers | 43d17c18360ac9c3d3491389328e2fe55fe8f9ce | ba56ed0869eb4bbeb1c04af7f62a04350150e8d4 | Mark `test_eager_matches_sdpa_generate` flaky for some models (#29479)
* fix
* revert for qwen2
* revert for qwen2
* update
* update
---------
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com> | [
{
"path": "tests/models/falcon/test_modeling_falcon.py",
"patch": "@@ -27,7 +27,14 @@\n is_torch_available,\n set_seed,\n )\n-from transformers.testing_utils import require_bitsandbytes, require_torch, require_torch_sdpa, slow, torch_device\n+from transformers.testing_utils import (\n+ is_flaky,\... | 2024-03-29T10:51:20 |
golang/go | 82c45eb68187d7827bca392d528dbfa06607e3f0 | 0031fa80a3c6685e44e84533edbae0dad0eb0395 | cmd/compile: handle OCLOSURE/OCALLPART in mustHeapAlloc check
Currently, generated struct wrapper for closure is not handled in
mustHeapAlloc. That causes compiler crashes when the wrapper struct
is too large for stack, and must be heap allocated instead.
Fixes #39292
Change-Id: I14c1e591681d9d92317bb2396d6cf5207aa9... | [
{
"path": "src/cmd/compile/internal/gc/closure.go",
"patch": "@@ -526,7 +526,7 @@ func walkpartialcall(n *Node, init *Nodes) *Node {\n \t// Create closure in the form of a composite literal.\n \t// For x.M with receiver (x) type T, the generated code looks like:\n \t//\n-\t//\tclos = &struct{F uintptr; R T}... | 2020-07-27T05:08:56 |
rust-lang/rust | 1c7b60f8a4595efd1cef016582e6050b3cab9868 | 50f84129e66de867a735ee836339e8ed9dd7425e | add FIXME note on `Builder::compiler_for`
Signed-off-by: onur-ozkan <work@onurozkan.dev> | [
{
"path": "src/bootstrap/src/core/builder/mod.rs",
"patch": "@@ -1262,6 +1262,9 @@ impl<'a> Builder<'a> {\n ),\n ),\n )]\n+\n+ /// FIXME: This function is unnecessary (and dangerous, see <https://github.com/rust-lang/rust/issues/137469>).\n+ /// We already have uplifting logic ... | 2025-02-23T10:54:24 |
ollama/ollama | c48f07f8211bc29057e35378fb3f747afff2f666 | dc642aa07d98aa805a1921648cb1b3f928f45224 | app: dont advance on error | [
{
"path": "app/src/app.tsx",
"patch": "@@ -51,10 +51,15 @@ export default function () {\n <div className='mx-auto'>\n <button\n onClick={async () => {\n- await install()\n- getCurrentWindow().show()\n- g... | 2023-07-26T14:46:43 |
ggml-org/llama.cpp | 482211438dd671224a7f176b7480b4ded424212c | 7bed317f5351eba037c2e0aa3dce617e277be1c4 | CUDA: fix overflow in MMA kernel without stream-k (#17939) | [
{
"path": "ggml/src/ggml-cuda/fattn-common.cuh",
"patch": "@@ -642,8 +642,8 @@ static __global__ void flash_attn_stream_k_fixup(\n const int iter_k = (ne11 + (nbatch_fa - 1)) / nbatch_fa;\n const int iter_j = (ne01 + (ncols1 - 1)) / ncols1;\n \n- const int kbc0 = (bidx0 + 0)*(iter_k*iter_... | 2025-12-12T16:43:58 |
huggingface/transformers | 536ea2aca234fb48c5c69769431d643b0d93b233 | e2036468711868aff3a096330b1552907ff142a7 | [`LlamaSlowConverter`] Slow to Fast better support (#29797)
* fix
* fix test
* style
* nit
* rather rely on concert token to id
* fix quality
* Update src/transformers/convert_slow_tokenizer.py | [
{
"path": "src/transformers/convert_slow_tokenizer.py",
"patch": "@@ -1331,9 +1331,9 @@ class LlamaConverter(SpmConverter):\n \n def vocab(self, proto):\n vocab = [\n- (\"<unk>\", 0.0),\n- (\"<s>\", 0.0),\n- (\"</s>\", 0.0),\n+ (self.original_tokenizer... | 2024-03-28T15:19:32 |
nodejs/node | b5e8ae4ff8f869ac0b38b44049d992fdbfb21331 | 7a8d51c07966caa06fcd664a22709c5348d365d3 | test: use common.fixtures module
Replace common.fixturesDir with usage of the common.fixtures module.
PR-URL: https://github.com/nodejs/node/pull/15891
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-fs-buffer.js",
"patch": "@@ -1,6 +1,7 @@\n 'use strict';\n \n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n const assert = require('assert');\n const fs = require('fs');\n const path = require('path');\n@@ -28,7 +29,7 @@ assert.throws(... | 2017-10-06T16:55:43 |
golang/go | 0031fa80a3c6685e44e84533edbae0dad0eb0395 | 441b52f5660ccde7848f034ba345d2f0088ea383 | cmd/compile: another fix initializing blank fields in struct literal
CL 230121 fixed the bug that struct literal blank fields type array/struct
can not be initialized. But it still misses some cases when an expression
causes "candiscard(value)" return false. When these happen, we recursively
call fixedlit with "var_" ... | [
{
"path": "src/cmd/compile/internal/gc/sinit.go",
"patch": "@@ -506,6 +506,7 @@ const (\n // fixedlit handles struct, array, and slice literals.\n // TODO: expand documentation.\n func fixedlit(ctxt initContext, kind initKind, n *Node, var_ *Node, init *Nodes) {\n+\tisBlank := var_ == nblank\n \tvar splitno... | 2020-05-06T17:35:28 |
ollama/ollama | 3f2a1004656e52715622509e6b0509507dd417a1 | 95397416f3a57085090185b14e8179753c82714a | app: log app errors to `console` | [
{
"path": "app/src/index.ts",
"patch": "@@ -54,12 +54,8 @@ function firstRunWindow() {\n \n // and load the index.html of the app.\n welcomeWindow.loadURL(MAIN_WINDOW_WEBPACK_ENTRY)\n-\n welcomeWindow.on('ready-to-show', () => welcomeWindow.show())\n \n- // for debugging\n- // welcomeWindow.webConte... | 2023-07-25T19:41:56 |
ggml-org/llama.cpp | 7bed317f5351eba037c2e0aa3dce617e277be1c4 | dcb7d17758a95bada4383869c8ce66ca60ac3efc | models : fix the attn_factor for mistral3 graphs + improve consistency (#17945)
* models : fix the attn_factor for mistral3 graphs
* cont : rework attn_factor correction logic
* cont : make deepseek2 consistent
* cont : add TODO
* cont : special-case DSv2
* cont : revert Mistral 3 Large changes
* cont : fix DS2 ... | [
{
"path": "convert_hf_to_gguf.py",
"patch": "@@ -7286,6 +7286,10 @@ def set_gguf_parameters(self):\n self.gguf_writer.add_rope_scaling_type(gguf.RopeScalingType.YARN)\n self.gguf_writer.add_rope_scaling_factor(rope_scaling[\"factor\"])\n self.gguf_writer.add_rope_scaling_... | 2025-12-12T15:12:40 |
huggingface/transformers | e2036468711868aff3a096330b1552907ff142a7 | 2bbbf1be5b80977ec38bccd91225a37255626949 | Fix doc issue #29758 in DebertaV2Config class (#29842)
Fix doc issue in DebertaV2Config class
Co-authored-by: Vinayakk Garg <vigar@akamai.com> | [
{
"path": "src/transformers/models/deberta_v2/configuration_deberta_v2.py",
"patch": "@@ -77,7 +77,7 @@ class DebertaV2Config(PretrainedConfig):\n as `max_position_embeddings`.\n pad_token_id (`int`, *optional*, defaults to 0):\n The value used to pad input_ids.\n- pos... | 2024-03-28T14:49:57 |
nodejs/node | 7a8d51c07966caa06fcd664a22709c5348d365d3 | beb23570dc4bfb6af53cbb95d4b2840857067863 | test: replaced literals in errors with templates
PR-URL: https://github.com/nodejs/node/pull/15911
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "test/parallel/test-buffer-indexof.js",
"patch": "@@ -209,26 +209,26 @@ assert.strictEqual(\n \n // Test single char pattern\n assert.strictEqual(0, twoByteString.indexOf('\\u039a', 0, 'ucs2'));\n- assert.strictEqual(2, twoByteString.indexOf('\\u0391', 0, 'ucs2'),\n- 'Alph... | 2017-10-06T17:06:31 |
golang/go | 5a18e0b58ca2d08f3988018a8759207cb64e651a | 24ff2af65e27eed1e8c7f09c21a5ca68fc2e07ab | sync: fix goroutine leak for when TestMutexFairness times out
If the timeout triggers before writing to the done channel, the
goroutine will be blocked waiting for a corresponding read that’s
no longer existent, thus a goroutine leak. This change fixes that by
using a buffered channel instead.
Change-Id: I9cf4067a58b... | [
{
"path": "src/sync/mutex_test.go",
"patch": "@@ -194,7 +194,7 @@ func TestMutexFairness(t *testing.T) {\n \t\t\t}\n \t\t}\n \t}()\n-\tdone := make(chan bool)\n+\tdone := make(chan bool, 1)\n \tgo func() {\n \t\tfor i := 0; i < 10; i++ {\n \t\t\ttime.Sleep(100 * time.Microsecond)",
"additions": 1,
"... | 2020-07-23T23:27:05 |
rust-lang/rust | db1f0d045887e8046dd542e119b27773991039b6 | bb2cc59a2172d6e35c89b409a4e6b5058d9039d7 | Return error on unexpected termination in `Thread::join`.
There is a time window during which the OS can terminate a thread before stdlib
can retreive its `Packet`. Currently the `Thread::join` panics with no message
in such an event, which makes debugging difficult; fixes #124466. | [
{
"path": "library/std/src/thread/mod.rs",
"patch": "@@ -1739,7 +1739,11 @@ struct JoinInner<'scope, T> {\n impl<'scope, T> JoinInner<'scope, T> {\n fn join(mut self) -> Result<T> {\n self.native.join();\n- Arc::get_mut(&mut self.packet).unwrap().result.get_mut().take().unwrap()\n+ ... | 2025-02-23T11:22:52 |
ggml-org/llama.cpp | dcb7d17758a95bada4383869c8ce66ca60ac3efc | 51604435e8efffb4f2e1991ddd2bbc01774dd0fc | cann : fix ops broken by circular padding guard (#17825) | [
{
"path": "ggml/src/ggml-cann/ggml-cann.cpp",
"patch": "@@ -2548,6 +2548,7 @@ static bool ggml_backend_cann_supports_op(ggml_backend_dev_t dev, const ggml_ten\n case GGML_OP_ARGSORT:\n case GGML_OP_ACC:\n case GGML_OP_GROUP_NORM:\n+ return true;\n case GGML_OP_PAD:... | 2025-12-12T14:49:27 |
huggingface/transformers | 2bbbf1be5b80977ec38bccd91225a37255626949 | 4df5b9b4b23cffee10171654bdc8ed52ffc4f0be | [`BC`] Fix BC for other libraries (#29934)
* fi xbc?
* nit | [
{
"path": "src/transformers/models/cohere/modeling_cohere.py",
"patch": "@@ -1139,7 +1139,7 @@ def prepare_inputs_for_generation(\n # TODO joao: standardize interface for the different Cache classes and remove of this if\n has_static_cache = False\n if past_key_values is None:\n- ... | 2024-03-28T14:13:23 |
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.