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
huggingface/transformers
a14b055b651e47ee93763dee233f2c41efa29c75
485fd814717e23dc90b6d0aac760098c8b521064
Pass datasets trust_remote_code (#31406) * Pass datasets trust_remote_code * Pass trust_remote_code in more tests * Add trust_remote_dataset_code arg to some tests * Revert "Temporarily pin datasets upper version to fix CI" This reverts commit b7672826cad31e30319487af876e608d8af7d37b. * Pass trust_remot...
[ { "path": "examples/flax/_tests_requirements.txt", "patch": "@@ -1,4 +1,4 @@\n-datasets >= 1.13.3,<2.20.0 # Temporary upper version\n+datasets >= 1.13.3\n pytest<8.0.1\n conllu\n nltk", "additions": 1, "deletions": 1, "language": "Plain Text" }, { "path": "examples/flax/image-captioning/...
2024-06-17T16:29:13
golang/go
d1b1145cace8b968307f9311ff611e4bb810710c
75032ad8cfac4aefbacd17b47346ac8c1b5ff33f
syscall: support POSIX semantics for Linux syscalls This change adds two new methods for invoking system calls under Linux: syscall.AllThreadsSyscall() and syscall.AllThreadsSyscall6(). These system call wrappers ensure that all OSThreads mirror a common system call. The wrappers serialize execution of the runtime to...
[ { "path": "misc/cgo/test/cgo_linux_test.go", "patch": "@@ -15,5 +15,6 @@ func TestSetgid(t *testing.T) {\n \t}\n \ttestSetgid(t)\n }\n+func Test1435(t *testing.T) { test1435(t) }\n func Test6997(t *testing.T) { test6997(t) }\n func TestBuildID(t *testing.T) { testBuildID(t) }", "additions": 1, ...
2019-12-10T05:50:16
ollama/ollama
63efa075a0e82688e4fb49fa0bcc081db5f2a5b7
cb03fc9571814edd5af1109bf1a562e813ecb816
update generate scripts with new `LLAMA_CUDA` variable, set `HIP_PLATFORM` to avoid compiler errors (#3528)
[ { "path": "llm/generate/gen_linux.sh", "patch": "@@ -172,7 +172,7 @@ if [ -d \"${CUDA_LIB_DIR}\" ]; then\n # Disabling has minimal performance effect while maintaining compatibility. \n ARM64_DEFS=\"-DLLAMA_AVX=off -DLLAMA_AVX2=off -DLLAMA_AVX512=off -DLLAMA_CUDA_F16=off\"\n fi\n- CMA...
2024-04-07T23:29:51
rust-lang/rust
69aafd21f5abeb202a377f6b632b3204a2a76b9c
b74da9613a8cb5ba67a985f71325be0b7b16c0dd
tests: fix some typos in comment Signed-off-by: tcpdumppy <847462026@qq.com>
[ { "path": "tests/ui/lint/dead-code/allow-or-expect-dead_code-114557-2.rs", "patch": "@@ -1,10 +1,10 @@\n //@ check-pass\n \n-// this test checks that the `dead_code` lint is *NOT* being emited\n+// this test checks that the `dead_code` lint is *NOT* being emitted\n // for `foo` as `foo` is being used by `ma...
2025-03-07T02:50:31
ggml-org/llama.cpp
4a748b8f15d7e6749145add3f038e7b26c686ed8
f2ab047f275780987ac028f7368cdad32863a36f
common : fix --n-cpu-moe, --cpu-moe for models with fused gate + up (#20416)
[ { "path": "common/common.h", "patch": "@@ -926,7 +926,7 @@ const char * const LLM_KV_SPLIT_TENSORS_COUNT = \"split.tensors.count\";\n // MoE utils\n //\n \n-const char * const LLM_FFN_EXPS_REGEX = \"\\\\.ffn_(up|down|gate)_(ch|)exps\";\n+const char * const LLM_FFN_EXPS_REGEX = \"\\\\.ffn_(up|down|gate|gate_...
2026-03-11T23:13:28
nodejs/node
c2d63a9785426d4c37e3eec8c3de1dfad741c3d4
8215c671d3df73f863cf4621ee738921ede54180
tools: fix inspector-check reporting Currently the inspector-check rule does not store the node when the usage of a require('inspector') is done. This means that it is not possible to disable this rule. For example, if you add the following to a test that uses the inspector module: //common.skipIfInspectorDisabled(); ...
[ { "path": "tools/eslint-rules/inspector-check.js", "patch": "@@ -14,12 +14,12 @@ const msg = 'Please add a skipIfInspectorDisabled() call to allow this ' +\n 'test to be skippped when Node is built \\'--without-inspector\\'.';\n \n module.exports = function(context) {\n- var usesInspector = fal...
2017-10-23T09:28:47
huggingface/transformers
9454f437b0ba87e29cae9706cee6be6bb88d28d6
7977f206dc9eb0b609d2d1726650dc180621766a
[tests] make `TestDeepSpeedModelZoo` device-agnostic (#31402) * fix * use accelerator device count * ci fix
[ { "path": "src/transformers/testing_utils.py", "patch": "@@ -2432,6 +2432,10 @@ def _device_agnostic_dispatch(device: str, dispatch_table: Dict[str, Callable],\n BACKEND_MANUAL_SEED = {\"cuda\": torch.cuda.manual_seed, \"cpu\": torch.manual_seed, \"default\": torch.manual_seed}\n BACKEND_EMPTY_CACHE...
2024-06-17T14:42:57
golang/go
f8376a55b06304bd24612d10812cf8ada29a5c84
3931cc113f3f3e7d484842d6e4f53b7a78311e8e
sync: document that Once must not be copied Fixes #42160. Change-Id: I9bf8b6f0bf1eccd3ab32cbd94c812f768746d291 Reviewed-on: https://go-review.googlesource.com/c/go/+/264557 Trust: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewe...
[ { "path": "src/sync/once.go", "patch": "@@ -9,6 +9,8 @@ import (\n )\n \n // Once is an object that will perform exactly one action.\n+//\n+// A Once must not be copied after first use.\n type Once struct {\n \t// done indicates whether the action has been performed.\n \t// It is first in the struct because...
2020-10-23T03:46:19
ollama/ollama
cb03fc9571814edd5af1109bf1a562e813ecb816
a5ec9cfc0f5b49ff0496edc5e6b4ed8ab503e14a
Docs: Remove wrong parameter for Chat Completion (#3515) Fixes gh-3514 Signed-off-by: Thomas Vitale <ThomasVitale@users.noreply.github.com>
[ { "path": "docs/api.md", "patch": "@@ -394,7 +394,6 @@ Advanced parameters (optional):\n \n - `format`: the format to return a response in. Currently the only accepted value is `json`\n - `options`: additional model parameters listed in the documentation for the [Modelfile](./modelfile.md#valid-parameters-a...
2024-04-06T16:08:35
huggingface/transformers
377e90392804790d76d818264d39c694a71e07e0
02c525d2266ae53f73dd857de6a14d73a8aacd66
Generate: fix `tokenizer` being popped twice (#31427)
[ { "path": "src/transformers/generation/utils.py", "patch": "@@ -1640,8 +1640,6 @@ def generate(\n else:\n synced_gpus = False\n \n- tokenizer = kwargs.pop(\"tokenizer\", None)\n-\n logits_processor = logits_processor if logits_processor is not None else LogitsProce...
2024-06-17T09:36:10
nodejs/node
e22b8d0c46728ebdaf64176191ffa2bdd0f56be9
e0113ab5e0e2b329668fa7d744fac3bfe8b95935
lib: improve the usage of TypeError[INVALID_ARG_TYPE] The initials of expected in TypeError[ERR_INVALID_ARG_TYPE] are inconsistent. This change is to unify them. PR-URL: https://github.com/nodejs/node/pull/16401 Fixes: https://github.com/nodejs/node/issues/16383 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewe...
[ { "path": "lib/_http_client.js", "patch": "@@ -105,7 +105,7 @@ function ClientRequest(options, cb) {\n // when createConnection is provided.\n } else if (typeof agent.addRequest !== 'function') {\n throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'Agent option',\n- ...
2017-10-28T09:39:55
ggml-org/llama.cpp
d28961d81e73e32b295d0ad638f3ff14676aeeda
f90bd1dd84b59d75ab7d442228b67ec9a797577c
llama : enable chunked fused GDN path (#20340) * llama : enable chunked fused GDN path * models : avoid Q and K repeats when using fused GDA * cont : fix comment Co-authored-by: Aman Gupta <amangupta052@gmail.com> * cont : fix the fix Co-authored-by: Aman Gupta <amangupta052@gmail.com> * cont : fix * metal : ad...
[ { "path": "ggml/include/ggml.h", "patch": "@@ -2466,6 +2466,8 @@ extern \"C\" {\n bool lower,\n bool uni);\n \n+ // TODO: add ggml_gated_delta_net_set_bcast() to be able to configure Q, K broadcast type: tiled vs interleaved [TAG_GGML_GDN_BCAST]\n+ // ...
2026-03-11T20:46:40
rust-lang/rust
726c8d4c57f31a4ff6e37d73224fc37bdd2830b9
1d7cd1e0039d7bf6be6b41d63f3dbd0954c14c01
Fix tier 2 sysroots job
[ { "path": "src/tools/miri/.github/workflows/sysroots.yml", "patch": "@@ -16,6 +16,7 @@ jobs:\n - uses: actions/checkout@v4\n - name: Build the sysroots\n run: |\n+ rustup toolchain install nightly\n cargo install -f rustup-toolchain-install-master\n ./miri to...
2025-03-05T01:21:37
huggingface/transformers
7ae4fc271d2f0f3cc950b74cdbd9f2af810bea52
9af1b6a80adbac906ba770d23ddf95a147f2f0a0
Fix Bark logits processors device misplacement (#31416) Fix Logits Processors device misplacement
[ { "path": "src/transformers/models/bark/modeling_bark.py", "patch": "@@ -991,11 +991,11 @@ def generate(\n list(range(semantic_generation_config.semantic_pad_token + 1, self.config.output_vocab_size))\n )\n \n- suppress_tokens_logits_processor = SuppressTokensLogitsProcessor(token...
2024-06-17T07:54:06
golang/go
c3fe874f25ff55f73e4422bea7aa0b0e0e268f3e
ad642727247383079c8546ca365172859641a800
cmd/compile: avoid generating CSEs; do all aggregates; maintain debug names This adds a pass to detect common selection operations, to avoid generating duplicates. Duplicate offsets are also detected. All aggregate types are now handled; there is some freedom in where expand_calls is run, though it must run before s...
[ { "path": "src/cmd/compile/fmtmap_test.go", "patch": "@@ -136,6 +136,7 @@ var knownFormats = map[string]string{\n \t\"cmd/compile/internal/types.EType %s\": \"\",\n \t\"cmd/compile/internal/types.EType %v\": \"\",\n \t\"cmd/internal/obj.ABI %v\": \"\",\n+\t\"c...
2020-08-17T20:57:22
nodejs/node
5f398b3e51286780cee10da3497752ca9a7f4609
2cedff9c32e6260dbb655c8cf7104380f9bb2ef2
test: use common/fixtures module in hash-seed test Replace `common.fixturesDir` with `fixtures.path()` usage in test/pummel/test-hash-seed.js. PR-URL: https://github.com/nodejs/node/pull/16823 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snel...
[ { "path": "test/pummel/test-hash-seed.js", "patch": "@@ -1,20 +1,20 @@\n 'use strict';\n \n+// Check that spawn child doesn't create duplicated entries\n+require('../common');\n const REPETITIONS = 2;\n-\n const assert = require('assert');\n-const common = require('../common');\n-const cp = require('child_p...
2017-11-06T15:13:30
ggml-org/llama.cpp
5eae9cb1d9ecf0bbe031352da61b8b22a3e10bbb
3ca19b0e9f3f4f444d22c9f509805d037a611847
ggml : add NVFP4 quantization type support (#19769) * WIP: add NVFP4 quantization support * tests * improve NVFP4 dot product implementation performance and fix bad super call * typo * Use nvfp4 kvalues * vulkan : fix NVFP4 shader compilation by including kvalues_mxfp4 lookup table * vulcal and perf fixes * wip...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -144,6 +144,7 @@ def __init__(self, dir_model: Path, ftype: gguf.LlamaFileType, fname_out: Path,\n self.metadata_override = metadata_override\n self.model_name = model_name\n self.dir_model_card = dir_model # overridden in convert_lora...
2026-03-11T20:02:54
huggingface/transformers
9af1b6a80adbac906ba770d23ddf95a147f2f0a0
eed9ed679878ada2f6d2eefccdbda368cabc88b1
Musicgen special tokens in tensors (#31420) fix
[ { "path": "src/transformers/models/musicgen/modeling_musicgen.py", "patch": "@@ -1666,6 +1666,8 @@ def generate(\n inputs, generation_config.bos_token_id, model_kwargs\n )\n batch_size = input_ids.shape[0] // self.num_codebooks\n+ kwargs_has_attention_mask = model_kwargs.g...
2024-06-17T05:09:27
golang/go
ad642727247383079c8546ca365172859641a800
e5ad73508e5ab5cadfba25e25d6cc3b025865e29
runtime: rename pageAlloc receiver The history of pageAlloc using 's' as a receiver are lost to the depths of time (perhaps it used to be called summary?), but it doesn't make much sense anymore. Rename it to 'p'. Generated with: $ cd src/runtime $ grep -R -b "func (s \*pageAlloc" . | awk -F : '{ print $1 ":#" $2+6 ...
[ { "path": "src/runtime/mgcscavenge.go", "patch": "@@ -390,31 +390,31 @@ func bgscavenge(c chan int) {\n //\n // Returns the amount of memory scavenged in bytes.\n //\n-// s.mheapLock must be held, but may be temporarily released if\n+// p.mheapLock must be held, but may be temporarily released if\n // mayUn...
2020-08-25T16:34:02
ggml-org/llama.cpp
76ea1c1c46be0e824ca76545b0d75a15e0e275d4
bd1ec818e9f1a2ac8488ed7d6c925fd7e28bf9b4
metal : fix capture_compute counter logic (#20410)
[ { "path": "ggml/src/ggml-metal/ggml-metal-context.m", "patch": "@@ -465,7 +465,7 @@ enum ggml_status ggml_metal_graph_compute(ggml_metal_t ctx, struct ggml_cgraph *\n \n ctx->n_nodes_per_cb = (ctx->n_nodes_1 + ctx->n_cb - 1) / ctx->n_cb;\n \n- if (ctx->capture_compute > 0) {\n+ if (ctx...
2026-03-11T16:38:22
nodejs/node
a645d45dd500f5b73efb1e940ffafadcf61f3628
a5a122054f8bc35fbe837d9bc360bbfef76af7be
test: make test-tls-external-accessor agnostic Remove reliance on V8-specific error messages in test/parallel/test-tls-external-accessor.js. Check that the error is a `TypeError`. The test should now be successful without modification using ChakraCore. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: ...
[ { "path": "test/parallel/test-tls-external-accessor.js", "patch": "@@ -11,12 +11,12 @@ const tls = require('tls');\n {\n const pctx = tls.createSecureContext().context;\n const cctx = Object.create(pctx);\n- assert.throws(() => cctx._external, /incompatible receiver/);\n+ assert.throws(() => cctx._ext...
2017-10-17T23:59:30
huggingface/transformers
eed9ed679878ada2f6d2eefccdbda368cabc88b1
20812237ce9bdd3f0298c51a6a881977f458b74e
xpu: support xpu backend from stock pytorch (>=2.4) (#31238) * xpu: support xpu backend from stock pytorch (>=2.4) Fixes: https://github.com/huggingface/transformers/issues/31237 XPU backend is available in the stock PyTorch starting from version 2.4, see [1]. This commit extends huggingface transformers to su...
[ { "path": "src/transformers/models/decision_transformer/modeling_decision_transformer.py", "patch": "@@ -22,7 +22,6 @@\n import torch\n import torch.utils.checkpoint\n from torch import nn\n-from torch.cuda.amp import autocast\n \n from ...activations import ACT2FN\n from ...modeling_outputs import BaseMode...
2024-06-14T19:31:35
ollama/ollama
4de0126719596f54a93d866df802c0b3c6d0b2b8
9768e2dc7574c36608bb04ac39a3b79e639a837f
fix dll compress in windows building
[ { "path": "llm/generate/gen_windows.ps1", "patch": "@@ -146,7 +146,7 @@ function compress {\n }\n \n write-host \"Compressing dlls...\"\n- $binaries = dir \"${script:buildDir}/bin/*.dll\"\n+ $dlls = dir \"${script:buildDir}/bin/*.dll\"\n foreach ($file in $dlls) {\n & \"$script:GZI...
2024-04-04T13:27:33
ggml-org/llama.cpp
b541241104e5345b89fde6a79e97c9ff11f9a84f
c363256839fdffae184279ad8e5f0f3775c48b77
metal : fix q5_k mul_mv register spill (#20399)
[ { "path": "ggml/src/ggml-metal/ggml-metal-impl.h", "patch": "@@ -35,7 +35,7 @@\n #define N_R0_Q4_K 2\n #define N_SG_Q4_K 2\n \n-#define N_R0_Q5_K 2\n+#define N_R0_Q5_K 1\n #define N_SG_Q5_K 2\n \n #define N_R0_Q6_K 2", "additions": 1, "deletions": 1, "language": "C/C++ Header" } ]
2026-03-11T14:25:27
rust-lang/rust
4e6407ab947314480f3b978a20f9b0685ad59f78
2f48fcec63245de13d3017c392ee792ea7f44007
Give a better error message on async use in edition 2015
[ { "path": "compiler/rustc_parse/messages.ftl", "patch": "@@ -26,6 +26,8 @@ parse_async_move_block_in_2015 = `async move` blocks are only allowed in Rust 20\n parse_async_move_order_incorrect = the order of `move` and `async` is incorrect\n .suggestion = try switching the order\n \n+parse_async_use_block...
2025-02-21T20:24:46
nodejs/node
a5a122054f8bc35fbe837d9bc360bbfef76af7be
ad4c9b3a1e923749f5fbaf178ead1e80aba62116
test: make test-require-json engine agnostic Remove reliance on V8-specific error message in test-require-json. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Revie...
[ { "path": "test/parallel/test-require-json.js", "patch": "@@ -28,7 +28,6 @@ try {\n require(fixtures.path('invalid.json'));\n } catch (err) {\n assert.ok(\n- /test[/\\\\]fixtures[/\\\\]invalid\\.json: Unexpected string/.test(err.message),\n- `require() json error should include path - currently: $...
2017-10-17T23:56:48
huggingface/transformers
7e1c7dc8b6989d96e7c35781bccb09468b49fc5e
d9daeff2978eda167c7256b2c928941f2248bfbe
Fix SpeechT5 `decoder_attention_mask` shape (#28071) * Fix SpeechT5 * add test foward with labels and attention mask * make style
[ { "path": "src/transformers/models/speecht5/modeling_speecht5.py", "patch": "@@ -64,21 +64,25 @@ def shift_tokens_right(input_ids: torch.Tensor, pad_token_id: int, decoder_start\n return shifted_input_ids\n \n \n-def shift_spectrograms_right(input_values: torch.Tensor, reduction_factor: int = 1):\n+def ...
2024-06-14T13:20:11
ggml-org/llama.cpp
ecac98ee5327d480b25ac79aa11e984ab257579b
182acfe5c5eb17a4f82d9181fa7bd91510e3b93d
[SYCL] Update SYCL.md for binary package for Windows (#20401) * add download binary package * update prefix
[ { "path": "docs/backend/SYCL.md", "patch": "@@ -382,17 +382,27 @@ use 1 SYCL GPUs: [0] with Max compute units:512\n \n ## Windows\n \n-### I. Setup Environment\n-\n-1. Install GPU driver\n+### Install GPU driver\n \n Intel GPU drivers instructions guide and download page can be found here: [Get Intel GPU Dr...
2026-03-11T14:21:22
rust-lang/rust
2f48fcec63245de13d3017c392ee792ea7f44007
b43b700250066fdd34673ee13e1a51824b18218e
Change feature flag error to be ergonomic clones are experimental
[ { "path": "compiler/rustc_ast_passes/src/feature_gate.rs", "patch": "@@ -489,7 +489,7 @@ pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {\n gate_all!(dyn_star, \"`dyn*` trait objects are experimental\");\n gate_all!(const_closures, \"const closures are experimental\");\n...
2025-02-21T20:08:46
huggingface/transformers
43ee58588be4dc754c9f0dea874437fe7201bf00
833fc17a3e3f0dcb40cff2ffd86c00ad9ecadab9
Fix MusicGen SDPA (#31208) * fix sdpa musicgen * make style * remove copied from statement from Musicgen SDPA
[ { "path": "src/transformers/models/musicgen/modeling_musicgen.py", "patch": "@@ -545,7 +545,6 @@ def _upad_input(self, query_layer, key_layer, value_layer, attention_mask, query\n )\n \n \n-# Copied from transformers.models.bart.modeling_bart.BartSdpaAttention with Bart->Musicgen\n class MusicgenSdp...
2024-06-14T11:30:44
nodejs/node
ad4c9b3a1e923749f5fbaf178ead1e80aba62116
c68e35258ca13bcb61082dfe01e01109c937f087
test: make test-repl engine agnostic Remove reliance on V8-specific error messages in test-repl. Test should pass whether V8 is the engine, or V8 changes error message strings, or ChakraCore is the engine, or some other valid JavaScript engine is used in the future. PR-URL: https://github.com/nodejs/node/pull/16272 R...
[ { "path": "test/parallel/test-repl.js", "patch": "@@ -72,7 +72,7 @@ function clean_up() {\n function strict_mode_error_test() {\n send_expect([\n { client: client_unix, send: 'ref = 1',\n- expect: /^ReferenceError:\\sref\\sis\\snot\\sdefined\\nnode via Unix socket> $/ },\n+ expect: /^Referen...
2017-10-17T23:51:40
ggml-org/llama.cpp
9ef7523ee99e13fe57a3da5cd600c206ed997630
00de615345c9d3ead161c15bf0cc313e46f4def6
cuda/hip: fix loop unrolling in ssm-conv (#20369)
[ { "path": "ggml/src/ggml-cuda/ssm-conv.cu", "patch": "@@ -76,14 +76,17 @@ static __global__ void ssm_conv_long_token_f32(const float * __restrict__ src0,\n int row = tid / load_cols;\n int col = tid % load_cols;\n #pragma unroll\n- for (int idx = tid; idx < total_elems; idx += split_d_inner) {\n+...
2026-03-11T05:04:32
ollama/ollama
08600d5bec85b7fc74cb8a166d0365fc83360087
a624e672d2b6cbd6b21a80b765789749267853fe
CI subprocess path fix
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -99,7 +99,7 @@ jobs:\n - uses: actions/upload-artifact@v4\n with:\n name: generate-windows-cpu\n- path: llm/build/**/lib/*\n+ path: llm/build/**/bin/*\n \n # ROCm generation step\n generate-windows-rocm:\n...
2024-04-04T02:12:53
rust-lang/rust
ebd63721cbdff20f235d8d773c1d99f9c3e74f2b
a28a422eb463a584517768607b1595799896f1e6
Fix rustfmt
[ { "path": "src/expr.rs", "patch": "@@ -137,6 +137,10 @@ pub(crate) fn format_expr(\n ast::ExprKind::Tup(ref items) => {\n rewrite_tuple(context, items.iter(), expr.span, shape, items.len() == 1)\n }\n+ ast::ExprKind::Use(_, _) => {\n+ // FIXME: properly implemen...
2024-12-27T04:43:49
nodejs/node
c68e35258ca13bcb61082dfe01e01109c937f087
9ae841664579e9bd78b8d98b2a55b80d390916f5
test: make test-repl-syntax-error-stack agnostic Revise test so that it does not depend on behavior specific to V8. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> R...
[ { "path": "test/parallel/test-repl-syntax-error-stack.js", "patch": "@@ -11,7 +11,12 @@ process.on('exit', () => {\n });\n \n common.ArrayStream.prototype.write = function(output) {\n- if (/var foo bar;/.test(output))\n+ // Matching only on a minimal piece of the stack because the string will vary\n+ // ...
2017-10-17T23:39:07
ggml-org/llama.cpp
00de615345c9d3ead161c15bf0cc313e46f4def6
e1a399992be282e1213de5e044ba5f0788b446cd
Fix agentic mcp image single model (#20339) * webui: fix MCP image attachments dropped during the agentic loop in single-model mode * chore: update webui build output
[ { "path": "tools/server/webui/src/lib/stores/agentic.svelte.ts", "patch": "@@ -318,6 +318,12 @@ class AgenticStore {\n \t\tconst maxTurns = agenticConfig.maxTurns;\n \t\tconst maxToolPreviewLines = agenticConfig.maxToolPreviewLines;\n \n+\t\t// Resolve effective model for vision capability checks.\n+\t\t// ...
2026-03-11T04:31:33
huggingface/transformers
b7672826cad31e30319487af876e608d8af7d37b
67a4ef89d4ddbfd7d61e479359a1b609e5ee9843
Temporarily pin datasets upper version to fix CI (#31407) Temporarily pin datasets upper version
[ { "path": "setup.py", "patch": "@@ -102,7 +102,7 @@\n \"codecarbon==1.2.0\",\n \"cookiecutter==1.7.3\",\n \"dataclasses\",\n- \"datasets!=2.5.0\",\n+ \"datasets!=2.5.0,<2.20.0\", # Temporary upper version\n \"decord==0.6.0\",\n \"deepspeed>=0.9.3\",\n \"diffusers\",", "add...
2024-06-13T17:01:18
golang/go
7e25bdba5e79d223566745fca2410f725a6dedda
4f597abe77338588011a5b91ffefb0f7e11aa868
cmd/link: use xcode strip for macho combine dwarf The GNU strip will shrink text section while xcodetool strip don't. We have to use xcodetool strip from system explicitly. Fixes #41967 Change-Id: Ida372869e0ebc9e93f883640b1614836cea3672f Reviewed-on: https://go-review.googlesource.com/c/go/+/262398 Run-TryBot: Cher...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -1614,12 +1614,12 @@ func (ctxt *Link) hostlink() {\n \n \tif combineDwarf {\n \t\tdsym := filepath.Join(*flagTmpdir, \"go.dwarf\")\n-\t\tif out, err := exec.Command(\"dsymutil\", \"-f\", *flagOutfile, \"-o\", dsym).CombinedOutput(); err != nil {\n+\...
2020-10-16T01:19:00
rust-lang/rust
292aa8704957f0c0a94cc0cb01c74267d2bdfe27
7c17bf8e824aefcc4272168f1cbda21c1683dcbe
Fix use closure parsing error message
[ { "path": "compiler/rustc_parse/src/parser/item.rs", "patch": "@@ -209,9 +209,7 @@ impl<'a> Parser<'a> {\n let check_pub = def == &Defaultness::Final;\n let mut def_ = || mem::replace(def, Defaultness::Final);\n \n- let info = if !self.look_ahead(1, |t| [token::OrOr, token::Or].contai...
2025-02-11T14:13:33
nodejs/node
9ae841664579e9bd78b8d98b2a55b80d390916f5
0efb6db3900b0240ba585f9593a81142edee2c6d
test: make test-repl-harmony engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refac...
[ { "path": "test/parallel/test-repl-harmony.js", "patch": "@@ -28,7 +28,9 @@ const args = ['-i'];\n const child = spawn(process.execPath, args);\n \n const input = '(function(){\"use strict\"; const y=1;y=2})()\\n';\n-const expectOut = /^> TypeError: Assignment to constant variable\\.\\n/;\n+// This message ...
2017-10-17T23:29:32
huggingface/transformers
c624d5ba0b41542eb3daa0e2fdc985231551d776
15b3923d656cf3e1a0c20d3ddc356eb89a703ce0
add initial design for uniform processors + align model (#31197) * add initial design for uniform processors + align model * fix mutable default :eyes: * add configuration test * handle structured kwargs w defaults + add test * protect torch-specific test * fix style * fix * fix assertEqual * m...
[ { "path": "src/transformers/image_utils.py", "patch": "@@ -81,7 +81,16 @@\n ] # noqa\n \n \n-VideoInput = Union[np.ndarray, \"torch.Tensor\", List[np.ndarray], List[\"torch.Tensor\"]] # noqa\n+VideoInput = Union[\n+ List[\"PIL.Image.Image\"],\n+ \"np.ndarray\",\n+ \"torch.Tensor\",\n+ List[\"n...
2024-06-13T14:27:16
ollama/ollama
e4a7e5b2cad59a5a0df6cd6c3d008be7c779dcb0
a0a15cfd5b37611d25ee5a4bf5333d96ad6018bd
Fix CI release glitches The subprocess change moved the build directory arm64 builds weren't setting cross-compilation flags when building on x86
[ { "path": ".github/workflows/release.yaml", "patch": "@@ -99,7 +99,7 @@ jobs:\n - uses: actions/upload-artifact@v4\n with:\n name: generate-windows-cpu\n- path: llm/llama.cpp/build/**/lib/*\n+ path: llm/build/**/lib/*\n \n # ROCm generation step\n generate-windo...
2024-04-03T23:41:40
rust-lang/rust
8c456cbf5fe7c1d9e574a50dead0f26e890fe07c
60b64701041a87e81fa56d4cab312d353dfd977b
Fix rustfmt
[ { "path": "src/tools/rustfmt/src/expr.rs", "patch": "@@ -137,6 +137,10 @@ pub(crate) fn format_expr(\n ast::ExprKind::Tup(ref items) => {\n rewrite_tuple(context, items.iter(), expr.span, shape, items.len() == 1)\n }\n+ ast::ExprKind::Use(_, _) => {\n+ // FIXME:...
2024-12-27T04:43:49
ggml-org/llama.cpp
0cec84f99945738c61e3899a87c4c0fa46b8b6de
b2e1427c9b78a937ff2907ae3f2d998512f29c02
fix op rope, add rope_back (#20293)
[ { "path": "docs/ops.md", "patch": "@@ -23,15 +23,15 @@ Legend:\n | ARGMAX | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ |\n | ARGSORT | ❌ | ✅ | ✅ | ✅ | ✅ | 🟡 | 🟡 | ✅ | ✅ | ❌ | ❌ |\n | CEIL | ❌ | ❌ | ✅ | 🟡 | ❌ | ❌ | ✅ | 🟡 | ✅ | ...
2026-03-11T01:53:34
golang/go
b5ddc42b465dd5b9532ee336d98343d81a6d35b2
4a2cc73f8789e3df43c1c96944c90f55757a23b0
io/fs, path, path/filepath, testing/fstest: validate patterns in Match, Glob According to #28614, proposal review agreed in December 2018 that Match should return an error for failed matches where the unmatched part of the pattern has a syntax error. (The failed match has to date caused the scan of the pattern to stop...
[ { "path": "src/io/fs/glob.go", "patch": "@@ -36,6 +36,10 @@ func Glob(fsys FS, pattern string) (matches []string, err error) {\n \t\treturn fsys.Glob(pattern)\n \t}\n \n+\t// Check pattern is well-formed.\n+\tif _, err := path.Match(pattern, \"\"); err != nil {\n+\t\treturn nil, err\n+\t}\n \tif !hasMeta(pa...
2020-10-22T16:11:29
huggingface/transformers
15b3923d656cf3e1a0c20d3ddc356eb89a703ce0
3c4a8dca0cfe25c3f5036c6ff5f2e78358a65325
Make chat templates part of ProcessorMixin (#30744) * Let's try moving chat templates out of IDEFICS and into the generic ProcessorMixin * Chat templates should not be mandatory * Chat templates should not be mandatory * Not all classes will have default chat templates * stash commit * Add chat template...
[ { "path": "src/transformers/models/idefics2/processing_idefics2.py", "patch": "@@ -16,7 +16,7 @@\n Processor class for IDEFICS2.\n \"\"\"\n \n-from typing import TYPE_CHECKING, Dict, List, Optional, Union\n+from typing import TYPE_CHECKING, List, Optional, Union\n \n from ...feature_extraction_utils import ...
2024-06-13T13:35:30
nodejs/node
0efb6db3900b0240ba585f9593a81142edee2c6d
809da849f2fb84bdc96c4381ed1ee7f58c33f6a2
test: make test-querystring-escape engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann ...
[ { "path": "test/parallel/test-querystring-escape.js", "patch": "@@ -28,12 +28,14 @@ assert.strictEqual(\n 'test'\n );\n \n-// toString is not callable, must throw an error\n-assert.throws(() => qs.escape({ toString: 5 }),\n- /^TypeError: Cannot convert object to primitive value$/);\n+// `toSt...
2017-10-17T23:25:33
ggml-org/llama.cpp
b2e1427c9b78a937ff2907ae3f2d998512f29c02
4d99d45084f33574e5924ad8457344bfa36788b9
fix for failed UT case: ACC, L2_NORM, UPSCALE, fused_glu, unary (#20283)
[ { "path": "ggml/src/ggml-sycl/common.hpp", "patch": "@@ -874,4 +874,95 @@ static bool fast_fp16_available(const int cc) {\n return true; //Intel GPUs always support FP16.\n }\n \n+enum class block_reduce_method {\n+ MAX,\n+ SUM,\n+};\n+\n+template<block_reduce_method method_t, typename T, int wa...
2026-03-11T01:53:05
ollama/ollama
cd135317d24cc8f48a883b6f9c025fc60870a13b
4f895d633f7bab3e1b655f05c24f24c9472a5e85
Fix macOS builds on older SDKs (#3467)
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -64,10 +64,10 @@ jobs:\n echo $env:PATH\n go generate -x ./...\n if: ${{ startsWith(matrix.os, 'windows-') }}\n- name: \"Windows Go Generate\"\n+ name: 'Windows Go Generate'\n - run: go generate -x ./...\n ...
2024-04-03T17:45:54
golang/go
6f7b553c82b69b47becbe36d9115971d30fdab48
4ce9ea52c9ac48f85fba1233b6e7d563f89dff8b
cmd/cgo: avoid exporting all symbols on windows buildmode=c-shared Disable default symbol auto-export behaviour by marking exported function with the __declspec(dllexport) attribute. Old behaviour can still be used by setting -extldflags=-Wl,--export-all-symbols. See https://sourceware.org/binutils/docs/ld/WIN32.html...
[ { "path": "misc/cgo/testcshared/cshared_test.go", "patch": "@@ -7,6 +7,8 @@ package cshared_test\n import (\n \t\"bytes\"\n \t\"debug/elf\"\n+\t\"debug/pe\"\n+\t\"encoding/binary\"\n \t\"flag\"\n \t\"fmt\"\n \t\"io/ioutil\"\n@@ -355,6 +357,100 @@ func TestExportedSymbols(t *testing.T) {\n \t}\n }\n \n+func ...
2020-10-15T21:12:49
huggingface/transformers
3c4a8dca0cfe25c3f5036c6ff5f2e78358a65325
348e2294ac1a3cc744a93f04ab1f886439ee90d3
[QoL fix] [Image processing] Add warning on assumption of channel dim and avoid infering when inputs are PIL.Image (#31364) * Add warning on assumption of channel dim Use PIL info whenever possible to decide channel axis * Fix ruff format * Remove type checking Improve warning message * Update src/transform...
[ { "path": "src/transformers/image_utils.py", "patch": "@@ -234,7 +234,12 @@ def infer_channel_dimension_format(\n else:\n raise ValueError(f\"Unsupported number of image dimensions: {image.ndim}\")\n \n- if image.shape[first_dim] in num_channels:\n+ if image.shape[first_dim] in num_channel...
2024-06-13T09:34:58
rust-lang/rust
d52ac1b6d8cd56f72c9466e18c745c21b5424085
1f0d0571c556f9b9fb90b093a897cc1fec1157f6
Fix clippy
[ { "path": "clippy_lints/src/escape.rs", "patch": "@@ -150,6 +150,8 @@ impl<'tcx> Delegate<'tcx> for EscapeDelegate<'_, 'tcx> {\n }\n }\n \n+ fn use_cloned(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId) {}\n+\n fn borrow(&mut self, cmt: &PlaceWithHirId<'tcx>, _: HirId, _: ty::BorrowKind) {...
2024-12-26T21:15:50
ggml-org/llama.cpp
4d99d45084f33574e5924ad8457344bfa36788b9
10e5b148b061569aaee8ae0cf72a703129df0eab
model : qwen3vl reranker text support (#20332) * model : fix qwen3vl reranker support * Remove CLS_OUT Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> --------- Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -4390,15 +4390,31 @@ def __init__(self, *args, **kwargs):\n hparams = ModelBase.load_hparams(self.dir_model, is_mistral_format=False)\n self.origin_hf_arch = hparams.get('architectures', [None])[0]\n \n- # a bit hacky, but currently the ...
2026-03-10T22:40:14
nodejs/node
809da849f2fb84bdc96c4381ed1ee7f58c33f6a2
97439e61f874dca3901903741ca66a11ee255e92
test: make test-process-env-symbols agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refac...
[ { "path": "test/parallel/test-process-env-symbols.js", "patch": "@@ -3,20 +3,23 @@ require('../common');\n \n const assert = require('assert');\n const symbol = Symbol('sym');\n-const errRegExp = /^TypeError: Cannot convert a Symbol value to a string$/;\n \n // Verify that getting via a symbol key returns u...
2017-10-17T23:22:22
ollama/ollama
7d05a6ee8f44b314fa697a427439e5fa4d78c3d7
464d8178242db7b304c543afdcca2fced7608fb2
cmd: provide feedback if OLLAMA_MODELS is set on non-serve command (#3470) This also moves the checkServerHeartbeat call out of the "RunE" Cobra stuff (that's the only word I have for that) to on-site where it's after the check for OLLAMA_MODELS, which allows the helpful error message to be printed before the serve...
[ { "path": "cmd/cmd.go", "patch": "@@ -226,6 +226,14 @@ func createBlob(cmd *cobra.Command, client *api.Client, path string) (string, er\n }\n \n func RunHandler(cmd *cobra.Command, args []string) error {\n+\tif os.Getenv(\"OLLAMA_MODELS\") != \"\" {\n+\t\treturn errors.New(\"OLLAMA_MODELS must only be set f...
2024-04-03T05:11:13
golang/go
4ce9ea52c9ac48f85fba1233b6e7d563f89dff8b
c92bfac01e9e8319822f472fd11a51bf28762125
strconv: fix Eisel-Lemire for negative zero This is somewhat academic (and no tests failed before this commit), since func atof64 only calls func eiselLemire when func atof64exact fails, and func atof64exact doesn't fail when parsing positive or negative zeroes. But it's still worth fixing. Change-Id: Ibe6ef4c8fd9682...
[ { "path": "src/strconv/eisel_lemire.go", "patch": "@@ -22,14 +22,17 @@ import (\n \t\"math/bits\"\n )\n \n-func eiselLemire(man uint64, exp10 int, neg bool) (ret float64, ok bool) {\n+func eiselLemire(man uint64, exp10 int, neg bool) (f float64, ok bool) {\n \t// The terse comments in this function body ref...
2020-10-22T12:59:00
huggingface/transformers
254b25abd9a04bfff69408b9fdbaf2d270d1caaa
1c73d85b86e8afa549eb1209b3e62afdaa664cad
Use huggingface_hub helper function to split state dict (#31091) * shard saving from hf hub * index = None * fix tests * indent
[ { "path": "setup.py", "patch": "@@ -117,7 +117,7 @@\n \"fugashi>=1.0\",\n \"GitPython<3.1.19\",\n \"hf-doc-builder>=0.3.0\",\n- \"huggingface-hub>=0.23.0,<1.0\",\n+ \"huggingface-hub>=0.23.2,<1.0\",\n \"importlib_metadata\",\n \"ipadic>=1.0.0,<2.0\",\n \"isort>=5.5.4\",", "...
2024-06-12T12:10:32
ggml-org/llama.cpp
10e5b148b061569aaee8ae0cf72a703129df0eab
90b2731894ecd07cb24360231eeec106336e1727
llama-quant : correct `n_attention_wv` usage (#20357) * llama-quant : correct `n_attention_wv` usage In #19770, I introduced a regression in the way the `quantize_state_impl` counter values were initialized. I was incrementing and using `n_attention_wv` in the same loop, when it should have been fixed by the time we'...
[ { "path": "src/llama-quant.cpp", "patch": "@@ -870,9 +870,6 @@ static void llama_model_quantize_impl(const std::string & fname_inp, const std::\n \n quantize_state_impl qs(model, params);\n \n- // these need to be set to n_layer by default\n- qs.n_ffn_down = qs.n_ffn_gate = qs.n_ffn_up = (int)mode...
2026-03-10T19:43:29
rust-lang/rust
60b64701041a87e81fa56d4cab312d353dfd977b
dcdfd551f05073ececfa437be002ce7804b31c91
Fix clippy
[ { "path": "src/tools/clippy/clippy_lints/src/escape.rs", "patch": "@@ -150,6 +150,8 @@ impl<'tcx> Delegate<'tcx> for EscapeDelegate<'_, 'tcx> {\n }\n }\n \n+ fn use_cloned(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId) {}\n+\n fn borrow(&mut self, cmt: &PlaceWithHirId<'tcx>, _: HirId, _: ...
2024-12-26T21:15:50
nodejs/node
97439e61f874dca3901903741ca66a11ee255e92
bb91599d03a8ec764924369bbb51a6142eaa5a7a
test: make test-os-eol engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmai...
[ { "path": "test/parallel/test-os-eol.js", "patch": "@@ -8,12 +8,9 @@ const eol = common.isWindows ? '\\r\\n' : '\\n';\n \n assert.strictEqual(os.EOL, eol);\n \n-common.expectsError(function() {\n- os.EOL = 123;\n-}, {\n- type: TypeError,\n- message: /^Cannot assign to read only property 'EOL' of object '...
2017-10-17T23:15:23
golang/go
c92bfac01e9e8319822f472fd11a51bf28762125
2ad44158af373f68c1aef528738a5baade77d316
cmd/go: support non-amd64 on script/toolexec.txt In https://golang.org/cl/263357, I wasn't thinking that the assembly file without a GOARCH suffix would be built for all architectures. Only build assembly for amd64, and update the stderr matching line. I manually verified that this works on 386; since the only Go fil...
[ { "path": "src/cmd/go/testdata/script/toolexec.txt", "patch": "@@ -11,7 +11,7 @@ go build ./cmd/mytool\n # Finally, note that asm and cgo are run twice.\n \n go build -toolexec=$PWD/mytool\n-stderr -count=2 '^asm'${GOEXE}' TOOLEXEC_IMPORTPATH=test/main/withasm$'\n+[amd64] stderr -count=2 '^asm'${GOEXE}' TOO...
2020-10-22T18:32:47
huggingface/transformers
9f863d9a5b854361c198f8ab504b6e188275c49f
d218a2e51f3d63217e0cad39d116c24a71bb9022
README underline between badges fix (#31376) Badge underline fix
[ { "path": "README.md", "patch": "@@ -25,21 +25,11 @@ limitations under the License.\n </p>\n \n <p align=\"center\">\n- <a href=\"https://circleci.com/gh/huggingface/transformers\">\n- <img alt=\"Build\" src=\"https://img.shields.io/circleci/build/github/huggingface/transformers/main\">\n- </a>...
2024-06-12T10:49:50
ggml-org/llama.cpp
aa2d278a11124bc0edcd103a1307ffde12985572
6c770d16ca6870a9a419e37431f84f8b820df0c5
ggml webgpu: faster normal quant and some k-quant matrix operations, better shader parameter handling (#20173) * K quant speedup (#20) * Basic JIT compilation for mul_mat, get_rows, and scale (#17) * scale jit working * preliminary working jit for getrows and mulmat, needs refining * simplified mul_mat preprocessi...
[ { "path": "ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp", "patch": "@@ -42,11 +42,20 @@\n #define WEBGPU_MUL_MAT_SUBGROUP_MATRIX_N 2\n \n // Matrix-vector multiplication parameters\n-#define WEBGPU_MUL_MAT_VEC_WG_SIZE 256\n+#define WEBGPU_MUL_MAT_VEC_WG_SIZE 256\n+\n // Must be multiple of 4 to wo...
2026-03-10T16:14:27
nodejs/node
bb91599d03a8ec764924369bbb51a6142eaa5a7a
5f2453a1f412893102bb2a01c1bd49aea2281ece
test: make error stack test engine agnostic Revise test-internal-util-decorate-error-stack so that it does not depend on behavior specific to V8. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Yuta Hiro...
[ { "path": "test/parallel/test-internal-util-decorate-error-stack.js", "patch": "@@ -24,11 +24,16 @@ const obj = {};\n decorateErrorStack(obj);\n assert.strictEqual(obj.stack, undefined);\n \n-// Verify that the stack is decorated when possible\n+// Verify that the stack is decorated when possible.\n functio...
2017-10-17T23:11:17
ollama/ollama
531324a9bee6d1cd9330daa021388cccc6e2932f
a039e383cd133872c1b0599d2e960405a3e7d491
feat: add OLLAMA_DEBUG in ollama server help message (#3461) Co-authored-by: Pier Francesco Contino <pfcontino@gmail.com>
[ { "path": "cmd/cmd.go", "patch": "@@ -976,6 +976,7 @@ Environment Variables:\n OLLAMA_ORIGINS A comma separated list of allowed origins.\n OLLAMA_MODELS The path to the models directory (default is \"~/.ollama/models\")\n OLLAMA_KEEP_ALIVE The duration that models stay loaded in mem...
2024-04-03T01:20:03
golang/go
2ad44158af373f68c1aef528738a5baade77d316
431d58da69e8c36d654876e7808f971c5667649c
cmd/internal/obj: use correct symbol size for Hashed64 classification Use sym.Size, instead of len(sym.P), to decide whether a content-addressable symbol is "short" and hashed as Hashed64. So we don't dedup a small symbol with a gigantic almost-zero symbol. Fixes #42140. Change-Id: Ic65869e1eaf51947517b3ece49c8b0be1...
[ { "path": "src/cmd/internal/obj/sym.go", "patch": "@@ -205,7 +205,7 @@ func (ctxt *Link) NumberSyms() {\n \t\t// if Pkgpath is unknown, cannot hash symbols with relocations, as it\n \t\t// may reference named symbols whose names are not fully expanded.\n \t\tif s.ContentAddressable() && (ctxt.Pkgpath != \"\...
2020-10-22T14:05:44
huggingface/transformers
d218a2e51f3d63217e0cad39d116c24a71bb9022
84351d57eb10a715709a9f44e1e406a20ee481c7
backbone_utils - fix relative import (#31382) Fix relative import
[ { "path": "src/transformers/utils/backbone_utils.py", "patch": "@@ -21,7 +21,7 @@\n \n \n if TYPE_CHECKING:\n- from .configuration_utils import PretrainedConfig\n+ from ..configuration_utils import PretrainedConfig\n \n \n class BackboneType(enum.Enum):", "additions": 1, "deletions": 1, "l...
2024-06-12T10:42:20
ggml-org/llama.cpp
6c770d16ca6870a9a419e37431f84f8b820df0c5
8d880ac012003de6fcddff0e9108e75703e68d8a
Reduce level of content parser warning message to avoid log spam on non-debug verbosity (#20347)
[ { "path": "common/chat.cpp", "patch": "@@ -1620,8 +1620,8 @@ common_chat_msg common_chat_peg_parse(const common_peg_arena & src_pars\n build_chat_peg_parser([](common_chat_peg_builder & p) { return p.content(p.rest()) + p.end(); }) :\n src_parser;\n \n- if (src_parser.empty()...
2026-03-10T14:21:51
nodejs/node
5f2453a1f412893102bb2a01c1bd49aea2281ece
f16507bd224a728928258abdcc35b1b43a554d54
test: make test-http-outgoing-proto agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refac...
[ { "path": "test/parallel/test-http-outgoing-proto.js", "patch": "@@ -96,11 +96,14 @@ assert.throws(() => {\n message: 'The first argument must be one of type string or buffer'\n }));\n \n-// addTrailers\n+// addTrailers()\n+// The `Error` comes from the JavaScript engine so confirm that it is a\n+// `Type...
2017-10-17T22:59:41
golang/go
431d58da69e8c36d654876e7808f971c5667649c
f8aecbbff5b85e67fee95033b3a14f3df665ea18
all: add GOOS=ios GOARCH=amd64 target for the ios simulator The Go toolchain has supported the simulator for years, but always in buildmode=c-archive which is intrinsically externally linked and PIE. This CL moves that support from GOOS=darwin GOARCH=amd64 -tags=ios to just GOOS=ios GOARCH=amd64 to match the change f...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1557,6 +1557,7 @@ var cgoEnabled = map[string]bool{\n \t\"android/arm\": true,\n \t\"android/arm64\": true,\n \t\"ios/arm64\": true,\n+\t\"ios/amd64\": true,\n \t\"js/wasm\": false,\n \t\"netbsd/386\": true,\n \t\"netbsd/amd64\"...
2020-10-20T09:01:46
ggml-org/llama.cpp
8d880ac012003de6fcddff0e9108e75703e68d8a
0f1e9d14cc716e3d42728d5181b1b4f93c71bfa3
examples : fix empty items in json_schema_to_grammar.py [no ci] (#19968) * Fix logic for retrieving schema items in `json_schema_to_grammar.py` If `schema['items']` is `{}` and `prefixItems not in schema', as `{}` is Falsy, the original code here will raise an error. I think if `schema['items']` is `{}`, them item...
[ { "path": "examples/json_schema_to_grammar.py", "patch": "@@ -633,7 +633,7 @@ def add_component(comp_schema, is_required):\n return self._add_rule(rule_name, self._build_object_rule(properties, required, hybrid_name, additional_properties=None))\n \n elif schema_type in (None, 'array') a...
2026-03-10T13:38:18
huggingface/transformers
84351d57eb10a715709a9f44e1e406a20ee481c7
20fac1f24966f85d3dfa1badced64adae954b3de
docs: fix broken link (#31370) * docs: fix broken link * fix link
[ { "path": "docs/source/en/quantization/awq.md", "patch": "@@ -71,7 +71,7 @@ model_id = \"TheBloke/zephyr-7B-alpha-AWQ\"\n model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float32)\n ```\n \n-AWQ quantization can also be combined with [FlashAttention-2](perf_infer_gpu_one#flashattenti...
2024-06-12T10:33:00
nodejs/node
f16507bd224a728928258abdcc35b1b43a554d54
c38c31812e786324cd7b87daf67c771b41534370
test: make test-error-reporting engine agnostic Remove or modify checks in test-error-reporting that only apply to V8 and not to ChakraCore. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Yuta Hiroto <h...
[ { "path": "test/parallel/test-error-reporting.js", "patch": "@@ -32,17 +32,14 @@ function errExec(script, callback) {\n assert.ok(err);\n \n // More than one line of error output.\n- assert.ok(stderr.split('\\n').length > 2);\n-\n- // Assert the script is mentioned in error output.\n- asser...
2017-10-17T22:52:40
ollama/ollama
80163ebcb5f79661ae0c7094cc2983c87dab2e28
a57818d93e251317d32df40d9bb8d7df8a4075bf
fix metal gpu
[ { "path": "llm/server.go", "patch": "@@ -85,7 +85,7 @@ func NewLlamaServer(model string, adapters, projectors []string, opts *api.Optio\n \tgraph := int64(ggml.KV().GQA()) * kv / 6\n \tusedMemory += graph\n \n-\tif usedMemory > availableMemory || slices.Contains(cpuOnlyFamilies, ggml.KV().Architecture()) {\...
2024-04-02T23:06:45
ggml-org/llama.cpp
1274fbee9e185d41447bf6edb739e7240c0319a2
a7b3dee7a5df8fa2e2f8faae9792d2cab5112c6f
models : fix assert in mamba2 (cont) (#20335) * models : fix assert in mamba2 (cont) * cont : add n_group mod Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com> --------- Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
[ { "path": "src/models/mamba-base.cpp", "patch": "@@ -168,8 +168,9 @@ ggml_tensor * llm_build_mamba_base::build_mamba2_layer(llm_graph_input_rs * inp,\n GGML_ASSERT(n_seqs != 0);\n GGML_ASSERT(ubatch.equal_seqs());\n GGML_ASSERT(ubatch.n_tokens == n_seq_tokens * n_seqs);\n- GGML_ASSERT(d_inner...
2026-03-10T13:00:08
golang/go
de74ea5d740ccc69dbb146578dc8a965351a3d6b
61313dab524f2c82add8442e15d87fca5b7103de
cmd/go: set TOOLEXEC_IMPORTPATH for -toolexec tools This way, a -toolexec tool can tell precisely what package is being built when it's run. This was very hard to do before, because the tool had to piece together that information given the build action's arguments or flags. Since there wasn't a good set of tests for ...
[ { "path": "doc/go1.16.html", "patch": "@@ -122,6 +122,15 @@ <h4 id=\"all-pattern\">The <code>all</code> pattern</h4>\n by <code>go</code> <code>mod</code> <code>vendor</code> since Go 1.11.\n </p>\n \n+<h4 id=\"toolexec\">The <code>-toolexec</code> build flag</h4>\n+\n+<p><!-- golang.org/cl/263357 -->\n+ ...
2020-10-17T19:03:19
huggingface/transformers
20fac1f24966f85d3dfa1badced64adae954b3de
08ad34b19e619c0d2cc69d108e9f98a290e0cfc6
[Bug Fix] Renamed loss to losses to suppress UnboundLocalError (#31365) Renamed loss to losses to suppress UnboundLocalError Co-authored-by: Your Name <you@example.com>
[ { "path": "src/transformers/trainer.py", "patch": "@@ -3791,16 +3791,16 @@ def evaluation_loop(\n batch_size = observed_batch_size\n \n # Prediction step\n- loss, logits, labels = self.prediction_step(model, inputs, prediction_loss_only, ignore_keys=ignore_keys)\n+...
2024-06-12T10:29:25
ollama/ollama
841adda157209d6498d65a3d969b96f2fdd64300
0035e31af87c6cc62cde5d6cd0f22d36131ff62e
Fix windows lint CI flakiness
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -260,7 +260,9 @@ jobs:\n mkdir -p llm/build/windows/$ARCH/stub/stub/bin/\n touch llm/build/windows/$ARCH/stub/stub/bin/stub.dll\n if: ${{ startsWith(matrix.os, 'windows-') }}\n- - uses: golangci/golangci-lint-action@v3\n+...
2024-04-02T19:22:16
ggml-org/llama.cpp
ec947d2b16218580dfad3f2f8bd589190955efaf
0cd4f4720b71dd7eb5fb3e3e86ffdd8ec5ac7c9f
common : fix incorrect uses of stoul (#20313)
[ { "path": "common/arg.cpp", "patch": "@@ -2427,11 +2427,11 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n );\n }\n if (split_arg.size() == 1) {\n- std::fill(params.fit_params_target.begin(), params.fit_params_targe...
2026-03-10T10:40:26
nodejs/node
c38c31812e786324cd7b87daf67c771b41534370
90c9b162fe7885eb4d783f19bc89fb1f85af16be
test: make test-console engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gma...
[ { "path": "test/parallel/test-console.js", "patch": "@@ -42,10 +42,12 @@ assert.doesNotThrow(function() {\n console.timeEnd('label');\n });\n \n+// Check that the `Error` is a `TypeError` but do not check the message as it\n+// will be different in different JavaScript engines.\n assert.throws(() => conso...
2017-10-17T22:41:39
huggingface/transformers
08ad34b19e619c0d2cc69d108e9f98a290e0cfc6
a2ede66674d919fe507cc27db191f3314fd29948
Fix idefics cache (#31377) * fix idefics cache * fix tests
[ { "path": "src/transformers/models/idefics2/modeling_idefics2.py", "patch": "@@ -1593,10 +1593,11 @@ def forward(\n \n past_seen_tokens = 0\n return_legacy_cache = False\n- if use_cache and not isinstance(past_key_values, Cache): # kept for BC (non `Cache` `past_key_values` inputs)\n...
2024-06-12T10:24:32
golang/go
61313dab524f2c82add8442e15d87fca5b7103de
b4c8b67adcd39da54f210bef5c201b1df8124d73
cmd/go: use the last -linkmode flag to determine external linking Current linkmode checking in determining package dependencies doesn't take multiple -linkmode options into consideration, may lead to redundant dependency on 'runtime/cgo'. Fixes the problem and adds a testcase. Change-Id: Iac5ea9fb3ca5ef931201afd0f34...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -1978,16 +1978,20 @@ func externalLinkingForced(p *Package) bool {\n \t// external linking mode, as of course does\n \t// -ldflags=-linkmode=external. External linking mode forces\n \t// an import of runtime/cgo.\n+\t// If there are multiple -linkmod...
2020-10-18T18:43:23
ggml-org/llama.cpp
1a5631beaa2bfb9f76f177a8dbe5544dd6c2d528
1dab5f5a443a7b972005c56fb92eca2b07d57fea
metal: handle command buffer failures gracefully in synchronize (#20306) Replace GGML_ABORT("fatal error") in ggml_metal_synchronize() with error flag + return. This aligns synchronize error handling with graph_compute, which already returns GGML_STATUS_FAILED for the same condition. When a command buffer fails (e.g....
[ { "path": "ggml/src/ggml-metal/ggml-metal-context.m", "patch": "@@ -75,6 +75,10 @@\n // abort ggml_metal_graph_compute if callback returns true\n ggml_abort_callback abort_callback;\n void * abort_callback_data;\n+\n+ // error state - set when a command buffer fails during synchr...
2026-03-10T06:32:24
nodejs/node
90c9b162fe7885eb4d783f19bc89fb1f85af16be
b786ed99c126e70c06b64bbc50b97f34390a3755
test: make test-console-count engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `TypeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refa...
[ { "path": "test/parallel/test-console-count.js", "patch": "@@ -54,10 +54,12 @@ assert.strictEqual(buf, 'default: 2\\n');\n \n process.stdout.write = stdoutWrite;\n \n-// Symbol labels do not work\n+// Symbol labels do not work. Only check that the `Error` is a `TypeError`. Do\n+// not check the message beca...
2017-10-17T22:38:02
golang/go
ed2010e676042b387d72daaa4c39b54c4c57c031
9c28a50fd18b2e69c43dec9b871e96bab6ec4ede
imports: make ScanDir ignore go files start with dot Adding "." Prefix Check for go files. Fixes #42047 Change-Id: Ifc42bf562f52fdd304f9828b06fc57888fcd8049 Reviewed-on: https://go-review.googlesource.com/c/go/+/264078 Reviewed-by: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> Tr...
[ { "path": "src/cmd/go/internal/imports/scan.go", "patch": "@@ -34,7 +34,7 @@ func ScanDir(dir string, tags map[string]bool) ([]string, []string, error) {\n \t\t\t}\n \t\t}\n \n-\t\tif info.Mode().IsRegular() && !strings.HasPrefix(name, \"_\") && strings.HasSuffix(name, \".go\") && MatchFile(name, tags) {\n+...
2020-10-21T02:47:29
huggingface/transformers
f53fe35b29c06307b44781db8c65c7f94f5eeadd
edc1dffd00d62ad1910da0100f7a18055c43665c
Fast image processor (#28847) * Draft fast image processors * Draft working fast version * py3.8 compatible cache * Enable loading fast image processors through auto * Tidy up; rescale behaviour based on input type * Enable tests for fast image processors * Smarter rescaling * Don't default to Fas...
[ { "path": "docs/source/en/main_classes/image_processor.md", "patch": "@@ -32,3 +32,8 @@ An image processor is in charge of preparing input features for vision models an\n ## BaseImageProcessor\n \n [[autodoc]] image_processing_utils.BaseImageProcessor\n+\n+\n+## BaseImageProcessorFast\n+\n+[[autodoc]] image...
2024-06-11T14:47:38
ggml-org/llama.cpp
1dab5f5a443a7b972005c56fb92eca2b07d57fea
c96f608d9861f7e8466bc1b6ac2ff4e3c6f96641
llama-quant : fail early on missing imatrix, refactor type selection, code cleanup (#19770) * quantize : imatrix-fail early + code cleanup * fix manual override printing it's in the preliminary loop now, so needs to be on its own line * revert header changes per ggerganov * remove old #includes * clarify naming ...
[ { "path": "src/llama-quant.cpp", "patch": "@@ -1,22 +1,40 @@\n-#include \"llama-quant.h\"\n+#include \"llama.h\"\n #include \"llama-impl.h\"\n #include \"llama-model.h\"\n #include \"llama-model-loader.h\"\n \n-#include <algorithm>\n #include <cmath>\n #include <cstring>\n+#include <string>\n #include <cint...
2026-03-10T06:16:05
golang/go
9c28a50fd18b2e69c43dec9b871e96bab6ec4ede
3bac5faa4af2f5c454b2cebaa8be5cde9b8e2add
cmd/go: when module enabled, `go clean` removes built binary Now "go clean" can remove binary as expected, when module enabled and the module name isn't "main" or the name of folder. Fixes issue #41656 Change-Id: I54b9435ece045e03a12dc230efe84c8dd381a07c GitHub-Last-Rev: f4ea2d8c765a6e3a2b89fe2c9fb5b2c80551efa5 Git...
[ { "path": "src/cmd/go/internal/clean/clean.go", "patch": "@@ -276,23 +276,37 @@ func clean(p *load.Package) {\n \t\tallRemove = append(allRemove,\n \t\t\telem,\n \t\t\telem+\".exe\",\n+\t\t\tp.DefaultExecName(),\n+\t\t\tp.DefaultExecName()+\".exe\",\n \t\t)\n \t}\n \n \t// Remove package test executables.\n...
2020-10-21T05:09:26
nodejs/node
b786ed99c126e70c06b64bbc50b97f34390a3755
7baf261cfc36daa3bfb219a0f10465eef3067197
test: make test-cli-syntax engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `SyntaxError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refac...
[ { "path": "test/parallel/test-cli-syntax.js", "patch": "@@ -13,7 +13,9 @@ const syntaxArgs = [\n ['--check']\n ];\n \n-const syntaxErrorRE = /^SyntaxError: Unexpected identifier$/m;\n+// Match on the name of the `Error` but not the message as it is different\n+// depending on the JavaScript engine.\n+cons...
2017-10-17T22:34:53
huggingface/transformers
edc1dffd00d62ad1910da0100f7a18055c43665c
ce3647ad2d2f94b0858aa0145f6de9eb677327b9
Chat Template support for function calling and RAG (#30621) * First draft, still missing automatic function conversion * First draft of the automatic schema generator * Lots of small fixes * the walrus has betrayed me * please stop committing your debug breakpoints * Lots of cleanup and edge cases, look...
[ { "path": "docs/source/en/chat_templating.md", "patch": "@@ -233,6 +233,332 @@ The sun.</s>\n \n From here, just continue training like you would with a standard language modelling task, using the `formatted_chat` column.\n \n+## Advanced: Extra inputs to chat templates\n+\n+The only argument that `apply_ch...
2024-06-11T14:46:38
ggml-org/llama.cpp
c96f608d9861f7e8466bc1b6ac2ff4e3c6f96641
0842b9b465f73a133062e80b74201c86e73a67c8
common: consolidate PEG string parsers (#20263) * common : consolidate PEG string parsers * cont : fix json_string_content()
[ { "path": "common/chat-auto-parser-generator.cpp", "patch": "@@ -90,7 +90,7 @@ common_peg_arena autoparser::build_parser(const templates_params & inputs) const\n // pre-register a json-string rule that accepts both quote styles. This must happen\n // before any call to p.json() so that all J...
2026-03-09T23:29:21
rust-lang/rust
3e374043f3ec5d4146fcd350a3e027f359e8ef1c
222adac953d1e745763850f75f4afac69b1d4321
Add test for `escape_debug` without bounds check.
[ { "path": "tests/codegen/char-escape-debug-no-bounds-check.rs", "patch": "@@ -0,0 +1,14 @@\n+//@ compile-flags: -Copt-level=3\n+#![crate_type = \"lib\"]\n+\n+use std::char::EscapeDebug;\n+\n+// Make sure no bounds checks are emitted when escaping a character.\n+\n+// CHECK-LABEL: @char_escape_debug_no_bound...
2025-03-05T14:47:14
huggingface/transformers
12ae6d35731e2167a967c1e36f1318c87a487711
dcdda5324bcc7a750b5e40e11dd795442204ff27
Fix gradio tool demos (#31230) * Fix gradio tool demos
[ { "path": "src/transformers/agents/agent_types.py", "patch": "@@ -88,7 +88,8 @@ class AgentImage(AgentType, ImageType):\n \"\"\"\n \n def __init__(self, value):\n- super().__init__(value)\n+ AgentType.__init__(self, value)\n+ ImageType.__init__(self)\n \n if not is_visio...
2024-06-11T09:35:27
nodejs/node
7baf261cfc36daa3bfb219a0f10465eef3067197
829d8f1cd0351d9fc3ee0ff9ce63c6f6c34da373
test: make test-buffer-slow engine agnostic Do not check the error message if it is generated by the JavaScript engine (V8, ChakraCore, etc.). Do confirm that it is a `RangeError`. PR-URL: https://github.com/nodejs/node/pull/16272 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refac...
[ { "path": "test/parallel/test-buffer-slow.js", "patch": "@@ -34,7 +34,9 @@ try {\n assert.strictEqual(\n SlowBuffer(buffer.kMaxLength).length, buffer.kMaxLength);\n } catch (e) {\n- assert.strictEqual(e.message, 'Array buffer allocation failed');\n+ // Don't match on message as it is from the JavaSc...
2017-10-17T21:51:57
golang/go
3bac5faa4af2f5c454b2cebaa8be5cde9b8e2add
4c7a18d74ae4d574313c01e95de66be06e3a3e82
cmd/compile: make gc debug flags collector a struct gc debug flags are currently stored in a 256-long array, that is then addressed using the ASCII numeric value of the flag itself (a quirk inherited from the old C compiler). It is also a little wasteful, since we only define 16 flags, and the other 240 array elements...
[ { "path": "src/cmd/compile/internal/gc/alg.go", "patch": "@@ -282,7 +282,7 @@ func genhash(t *types.Type) *obj.LSym {\n \t}\n \n \tsym := typesymprefix(\".hash\", t)\n-\tif Debug['r'] != 0 {\n+\tif Debug.r != 0 {\n \t\tfmt.Printf(\"genhash %v %v %v\\n\", closure, sym, t)\n \t}\n \n@@ -374,7 +374,7 @@ func g...
2020-10-19T09:31:10
ggml-org/llama.cpp
0842b9b465f73a133062e80b74201c86e73a67c8
59db9a357d9a247009c70fda34050661b17a1a5c
model: fix step3.5 n_rot (#20318)
[ { "path": "src/llama-model.cpp", "patch": "@@ -7348,7 +7348,7 @@ bool llama_model::load_tensors(llama_model_loader & ml) {\n // (\"rope_freqs.weight\") and ggml uses only the first (n_rot_l/2) entries per layer.\n uint32_t n_rot_max = 0;\n for (int...
2026-03-09T22:42:24
rust-lang/rust
222adac953d1e745763850f75f4afac69b1d4321
e6af292f91f21f12ac1aab6825efb7e1e3381cbb
Allow optimizing out `panic_bounds_check` in Unicode checks.
[ { "path": "library/core/src/unicode/unicode_data.rs", "patch": "@@ -55,24 +55,31 @@ fn decode_length(short_offset_run_header: u32) -> usize {\n (short_offset_run_header >> 21) as usize\n }\n \n+/// # Safety\n+///\n+/// The last element of `short_offset_runs` must be greater than `std::char::MAX`.\n #[in...
2025-03-05T00:04:10
ollama/ollama
1ec0df1069341cf09417401c37474b92999d3c12
011bb6735187b6c5898ab7504ffe473057b2eed1
fix generate output
[ { "path": ".github/workflows/test.yaml", "patch": "@@ -12,6 +12,7 @@ jobs:\n changes:\n runs-on: ubuntu-latest\n outputs:\n+ GENERATE: ${{ steps.changes.outputs.GENERATE }}\n GENERATE_CUDA: ${{ steps.changes.outputs.GENERATE_CUDA }}\n GENERATE_ROCM: ${{ steps.changes.outputs.GENER...
2024-04-01T20:47:34
huggingface/transformers
8fff07ded0a914299a3f4c25580bc5eeb6d0aae6
dc6eb448419b6a4a4967cdc7e8b96bdbc6969644
Fix Cohere CI (#31263) * [run-slow] cohere * [run-slow] cohere * [run-slow] cohere --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".github/workflows/self-pr-slow-ci.yml", "patch": "@@ -110,7 +110,10 @@ jobs:\n \n - name: Run all tests on GPU\n working-directory: /transformers\n- run: python3 -m pytest -v -rsfE --make-reports=${{ matrix.machine_type }}_run_models_gpu_${{ matrix.folders }}_test_reports tes...
2024-06-10T13:16:58
nodejs/node
f7436ba1358f6af30d7d9baffdbef8754573f0e5
7b3446e7bb19b2df45892300a13c5bbf30da244c
test: improve template value for test message Include value that cause failure in error message in test-cluster-master-kill.js. PR-URL: https://github.com/nodejs/node/pull/16826 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com...
[ { "path": "test/parallel/test-cluster-master-kill.js", "patch": "@@ -81,7 +81,8 @@ if (cluster.isWorker) {\n process.once('exit', () => {\n assert.strictEqual(typeof pid, 'number',\n `got ${pid} instead of a worker pid`);\n- assert.strictEqual(alive, false, 'worker was alive ...
2017-11-06T15:42:01