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
nodejs/node
e896898deac171c94de6466948686fbc280663b2
f4390650e3675964eda9b37f809fdbdcf24c946d
deps: update openssl asm and asm_obsolete files Regenerate asm files according to the fix of openssl/crypto/perlasm/x86_64-xlate.pl. Fixes: https://github.com/nodejs/node/issues/12691 PR-URL: https://github.com/nodejs/node/pull/12913 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@g...
[ { "path": "deps/openssl/asm/x64-win32-masm/aes/aesni-sha256-x86_64.asm", "patch": "@@ -4150,7 +4150,7 @@ $L$prologue_shaext::\n \tlea\trcx,QWORD PTR[112+rcx]\n \n \tpshufd\txmm0,xmm1,01bh\n-\tpshufd\txmm1,xmm1,1h\n+\tpshufd\txmm1,xmm1,0b1h\n \tpshufd\txmm2,xmm2,01bh\n \tmovdqa\txmm7,xmm3\n DB\t102,15,58,15,...
2017-05-09T02:06:16
ggml-org/llama.cpp
d24d5928086471063fa9d9fd45aca710fd1336ae
8efbdadc616fa717c369059b9b388160958d886c
ci: fix cross-compile sync issues (#12804)
[ { "path": ".github/workflows/build-linux-cross.yml", "patch": "@@ -4,18 +4,25 @@ on:\n workflow_call:\n \n jobs:\n- ubuntu-latest-riscv64-cpu-cross:\n- runs-on: ubuntu-latest\n+ ubuntu-24-riscv64-cpu-cross:\n+ runs-on: ubuntu-24.04\n \n steps:\n - uses: actions/checkout@v4\n - name...
2025-05-01T22:06:39
huggingface/transformers
df04959e5542d41b269f96305d82c62287350cee
e3a9716384146b89f21a39bdf13dd4b1cac740bb
fix _resize_token_embeddings will set lm head size to 0 when enabled deepspeed zero3 (#26024)
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -1437,10 +1437,20 @@ def _resize_token_embeddings(self, new_num_tokens, pad_to_multiple_of=None):\n add_hook_to_module(new_embeddings, hook)\n self.set_input_embeddings(new_embeddings)\n \n+ # Update new_num_tokens with ...
2023-09-07T09:10:40
vuejs/vue
d9efc6a92b54547869f20040a47fd0bf07024b9a
887ec90d1484599398ffdd17df9f088d6cc6800f
clone components hash to avoid webpack 2 immutable export (fix #4062)
[ { "path": "src/core/util/options.js", "patch": "@@ -200,6 +200,7 @@ const defaultStrat = function (parentVal: any, childVal: any): any {\n function normalizeComponents (options: Object) {\n if (options.components) {\n const components = options.components\n+ const normalized = options.components = ...
2016-11-03T20:23:05
golang/go
9f1d55c4e73dbaff1f118df7125a2cd4401fcb8e
f9fe783c6c71d236a94ca674a8be61c7b5198fdb
cmd/dist: print error if GOROOT is inside a module Fixes #36701 Change-Id: I22738235e7a7ee06bc5d748213aab523aad8cf12 Reviewed-on: https://go-review.googlesource.com/c/go/+/215939 Run-TryBot: Jay Conrod <jayconrod@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -110,6 +110,9 @@ func xinit() {\n \t\tfatalf(\"$GOROOT must be set\")\n \t}\n \tgoroot = filepath.Clean(b)\n+\tif modRoot := findModuleRoot(goroot); modRoot != \"\" {\n+\t\tfatalf(\"found go.mod file in %s: $GOROOT must not be inside a module\", modRoot)\n+\t}...
2020-01-22T23:30:03
nodejs/node
f4390650e3675964eda9b37f809fdbdcf24c946d
88d2e699d8287218cc6cd4cc80e13e1055e07fce
deps: cherry-pick 4ae5993 from upstream OpenSSL This fixes wrong hash results on Windows with some CPUs that support Intel SHA Extension and resolves the issue of TLS connection errors. After upgrading forthcoming openssl-1.0.2l, this is no nolonger needed. Original commit message: perlasm/x86_64-xlate.pl: wo...
[ { "path": "deps/openssl/openssl/crypto/perlasm/x86_64-xlate.pl", "patch": "@@ -206,8 +206,9 @@\n \t }\n \t sprintf \"\\$%s\",$self->{value};\n \t} else {\n-\t $self->{value} =~ s/0x([0-9a-f]+)/0$1h/ig if ($masm);\n-\t sprintf \"%s\",$self->{value};\n+\t my $value = $self->{value};\n+\t $va...
2017-05-09T01:36:54
ggml-org/llama.cpp
d7a14c42a1883a34a6553cbfe30da1e1b84dfd6a
b6e4ff69b8abd509647b531bd5b4e86950204f66
build : fix build info on windows (#13239) * build : fix build info on windows * fix cuda host compiler msg
[ { "path": "cmake/build-info.cmake", "patch": "@@ -41,14 +41,20 @@ endif()\n \n if(MSVC)\n set(BUILD_COMPILER \"${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}\")\n- set(BUILD_TARGET ${CMAKE_VS_PLATFORM_NAME})\n+ if (CMAKE_VS_PLATFORM_NAME)\n+ set(BUILD_TARGET ${CMAKE_VS_PLATFORM_NAME})\n...
2025-05-01T19:48:08
huggingface/transformers
e3a9716384146b89f21a39bdf13dd4b1cac740bb
fa6107c97edf7cf725305a34735a57875b67d85e
Fix err with FSDP (#25991) * Fix err * Use version check
[ { "path": "src/transformers/trainer.py", "patch": "@@ -3910,15 +3910,16 @@ def create_accelerator_and_postprocess(self):\n fsdp_plugin.limit_all_gathers = self.args.fsdp_config.get(\n \"limit_all_gathers\", fsdp_plugin.limit_all_gathers\n )\n- fsdp_plugin.a...
2023-09-07T04:22:53
vuejs/vue
887ec90d1484599398ffdd17df9f088d6cc6800f
5a4c1d7f70f96bb1ebf47c10c0f420d2ed9d5584
fix RenderContext (#4099)
[ { "path": "types/options.d.ts", "patch": "@@ -55,7 +55,7 @@ export interface FunctionalComponentOptions {\n export interface RenderContext {\n props: any;\n children: VNode[];\n- slots: any;\n+ slots(): any;\n data: VNodeData;\n parent: Vue;\n }", "additions": 1, "deletions": 1, "langu...
2016-11-03T17:07:07
golang/go
f9fe783c6c71d236a94ca674a8be61c7b5198fdb
9b5bd30716914a86619c050f0d75c0da4133b257
Revert "net/http: support gzip, x-gzip Transfer-Encodings" This reverts commit e6c12c3d0296251f1d5a96ebde811dbfd4a914fe. Reason for revert: the assumption that a T-E of "gzip" implies "chunked" seems incorrect. The RFC does state that one "MUST apply chunked as the final transfer coding" but that should be interprete...
[ { "path": "src/net/http/transfer.go", "patch": "@@ -7,7 +7,6 @@ package http\n import (\n \t\"bufio\"\n \t\"bytes\"\n-\t\"compress/gzip\"\n \t\"errors\"\n \t\"fmt\"\n \t\"io\"\n@@ -467,34 +466,6 @@ func suppressedHeaders(status int) []string {\n \treturn nil\n }\n \n-// proxyingReadCloser is a composite typ...
2020-01-22T01:06:37
nodejs/node
b5ae22dd1c7455178178c56a1eca3d5f72eff39e
945f20808143d954fea73e4ac3a0d71cf73c9b2c
test: add hasCrypto check to https-agent-constructor Currently this test will fail with the following error message when configured --without-ssl: Error: Node.js is not compiled with openssl crypto support This commit checks for crypto and skips this tests if such support is not available. PR-URL: https://github.com...
[ { "path": "test/parallel/test-https-agent-constructor.js", "patch": "@@ -1,5 +1,9 @@\n 'use strict';\n-require('../common');\n+const common = require('../common');\n+if (!common.hasCrypto) {\n+ common.skip('missing crypto');\n+ return;\n+}\n const assert = require('assert');\n const https = require('https...
2017-05-12T05:40:13
vuejs/vue
e2a361a052dfdfb3f531e9a8e26b12d48309f6b9
ec824be88e9bc71b31e5c4a43f80d921674dca66
forgivingly handle < inside template plain text (fix #4012)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -91,7 +91,7 @@ export function parseHTML (html, options) {\n last = html\n // Make sure we're not in a script or style element\n if (!lastTag || !isSpecialTag(lastTag, options.sfc, stack)) {\n- const textEnd = html.indexOf('<')\n+...
2016-11-03T04:53:49
huggingface/transformers
fa6107c97edf7cf725305a34735a57875b67d85e
300d6a4a62aac89b3f439110561d5a2268ffad9e
modify context length for GPTQ + version bump (#25899) * add new arg for gptq * add tests * add min version autogptq * fix order * skip test * fix * Update src/transformers/modeling_utils.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * fix style * change model pa...
[ { "path": "src/transformers/modeling_utils.py", "patch": "@@ -2546,7 +2546,7 @@ def from_pretrained(\n logger.warning(\n \"You passed `quantization_config` to `from_pretrained` but the model you're loading already has a \"\n \"`quantization_config` attribute and h...
2023-09-06T15:45:47
golang/go
9b5bd30716914a86619c050f0d75c0da4133b257
895b7c85addfffe19b66d8ca71c31799d6e55990
runtime: document special memmove requirements Unlike C's memmove, Go's memmove must be careful to do indivisible writes of pointer values because it may be racing with the garbage collector reading the heap. We've had various bugs related to this over the years (#36101, #13160, #12552). Indeed, memmove is a great t...
[ { "path": "src/runtime/memmove_386.s", "patch": "@@ -28,6 +28,8 @@\n #include \"go_asm.h\"\n #include \"textflag.h\"\n \n+// See memmove Go doc for important implementation constraints.\n+\n // func memmove(to, from unsafe.Pointer, n uintptr)\n TEXT runtime·memmove(SB), NOSPLIT, $0-12\n \tMOVL\tto+0(FP), DI...
2020-01-06T16:10:26
vuejs/vue
ec824be88e9bc71b31e5c4a43f80d921674dca66
09f9783943613ee732c5b45951907fd069322f7d
fix v-once inside v-for (fix #3964)
[ { "path": "flow/compiler.js", "patch": "@@ -117,6 +117,7 @@ declare type ASTElement = {\n \n forbidden?: true;\n once?: true;\n+ onceProcessed?: boolean;\n wrapData?: (code: string) => string;\n }\n ", "additions": 1, "deletions": 0, "language": "JavaScript" }, { "path": "flow/com...
2016-11-03T02:34:36
nodejs/node
945f20808143d954fea73e4ac3a0d71cf73c9b2c
9516aa19c16cbfda6917c4fb8d6aecf2da8a16aa
test: make the rest of tests path-independent Permit spaces in paths to a Node.js executable and test scripts. PR-URL: https://github.com/nodejs/node/pull/12972 Fixes: https://github.com/nodejs/node/issues/12773 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/common/index.js", "patch": "@@ -285,8 +285,8 @@ exports.childShouldThrowAndAbort = function() {\n // continuous testing and developers' machines\n testCmd += 'ulimit -c 0 && ';\n }\n- testCmd += `${process.argv[0]} --abort-on-uncaught-exception `;\n- testCmd += `${process.argv[1]...
2017-05-11T12:10:00
huggingface/transformers
fa522d8d7ba512d1e103f891263602ee3f2bd46d
3e203f92bed937fa13c35adee1bdc45a92d18e61
🌐[i18n-KO] Translated `llm_tutorial.md` to Korean (#25791) * docs: ko: llm_tutoroal.md * feat: chatgpt draft * fix: manual edits * fix: resolve suggestions * fix: resolve suggestions
[ { "path": "docs/source/ko/_toctree.yml", "patch": "@@ -25,6 +25,8 @@\n title: 만든 모델 공유하기\n - local: transformers_agents\n title: 에이전트\n+ - local: llm_tutorial\n+ title: 대규모 언어 모델로 생성하기\n title: 튜토리얼\n - sections:\n - sections:", "additions": 2, "deletions": 0, "language": "YAML...
2023-09-06T14:40:03
rust-lang/rust
1eb9f5e825ad2c23a3a464f865b93a7cf1150a9b
d60afecd1127caec601243fdb27de9d67885819f
Fix scip inherent impl overflow
[ { "path": "src/tools/rust-analyzer/crates/rust-analyzer/src/cli/scip.rs", "patch": "@@ -444,14 +444,14 @@ impl SymbolGenerator {\n MonikerResult::Moniker(moniker) => TokenSymbols {\n symbol: scip::symbol::format_symbol(moniker_to_symbol(moniker)),\n ...
2025-01-28T04:16:45
vuejs/vue
09f9783943613ee732c5b45951907fd069322f7d
cb1bb75b5827f7335bce9d097f995226235ecf2b
fix global mixin + export constructor in vue-loader (fix vue-loader#433)
[ { "path": "src/core/instance/init.js", "patch": "@@ -66,10 +66,13 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n if (Ctor.super) {\n const superOptions = Ctor.super.options\n const cachedSuperOptions = Ctor.superOptions\n+ const extendOptions = Ctor.extendOptions\n ...
2016-11-02T22:51:09
golang/go
895b7c85addfffe19b66d8ca71c31799d6e55990
fb2e3b82f47dc9be89821d16f609df65e1f5f6ab
runtime: don't skip checkTimers if we would clear deleted timers The timers code used to have a problem: if code started and stopped a lot of timers, as would happen with, for example, lots of calls to context.WithTimeout, then it would steadily use memory holding timers that had stopped but not been removed from the ...
[ { "path": "src/runtime/proc.go", "patch": "@@ -2632,7 +2632,13 @@ func checkTimers(pp *p, now int64) (rnow, pollUntil int64, ran bool) {\n \t\t\tnow = nanotime()\n \t\t}\n \t\tif now < next {\n-\t\t\treturn now, next, false\n+\t\t\t// Next timer is not ready to run.\n+\t\t\t// But keep going if we would cle...
2020-01-22T00:50:56
ggml-org/llama.cpp
79f26e9e125b21760aeb016f34bfd42a93f48351
fc727bcdd5a311c7c69a76dbf87f4784e828c7b4
vulkan: Add bfloat16 support (#12554) * vulkan: Add bfloat16 support This adds bfloat16 matrix multiply support based on VK_KHR_shader_bfloat16. The extension is required for coopmat multiply support, but matrix-vector multiply trivially promotes bf16 to fp32 and doesn't require the extension. The copy/get_rows shade...
[ { "path": "ggml/src/ggml-vulkan/CMakeLists.txt", "patch": "@@ -71,6 +71,22 @@ if (Vulkan_FOUND)\n add_compile_definitions(GGML_VULKAN_INTEGER_DOT_GLSLC_SUPPORT)\n endif()\n \n+ # Compile a test shader to determine whether GL_EXT_bfloat16 is supported.\n+ # If it's not, there will be an err...
2025-05-01T18:49:39
huggingface/transformers
3e203f92bed937fa13c35adee1bdc45a92d18e61
842e99f1b9ee2a0fa239997ef695c5ed0bd77195
Fix small typo README.md (#25934) * fix some samll bugs in readme * Update docs/README.md Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com> --------- Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com>
[ { "path": "README_ko.md", "patch": "@@ -434,7 +434,7 @@ Flax, PyTorch, TensorFlow 설치 페이지에서 이들을 conda로 설치하는\n 1. **[XLS-R](https://huggingface.co/docs/transformers/model_doc/xls_r)** (Facebook AI 에서) Arun Babu, Changhan Wang, Andros Tjandra, Kushal Lakhotia, Qiantong Xu, Naman Goyal, Kritika Singh, Patrick v...
2023-09-06T13:07:29
nodejs/node
9516aa19c16cbfda6917c4fb8d6aecf2da8a16aa
84fc069b9578e2917fa9a23d1c738b5cffcc4910
test: add common.mustCall() to NAPI exception test Use `common.mustCall()` to confirm that function is invoked. PR-URL: https://github.com/nodejs/node/pull/12959 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmai...
[ { "path": "test/addons-napi/test_exception/test.js", "patch": "@@ -9,8 +9,6 @@ function throwTheError() {\n }\n let caughtError;\n \n-const throwNoError = common.noop;\n-\n // Test that the native side successfully captures the exception\n let returnedError = test_exception.returnException(throwTheError);\n...
2017-05-11T02:37:25
vuejs/vue
cb1bb75b5827f7335bce9d097f995226235ecf2b
4b8eb75c7a5544a1f65ebd679fd89639208d5976
fix global mixin props (fix #3957)
[ { "path": "src/core/instance/init.js", "patch": "@@ -24,7 +24,7 @@ export function initMixin (Vue: Class<Component>) {\n initInternalComponent(vm, options)\n } else {\n vm.$options = mergeOptions(\n- resolveConstructorOptions(vm),\n+ resolveConstructorOptions(vm.constructor),\n...
2016-11-02T19:50:57
huggingface/transformers
842e99f1b9ee2a0fa239997ef695c5ed0bd77195
f6301b9a13b8467d1f88a6f419d76aefa15bd9b8
TF-OPT attention mask fixes (#25238) * stash commit * More OPT updates * Update src/transformers/models/opt/modeling_tf_opt.py Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com> --------- Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com>
[ { "path": "src/transformers/models/opt/modeling_tf_opt.py", "patch": "@@ -61,17 +61,15 @@\n LARGE_NEGATIVE = -1e8\n \n \n-# Copied from transformers.models.bart.modeling_tf_bart._make_causal_mask\n def _make_causal_mask(input_ids_shape: tf.TensorShape, past_key_values_length: int = 0):\n \"\"\"\n Ma...
2023-09-06T12:37:27
golang/go
1424889921159ed28866dff40b5d54884aaddd9c
88ed322afcd8cddc0e1ae5d02fd4d86779a4a2a3
cmd/internal/obj/riscv: correctly split immediates for FLW/FLD/FSW/FSD The FLW/FLD/FSW/FSD instructions can have immediates that exceed 12-bits and therefore cannot be encoded in the RISCV instruction. Handle these as we do for other load/store instructions. Also add test coverage for all load/store instructions with ...
[ { "path": "src/cmd/internal/obj/riscv/asm_test.go", "patch": "@@ -77,3 +77,57 @@ func TestNoRet(t *testing.T) {\n \t\tt.Errorf(\"%v\\n%s\", err, out)\n \t}\n }\n+\n+func TestImmediateSplitting(t *testing.T) {\n+\tdir, err := ioutil.TempDir(\"\", \"testimmsplit\")\n+\tif err != nil {\n+\t\tt.Fatal(err)\n+\t}...
2020-01-16T15:51:40
ggml-org/llama.cpp
99881f77d82efda80b21057d84f1cc2df2f1e0f6
b5769d92b4510c77691ad9e3f8b643c2ba202e53
whisper : add check that target name exists (whisper/3103) This commit adds a check to makes sure that the target exists before trying to add compile options to ignore warnings when using MSVC. The motivation for this is currently the build is broken depending on the cmake options provided. With this fix it should be...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -368,10 +368,19 @@ if (MSVC)\n /wd4267 # Conversion from 'size_t' to a smaller type, possible loss of data\n )\n function(disable_msvc_warnings target_name)\n- target_compile_options(${target_name} PRIVATE ${MSVC_WARNING_FLAGS})\n+ ...
2025-05-01T08:05:24
rust-lang/rust
4e1b885595447386c925be1732cccfed9daf8807
64e0a0a68da8a6f5a885e5034b4e4cf44a769d41
Add a version to some FIXMEs that will be resolved in LLVM 20
[ { "path": "library/compiler-builtins/configure.rs", "patch": "@@ -74,7 +74,7 @@ pub fn configure_f16_f128(target: &Target) {\n // Selection failure <https://github.com/llvm/llvm-project/issues/50374>\n \"s390x\" => false,\n // Infinite recursion <https://github.com/llvm/llvm-project/...
2025-01-24T08:45:56
nodejs/node
3fa5d80edae000eb280aa9c715ac9245e3b98e06
98609fc1c4635f02f8f6ef9dd079207a1204b9a1
benchmark: chunky http client should exit with 0 Previously when there is an error in the chunky client of the http benchmark, the server would not check the exit code and thus produce invalid results. PR-URL: https://github.com/nodejs/node/pull/12916 Fixes: https://github.com/nodejs/node/issues/12903 Reviewed-By: Vs...
[ { "path": "benchmark/http/http_server_for_chunky_client.js", "patch": "@@ -1,5 +1,6 @@\n 'use strict';\n \n+var assert = require('assert');\n var path = require('path');\n var http = require('http');\n var fs = require('fs');\n@@ -37,6 +38,7 @@ server.listen(PIPE);\n \n var child = fork(pep, process.argv.sl...
2017-05-09T09:06:07
vuejs/vue
4b8eb75c7a5544a1f65ebd679fd89639208d5976
4314f45022c79dae11f46720b899c453abb1fc6f
fix coverage
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -1,14 +1,12 @@\n /* @flow */\n \n-import { warn } from 'core/util/index'\n-\n /**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\n export function addClass (el: Element, cls: ?strin...
2016-11-01T19:53:36
huggingface/transformers
f6301b9a13b8467d1f88a6f419d76aefa15bd9b8
f6295c6c535c2b036a4533327ab5a92c6b199b78
Falcon: fix revision propagation (#26006) * Fix revision propagation * Cleaner
[ { "path": "src/transformers/models/auto/configuration_auto.py", "patch": "@@ -1016,13 +1016,11 @@ def from_pretrained(cls, pretrained_model_name_or_path, **kwargs):\n kwargs[\"name_or_path\"] = pretrained_model_name_or_path\n trust_remote_code = kwargs.pop(\"trust_remote_code\", None)\n ...
2023-09-06T11:21:00
golang/go
71239b4f491698397149868c88d2c851de2cd49b
df2999ef43ea49ce1578137017949c0ee660608a
runtime: fix wrong offset when calling ppc64x nanotime syscall There is a wrong offset when getting the results of a clock_gettime syscall. Although the syscall will never be called in native ppc64x, QEMU doesn't implement VDSO, so it will return wrong values. Fixes #36592 Change-Id: Icf838075228dcdd62cf2c1279aa983e...
[ { "path": "src/runtime/sys_linux_ppc64x.s", "patch": "@@ -280,7 +280,7 @@ fallback:\n \tADD\t$32, R1, R4\n \tSYSCALL $SYS_clock_gettime\n \tMOVD\t32(R1), R3\n-\tMOVD\t48(R1), R5\n+\tMOVD\t40(R1), R5\n \tJMP\tfinish\n \n TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28", "additions": 1, "deletion...
2020-01-17T20:59:59
ggml-org/llama.cpp
b5769d92b4510c77691ad9e3f8b643c2ba202e53
8936784f7a1ec4f91637d04b77fdc90ec36ebac9
ggml : suppress Windows compiler warnings (whisper/3075) * whisper: suppress Windows compiler warnings This commit disables compiler warnings on window using MSVC. The motivation for these changes is that some compilers generate warnings for these conversion, for example Windows MSVC, and there are quite a few of th...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -360,3 +360,18 @@ write_basic_package_version_file(\n install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ggml-config.cmake\n ${CMAKE_CURRENT_BINARY_DIR}/ggml-version.cmake\n DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/ggml)\n+\n+if (MSVC)\n+ set(MS...
2025-04-29T13:47:55
vuejs/vue
0cd1489e68891e4ca532ce7299d09e8af5ae3f52
4a3b4c4a43dedcd9460ebddd56488943df8fca4e
.number modifier should work with select, radio, checkbox (fix #4018) (#4022) * support number modifier in select, radio, checkbox * add test case * add ASTModifier type to specify modifiers type * fix typo * keep code consistent
[ { "path": "flow/compiler.js", "patch": "@@ -41,9 +41,11 @@ declare type ModuleOptions = {\n staticKeys?: Array<string>; // AST properties to be considered static\n }\n \n+declare type ASTModifiers = { [key: string]: boolean }\n+\n declare type ASTElementHandler = {\n value: string;\n- modifiers: ?{ [ke...
2016-11-01T15:50:22
nodejs/node
1d5f5aa7e1fb43d070fad137636d03ab2e9280fe
56812c81a370c4aa5937b79a40226b6fca060379
doc: update COLLABORATOR_GUIDE.md PR-URL: https://github.com/nodejs/node/pull/12555 Fixes: https://github.com/nodejs/node/issues/12021 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Richard Lau <ricl...
[ { "path": "COLLABORATOR_GUIDE.md", "patch": "@@ -4,6 +4,7 @@\n \n * [Issues and Pull Requests](#issues-and-pull-requests)\n * [Accepting Modifications](#accepting-modifications)\n+ - [Useful CI Jobs](#useful-ci-jobs)\n - [Internal vs. Public API](#internal-vs-public-api)\n - [Breaking Changes](#brea...
2017-05-12T13:49:39
rust-lang/rust
d94b64dcefcdf4ad29e8d5f8240389d9506968e5
2f348cb7ce4063fa4eb40038e6ada3c5214717bd
rustdoc: add nobuild typescript checking to our JS By nobuild, I mean that the type annotations are all in comments, not in the "native" typescript syntax. This is a bit uglier, but it lets you rapid-prototype without tsc, works with all the native browser debugging tools, and keeps Node out of Rust's bootstrap chain....
[ { "path": "src/ci/docker/host-x86_64/mingw-check/Dockerfile", "patch": "@@ -29,7 +29,7 @@ ENV PATH=\"/node/bin:${PATH}\"\n \n # Install es-check\n # Pin its version to prevent unrelated CI failures due to future es-check versions.\n-RUN npm install es-check@6.1.1 eslint@8.6.0 -g\n+RUN npm install es-check@6...
2025-01-13T22:20:36
huggingface/transformers
f6295c6c535c2b036a4533327ab5a92c6b199b78
172f42c512e1bf32554ef910fe82f07916b4d4af
Update README.md (#26003) fixed a typo
[ { "path": "examples/README.md", "patch": "@@ -19,7 +19,7 @@ We host a wide range of example scripts for multiple learning frameworks. Simply\n \n We also have some [research projects](https://github.com/huggingface/transformers/tree/main/examples/research_projects), as well as some [legacy examples](https:/...
2023-09-06T09:55:11
ggml-org/llama.cpp
8936784f7a1ec4f91637d04b77fdc90ec36ebac9
13c9a3319b65469e883c49dd1c478abedc410157
mtmd : add **vision** support for Mistral Small 3.1 (#13231) * convert ok * load ok, missing patch merger * ah sheet it works * update llava/readme * add test * fix test
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -1899,7 +1899,10 @@ def prepare_tensors(self):\n raise ValueError(f\"Unprocessed experts: {experts}\")\n \n \n-@ModelBase.register(\"LlavaForConditionalGeneration\")\n+@ModelBase.register(\n+ \"LlavaForConditionalGeneration\", # pixtral\n+ ...
2025-05-01T15:05:42
vuejs/vue
a632d601476d582c612de90dfcbade1b372012ce
84918577d246619c2786b65479e5dd8ed5c6a7ae
Check and warn for falsy class names (fixes #4050) (#4051) This commit adds a check for falsy names (null or empty string) before attempting to add or remove them, to prevent a DOM exception. A warning will also be triggered if in development env.
[ { "path": "src/platforms/web/runtime/class-util.js", "patch": "@@ -1,10 +1,17 @@\n /* @flow */\n \n+import { warn } from 'core/util/index'\n+\n /**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\n-export function addClass (el: Element, cls: string...
2016-11-01T15:30:43
golang/go
df2999ef43ea49ce1578137017949c0ee660608a
02816a2cad23a9399a6ad18033db0586c110de70
test: disable test for #36516 when cgo is not enabled CL 214679 added a -race test which shouldn't be run when cgo is not enabled. Fixes the nocgo builder. Change-Id: Iceddf802c4ef6c0de2c3a968e86342303d2d27d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/215477 Run-TryBot: Tobias Klauser <tobias.klauser@gma...
[ { "path": "test/fixedbugs/issue36516.go", "patch": "@@ -1,4 +1,4 @@\n-// +build linux,amd64\n+// +build cgo,linux,amd64\n // run -race\n \n // Copyright 2020 The Go Authors. All rights reserved.", "additions": 1, "deletions": 1, "language": "Go" } ]
2020-01-19T19:05:15
nodejs/node
9f8e030f1b41d3625cf36c282090c6a90c7a203e
d7d16f7b8b4f0203f8e3128c37a1329061456c5d
src: add/move hasCrypto checks for async tests Currently when configured --without-ssl these test will fail. In test-crypto-pbkdf2.js and test-crypto-randomBytes.js the check exists but just need to be moved before the require of crypto. There was no check in test-async-wrap-uncaughtexception.js so one was added. PR...
[ { "path": "test/async-hooks/test-crypto-pbkdf2.js", "patch": "@@ -1,16 +1,16 @@\n 'use strict';\n \n const common = require('../common');\n+if (!common.hasCrypto) {\n+ common.skip('missing crypto');\n+ return;\n+}\n const assert = require('assert');\n const tick = require('./tick');\n const initHooks = re...
2017-05-11T06:56:33
huggingface/transformers
172f42c512e1bf32554ef910fe82f07916b4d4af
b8def689346c45958268ec389ee6242bddc6d78c
save space when converting hf model to megatron model. (#25950) * fix convert megatron model too large * fix convert megatron model too large
[ { "path": "src/transformers/models/megatron_gpt2/checkpoint_reshaping_and_interoperability.py", "patch": "@@ -737,7 +737,7 @@ def convert_checkpoint_from_transformers_to_megatron(args):\n word_emb_dict = get_element_from_dict_by_path(\n output_state_dict[i], \"model.language_model.embedd...
2023-09-05T20:47:48
vuejs/vue
84918577d246619c2786b65479e5dd8ed5c6a7ae
2ac581bb7f34b1ef0f35c3e6945acd630a92453e
fix problematic use of 'deprecated' in warnings (#4043)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -399,7 +399,7 @@ function processAttrs (el) {\n if (expression) {\n warn(\n `${name}=\"${value}\": ` +\n- 'Interpolation inside attributes has been deprecated. ' +\n+ 'Interpolation inside attributes h...
2016-11-01T15:17:25
ggml-org/llama.cpp
a70183eb0079fdf6ebeaed12966338a039461b5d
8d33d740c308fe0049515668aac0e561269afe9e
llama-model : fix the reported size class for nomic-embed-text-v2-moe (#13223)
[ { "path": "src/llama-model.cpp", "patch": "@@ -40,6 +40,7 @@ const char * llm_type_name(llm_type type) {\n case LLM_TYPE_335M: return \"335M\";\n case LLM_TYPE_410M: return \"410M\";\n case LLM_TYPE_450M: return \"450M\";\n+ case LLM_TYPE_475M: ...
2025-05-01T07:09:41
golang/go
cbaa666682386fe5350bf87d7d70171704c90fe4
98d2717499575afe13d9f815d46fcd6e384efb0c
net: document *OpError.Err must not be nil The point of *net.OpError is to add details to an underlying lower level error. It makes no sense to have an OpError without an Err and a nil *OpError.Err will cause *OpError.Error() method to panic. Fixes #33007 Change-Id: If4fb2501e02dad110a095b73e18c47312ffa6015 Reviewed...
[ { "path": "src/net/net.go", "patch": "@@ -452,6 +452,7 @@ type OpError struct {\n \tAddr Addr\n \n \t// Err is the error that occurred during the operation.\n+\t// The Error method panics if the error is nil.\n \tErr error\n }\n ", "additions": 1, "deletions": 0, "language": "Go" } ]
2019-07-26T03:44:06
nodejs/node
9ce2271e813016685d1c8f9ab3e7ce6c85eee069
abfd4bf9dfbf4e9817fe2c0b08476f505c4012d1
https: support agent construction without new Fixes: https://github.com/nodejs/node/issues/12918 PR-URL: https://github.com/nodejs/node/pull/12927 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/https.js", "patch": "@@ -119,6 +119,9 @@ function createConnection(port, host, options) {\n \n \n function Agent(options) {\n+ if (!(this instanceof Agent))\n+ return new Agent(options);\n+\n http.Agent.call(this, options);\n this.defaultPort = 443;\n this.protocol = 'https:';", ...
2017-05-09T18:32:34
huggingface/transformers
b8def689346c45958268ec389ee6242bddc6d78c
4fa0aff21ee083d0197a898cdf17ff476fae2ac3
Fix Mega chunking error when using decoder-only model (#25765) * add: potential fix to mega chunking in decoder only model bug * add: decoder with chunking test * add: input_mask passed with input_ids
[ { "path": "src/transformers/models/mega/modeling_mega.py", "patch": "@@ -1542,6 +1542,9 @@ def forward(\n else:\n raise ValueError(\"You have to specify either input_ids or inputs_embeds\")\n \n+ if self.config.use_chunking:\n+ input_shape = torch.tensor([input_shape[0]...
2023-09-05T19:50:14
vuejs/vue
2ac581bb7f34b1ef0f35c3e6945acd630a92453e
b51b9eae4d427d0a909aff8c5f08575c450711a1
SSR: eliminate closure in render.js implementation eliminate closure fix multiple render instances and memory leakage fix eslint magically fix flow typing add multiple render stream test
[ { "path": "flow/options.js", "patch": "@@ -57,7 +57,9 @@ declare type ComponentOptions = {\n _propKeys?: Array<string>;\n _parentVnode?: VNode;\n _parentListeners?: ?Object;\n- _renderChildren?: ?VNodeChildren\n+ _renderChildren?: ?VNodeChildren;\n+ _componentTag: ?string;\n+ _scopeId: ?string;\n ...
2016-10-20T17:34:06
ggml-org/llama.cpp
4254bb49518e0f920f14c9aadd96eefdfd38b429
9998540149a490200894acfe595e9a1546bab723
ggml : fix ggml_gallocr_ptr type (ggml/1205)
[ { "path": "ggml/include/ggml-cpp.h", "patch": "@@ -24,7 +24,7 @@ typedef std::unique_ptr<gguf_context, gguf_context_deleter> gguf_context_ptr;\n \n struct ggml_gallocr_deleter { void operator()(ggml_gallocr_t galloc) { ggml_gallocr_free(galloc); } };\n \n-typedef std::unique_ptr<ggml_gallocr_t, ggml_gallocr...
2025-04-30T13:20:40
golang/go
c112289ee4141ebc31db50328c355b01278b987b
316fd8cc4a7fab2e1bb45848bc30ea8b8a0b231a
cmd/compile: change the "bogus line" to be 1 The previous value was "too bogus" and caused objdump to crash. Updated infinite loop test results (only run if -args -f) in ssa/debug_test.go Probably also fixes #36621 but that bug needs more info to tell for certain. Fixes #36570 Change-Id: I51144641d25d559308a98d726d8...
[ { "path": "src/cmd/compile/internal/ssa/testdata/infloop.dlv-opt.nexts", "patch": "@@ -2,11 +2,11 @@\n 6:\tfunc test() {\n 8:\t\tgo func() {}()\n 10:\t\tfor {\n-1048575:\n+1:\tpackage main\n 10:\t\tfor {\n-1048575:\n+1:\tpackage main\n 10:\t\tfor {\n-1048575:\n+1:\tpackage main\n 10:\t\tfor {\n-1048575:\n+1...
2020-01-17T17:03:55
nodejs/node
abfd4bf9dfbf4e9817fe2c0b08476f505c4012d1
631cb42b4e2e067d82bd0c11b9317caf3b47e14a
doc: clarify node.js addons are c++ PR-URL: https://github.com/nodejs/node/pull/12898 Fixes: https://github.com/nodejs/node/issues/7129 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna He...
[ { "path": "doc/api/_toc.md", "patch": "@@ -7,7 +7,7 @@\n \n * [Assertion Testing](assert.html)\n * [Buffer](buffer.html)\n-* [C/C++ Addons](addons.html)\n+* [C++ Addons](addons.html)\n * [C/C++ Addons - N-API](n-api.html)\n * [Child Processes](child_process.html)\n * [Cluster](cluster.html)", "additions...
2017-05-08T09:36:41
huggingface/transformers
4fa0aff21ee083d0197a898cdf17ff476fae2ac3
d0354e5e86842b757cec1ecb7de314a1f2421c1e
[`VITS`] tokenizer integration test: fix revision did not exist (#25996) * revision did not exist * correct revision
[ { "path": "tests/models/vits/test_tokenization_vits.py", "patch": "@@ -174,7 +174,7 @@ def test_tokenizer_integration(self):\n for tokenizer_class in tokenizer_classes:\n tokenizer = tokenizer_class.from_pretrained(\n \"facebook/mms-tts-eng\",\n- revision=\...
2023-09-05T19:21:33
vuejs/vue
3fef65c742ca6fa4773206ee26789d3ad3499cbe
cca4469c38325ed2ddd62f8705315ad8b8265677
fix vuejsjob links
[ { "path": "BACKERS.md", "patch": "@@ -48,7 +48,7 @@ You can join them in supporting Vue.js development by [pledging on Patreon](htt\n <img width=\"240px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/2mhost.png\">\n </a>\n \n-<a href=\"https://vuejobs.com/?ref_s...
2016-10-31T17:06:41
ggml-org/llama.cpp
9998540149a490200894acfe595e9a1546bab723
e1e8e0991ffd9e99a445c6812bb519d5bac9f4b5
cuda : fix unused variable compile warning (whisper/0) ggml-ci
[ { "path": "ggml/src/ggml-cuda/cpy.cu", "patch": "@@ -592,6 +592,8 @@ void ggml_cuda_cpy(ggml_backend_cuda_context & ctx, const ggml_tensor * src0, gg\n dest_ptrs_d = ctx.cuda_graph->dest_ptrs_d;\n graph_cpynode_index = ctx.cuda_graph->graph_cpynode_index;\n }\n+#else\n+ GGML_UNUSED(di...
2025-04-24T15:59:06
rust-lang/rust
16e2196fc2d9aa87d261e6163e6a13bc9d761f60
83bde363b633a68a1a94441b685ee5a87c60879c
`useless_asref`: no lint if in a closure to change the ref depth Removing the `.as_ref()` or `.as_mut()` as the top-level expression in a closure may change the type of the result. In this case, it may be better not to lint rather than proposing a fix that would not work.
[ { "path": "clippy_lints/src/methods/useless_asref.rs", "patch": "@@ -55,12 +55,19 @@ pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, call_name: &str,\n let (base_res_ty, res_depth) = walk_ptrs_ty_depth(res_ty);\n let (base_rcv_ty, rcv_depth) = walk_ptrs_ty_depth(rcv_ty);\n ...
2025-01-27T23:03:00
golang/go
316fd8cc4a7fab2e1bb45848bc30ea8b8a0b231a
574c286607015297e35b7c02c793038fd827e59b
cmd/compile: mark ... argument to checkptrArithmetic as not escaping Fixes #36516 Change-Id: Ibf4f86fb3a25fa30e0cd54e2dd2e12c60ee75ddb Reviewed-on: https://go-review.googlesource.com/c/go/+/214679 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
[ { "path": "src/cmd/compile/internal/gc/walk.go", "patch": "@@ -1705,7 +1705,6 @@ func mkdotargslice(typ *types.Type, args []*Node, init *Nodes, ddd *Node) *Node\n \tif ddd != nil {\n \t\tesc = ddd.Esc\n \t}\n-\n \tif len(args) == 0 {\n \t\tn := nodnil()\n \t\tn.Type = typ\n@@ -1740,6 +1739,9 @@ func walkCal...
2020-01-14T17:50:43
vuejs/vue
0d35aa5f217ec612165a8e7e1b5f636d222a6e4e
defd45ccbadb7e0e347b1999d48fe354998ba37a
Fix links on vue-template-compiler README (#4021)
[ { "path": "packages/vue-template-compiler/README.md", "patch": "@@ -38,7 +38,7 @@ The optional `options` object can contain the following:\n \n - `modules`\n \n- An array of compiler modules. For details on compiler modules, refer to its [type definition](https://github.com/vuejs/vue/blob/dev/flow/compiler...
2016-10-24T12:52:11
nodejs/node
631cb42b4e2e067d82bd0c11b9317caf3b47e14a
654afa2c195a68ce4959fe7f918d70da99d7ba05
test: favor deepStrictEqual over deepEqual test-http-mutable-headers uses assert.deepEqual() in three places but appears to only needs it in two of them. Replace one with assert.deepStrictEqual() and remove linting exception. PR-URL: https://github.com/nodejs/node/pull/12883 Reviewed-By: Jeremiah Senkpiel <fishrock12...
[ { "path": "test/parallel/test-http-mutable-headers.js", "patch": "@@ -73,17 +73,14 @@ const s = http.createServer(common.mustCall((req, res) => {\n assert.strictEqual(res.getHeader('x-test-header2'), 'testing');\n \n const headersCopy = res.getHeaders();\n- assert.strictEqual(Object.getProt...
2017-05-07T16:28:12
huggingface/transformers
d0354e5e86842b757cec1ecb7de314a1f2421c1e
6206f599e1f45b619f72f9d194929e545549416f
[`CI`] Fix red CI and ERROR failed should show (#25995) * start with error too * fix ? * start with nit * one more path * use `job_name` * mark pipeline test as slow
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -226,16 +226,16 @@ def to_dict(self):\n test_command += \" || true\"\n steps.append({\"run\": {\"name\": \"Run tests\", \"command\": test_command}})\n \n- check_test_command = f'if [ -s reports/tests_{self.name}/failure...
2023-09-05T18:16:00
ggml-org/llama.cpp
16a457facd996915652f6274384c87602b27d21a
3e168bede4d27b35656ab8026015b87659ecbec2
fix typo: `n_ctx_pre_seq` -> `n_ctx_per_seq` (#13221)
[ { "path": "src/llama-context.cpp", "patch": "@@ -114,7 +114,7 @@ llama_context::llama_context(\n }\n \n if (n_ctx_per_seq > hparams.n_ctx_train) {\n- LLAMA_LOG_WARN(\"%s: n_ctx_pre_seq (%u) > n_ctx_train (%u) -- possible training context overflow\\n\",\n+ LLAMA_LOG_WARN(\"%s: n_ctx_per...
2025-04-30T20:28:43
rust-lang/rust
2412289fc9ae0e8903d1c3cca8ef0aaf84eae307
885641bab13f89e5b42f5ee88dc8e97f85e17243
Fix rustc-pull CI's bash commands
[ { "path": "src/doc/rustc-dev-guide/.github/workflows/rustc-pull.yml", "patch": "@@ -50,10 +50,10 @@ jobs:\n RESULT=`gh pr list --author github-actions[bot] --state open -q 'map(select(.title==\"Rustc pull update\")) | length' --json title`\n if [[ \"$RESULT\" -eq 0 ]]; then\n ...
2025-01-27T22:34:36
vuejs/vue
defd45ccbadb7e0e347b1999d48fe354998ba37a
7dc38dea27ba7b99d8cb56e1cbb9be0659e217f7
Typo fix: optimizier -> optimizer (#4015)
[ { "path": "src/compiler/optimizer.js", "patch": "@@ -8,7 +8,7 @@ let isPlatformReservedTag\n const genStaticKeysCached = cached(genStaticKeys)\n \n /**\n- * Goal of the optimizier: walk the generated template AST tree\n+ * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees...
2016-10-24T12:25:07
golang/go
574c286607015297e35b7c02c793038fd827e59b
998cbe29832a989eff6e239d6b70ff1c92ad1fa6
cmd/go: trim paths from vendored packages with -trimpath In CL 199821, we stopped setting the module directory for vendored packages when -mod=vendor is used. This broke -trimpath, since we replace the module directory with a string derived from the module path and version. A comment in CL 202977 makes it clear that t...
[ { "path": "src/cmd/go/internal/work/gc.go", "patch": "@@ -227,7 +227,7 @@ func (a *Action) trimpath() string {\n \t// For \"go build -trimpath\", rewrite package source directory\n \t// to a file system-independent path (just the import path).\n \tif cfg.BuildTrimpath {\n-\t\tif m := a.Package.Module; m != ...
2020-01-15T21:29:46
huggingface/transformers
6206f599e1f45b619f72f9d194929e545549416f
8d518013efbd10c178dd0dba0f9ba93229e2e78a
Add LLaMA resources (#25859) * docs: feat: model resources for llama * fix: resolve suggestion Co-authored-by: Steven Liu <59462357+stevhliu@users.noreply.github.com> Co-authored-by: Jungnerd <46880056+jungnerd@users.noreply.github.com> Co-authored-by: Wonhyeong Seo <wonhseo@kakao.com> --------- Co-autho...
[ { "path": "docs/source/en/model_doc/llama.md", "patch": "@@ -55,6 +55,28 @@ Based on the original LLaMA model, Meta AI has released some follow-up works:\n \n - **Llama2**: Llama2 is an improved version of Llama with some architectural tweaks (Grouped Query Attention), and is pre-trained on 2Trillion tokens...
2023-09-05T17:50:08
ggml-org/llama.cpp
3e168bede4d27b35656ab8026015b87659ecbec2
ceda28ef8e310a8dee60bf275077a3eedae8e36c
convert : improve model arch handling (#13122) * convert : improve model arch handling * use AutoConfig * rm trust_remote_code * Update convert_hf_to_gguf.py * fix self.block_count for vision * fix NomicBertModel
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -16,6 +16,7 @@\n from hashlib import sha256\n from typing import TYPE_CHECKING, Any, Callable, ContextManager, Iterable, Iterator, Literal, Sequence, TypeVar, cast\n from itertools import chain\n+from transformers import AutoConfig\n \n import math\n import nu...
2025-04-30T14:56:24
rust-lang/rust
ff2656d67152a6d3e5f279bdd59081c404bb54f3
a4e65562746a195229efef4a50b225be11658cb1
Back out "Fix a mistake in condition" This backs out commit e5c38558f5dbc37cbc91f9fda58144ce02e1f5aa.
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/diagnostics/expr.rs", "patch": "@@ -550,7 +550,7 @@ pub fn record_literal_missing_fields(\n ) -> Option<(VariantId, Vec<LocalFieldId>, /*has spread expr*/ bool)> {\n let (fields, has_spread_expr, has_ellipsis) = match expr {\n Expr::RecordLit ...
2025-01-27T22:20:11
vuejs/vue
7dc38dea27ba7b99d8cb56e1cbb9be0659e217f7
31056616627cd5be14aa9cc75a71e7c5c433f9a0
fix SFC parsing pug templates that contains "<" (fix #3973)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -44,7 +44,23 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isSpecialTag = makeMap('script,style', true)\n+const isScriptOrStyle = makeMap('script,style', true)\n+const hasLang = attr => attr....
2016-10-22T08:27:35
nodejs/node
9fd22bc4d4a90a5cdbf6db4d61eb94179f136a12
bb88caec0680d098f4de936e1b2d09756344fca1
build: fix ninja build failure (GYP patch) Currently the files specified in libraries in node.gyp `cctest` target are getting a '.lib' extension on windows when generated with ninja. This commit adds a check to see if a file has a '.obj' extension and in that case no '.lib' extension will be added. Also, the LIBS spe...
[ { "path": "tools/gyp/pylib/gyp/generator/ninja.py", "patch": "@@ -2148,13 +2148,13 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,\n restat=True,\n command=mtime_preserving_solink_base % {'suffix': '@$link_file_list'},\n rspfile='$link_file_list',\n- rspfile_co...
2017-04-18T06:20:56
golang/go
998cbe29832a989eff6e239d6b70ff1c92ad1fa6
d2de9bd59c068c1bfcb4293de4286196dacf2e43
testing: don't run Cleanup functions until parallel subtests complete Fixes #31651 Change-Id: Idbab0c4355fcc58520e210126795223435cf0078 Reviewed-on: https://go-review.googlesource.com/c/go/+/214822 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatri...
[ { "path": "src/testing/panic_test.go", "patch": "@@ -16,6 +16,9 @@ import (\n )\n \n var testPanicTest = flag.String(\"test_panic_test\", \"\", \"TestPanic: indicates which test should panic\")\n+var testPanicParallel = flag.Bool(\"test_panic_parallel\", false, \"TestPanic: run subtests in parallel\")\n+var...
2020-01-14T23:28:47
huggingface/transformers
8d518013efbd10c178dd0dba0f9ba93229e2e78a
6bc517ccd4a3bcda4d0621d54a37c3e047df223a
[Wav2Vec2 Conformer] Fix inference float16 (#25985) * [Wav2Vec2 Conformer] Fix inference float16 * fix test * fix test more * clean pipe test
[ { "path": "src/transformers/models/wav2vec2_conformer/modeling_wav2vec2_conformer.py", "patch": "@@ -406,13 +406,15 @@ def forward(self, hidden_states):\n return self.cached_rotary_positional_embedding\n \n self.cached_sequence_length = sequence_length\n+ # Embeddings are computed...
2023-09-05T17:26:06
ggml-org/llama.cpp
e5007a5edf2692ef7151a81a61ce2716b83374e5
416313773b53585fddcafbcb914cbbfbaeb94b1f
vulkan: use uint array index to avoid glslang bug (#13193)
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/dequant_funcs_cm2.comp", "patch": "@@ -482,7 +482,7 @@ float16_t dequantFuncIQ2_XXS(const in decodeBufIQ2_XXS bl, const in uint blockCo\n const uint ib8 = (idx & 0x18) >> 3; // 0..3\n const uint iqs = 8 * ib32 + ib8;\n \n- const uint8_t qs = bl.bloc...
2025-04-30T12:38:37
vuejs/vue
31056616627cd5be14aa9cc75a71e7c5c433f9a0
5f8ae401d468694d2476890eb5f0c021e9bf2720
v-model binding with array. (fix #3958,#3979) (#3988) * fix v-model with array binding * add mutli selects test case * add test case. v-bind with array * add comments * code refactor
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -2,6 +2,7 @@\n \n import { isIE } from 'core/util/env'\n import { addHandler, addProp, getBindingAttr } from 'compiler/helpers'\n+import parseModel from 'web/util/model'\n \n let warn\n \n@@ -79,7 +80,7 @@ function genRadioModel (el: A...
2016-10-22T06:57:32
huggingface/transformers
6bc517ccd4a3bcda4d0621d54a37c3e047df223a
1110b565d62e56105c8e5e4e2848bfbf469f8200
deepspeed resume from ckpt fixes and adding support for deepspeed optimizer and HF scheduler (#25863) * Add support for deepspeed optimizer and HF scheduler * fix bug * fix the import * fix issue with deepspeed scheduler saving for hf optim + hf scheduler scenario * fix loading of hf scheduler when loading deepspe...
[ { "path": "src/transformers/integrations/deepspeed.py", "patch": "@@ -26,6 +26,8 @@\n if is_torch_available():\n import torch\n \n+ from ..optimization import get_scheduler\n+\n logger = logging.get_logger(__name__)\n \n \n@@ -274,7 +276,7 @@ def deepspeed_optim_sched(trainer, hf_deepspeed_config, ar...
2023-09-05T17:01:20
ggml-org/llama.cpp
416313773b53585fddcafbcb914cbbfbaeb94b1f
07c2e2f76cce9a61c110b6995fbb90ccea2c3aaa
ggml : fix ppc64le build (#13176) Build fails with compilation error on power pc. This patch fixes the same. Tested with unit tests run via --build <build_dir> && cd <build_dir> && make test Signed-off-by: Shalini Salomi Bodapati <Shalini.Salomi.Bodapati@ibm.com>
[ { "path": "ggml/src/ggml-cpu/simd-mappings.h", "patch": "@@ -341,7 +341,7 @@ static inline void __avx_f32cx8_store(ggml_fp16_t *x, __m256 y) {\n #define GGML_F32_EPR 4\n \n #define GGML_F32x4 vector float\n-#define GGML_F32x4_ZERO 0.0f\n+#define GGML_F32x4_ZERO {0.0f}\n #define...
2025-04-30T11:17:08
golang/go
d2de9bd59c068c1bfcb4293de4286196dacf2e43
f77e7ed7e374311e684fe810bf1aabaf18965a8a
runtime: ignore power notification error seen on Windows Docker Fixes #36557 Change-Id: Ia8125f382d5e14e5612da811268a58971cc9ac08 Reviewed-on: https://go-review.googlesource.com/c/go/+/214917 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <br...
[ { "path": "src/runtime/os_windows.go", "patch": "@@ -294,8 +294,9 @@ func loadOptionalSyscalls() {\n \n func monitorSuspendResume() {\n \tconst (\n-\t\t_DEVICE_NOTIFY_CALLBACK = 2\n-\t\t_ERROR_FILE_NOT_FOUND = 2\n+\t\t_DEVICE_NOTIFY_CALLBACK = 2\n+\t\t_ERROR_FILE_NOT_FOUND = 2\n+\t\t_ERROR_INVALID_P...
2020-01-15T14:38:16
nodejs/node
bb88caec0680d098f4de936e1b2d09756344fca1
bee250c2326dc9424ff4b940d34a5bd7017022c1
build: fix ninja build failure When working on commit 6a09a69ec9d36b705e9bde2ac1a193566a702d96 ("build: enable cctest to use generated objects") I did not take into account building with ninja: $ ./configure $ tools/gyp_node.py -f ninja $ ninja -C out/Release $ ln -fs out/Release/node node When ninja generated the n...
[ { "path": "common.gypi", "patch": "@@ -35,6 +35,13 @@\n 'icu_use_data_file_flag%': 0,\n \n 'conditions': [\n+ ['GENERATOR==\"ninja\"', {\n+ 'OBJ_DIR': '<(PRODUCT_DIR)/obj',\n+ 'V8_BASE': '<(PRODUCT_DIR)/obj/deps/v8/src/libv8_base.a',\n+ }, {\n+ 'OBJ_DIR%': '<(PRODUCT...
2017-04-18T06:20:56
rust-lang/rust
1f4309cec4462ea76a2c7a89fa0aff3d1782e60b
0df0662ee06bb8987e0cdbfae5634b1630d41236
Fix 2/4 tests skipped by opt-dist
[ { "path": "src/ci/docker/host-aarch64/dist-aarch64-linux/Dockerfile", "patch": "@@ -20,6 +20,7 @@ RUN yum upgrade -y && \\\n gcc-c++ \\\n git \\\n glibc-devel \\\n+ glibc-static \\\n libedit-devel \\\n libstdc++-devel \\\n make \\", "additions": 1, "deletions...
2025-01-24T00:08:37
vuejs/vue
9c91190b40dd8e5ec61992e97d476af28e754de9
1a8720d6ead500eed5d40457a3e7f59fe8972472
Fix typos. (#3956)
[ { "path": "build/config.js", "patch": "@@ -30,7 +30,7 @@ const builds = {\n env: 'production',\n banner\n },\n- // Runtime+compiler standalone developement build.\n+ // Runtime+compiler standalone development build.\n 'web-standalone-dev': {\n entry: path.resolve(__dirname, '../src/entries...
2016-10-19T15:21:22
huggingface/transformers
1110b565d62e56105c8e5e4e2848bfbf469f8200
da1af21dbbc48ad4f6f0b27635cd3993ddc22b55
Add TFDebertaV2ForMultipleChoice (#25932) * Add TFDebertaV2ForMultipleChoice * Import newer model in main init * Fix import issues * Fix copies * Add doc * Fix tests * Fix copies * Fix docstring
[ { "path": "docs/source/en/model_doc/deberta-v2.md", "patch": "@@ -152,3 +152,8 @@ contributed by [kamalkraj](https://huggingface.co/kamalkraj). The original code\n \n [[autodoc]] TFDebertaV2ForQuestionAnswering\n - call\n+\n+## TFDebertaV2ForMultipleChoice\n+\n+[[autodoc]] TFDebertaV2ForMultipleChoice\n...
2023-09-05T16:13:06
ggml-org/llama.cpp
a0f7016d170ca4bfe24d9a9f26c024d034af69f2
19e899ce21a7c9ffcf8bb2b22269a75f6e078f8f
rpc : fix cache directory initialization (#13188) Signed-off-by: xiaofei <hbuxiaofei@gmail.com>
[ { "path": "examples/rpc/rpc-server.cpp", "patch": "@@ -304,8 +304,9 @@ int main(int argc, char * argv[]) {\n get_backend_memory(&free_mem, &total_mem);\n }\n const char * cache_dir = nullptr;\n- std::string cache_dir_str = fs_get_cache_directory() + \"rpc/\";\n+ std::string cache_dir_s...
2025-04-30T06:29:22
golang/go
ee55dd6b647aab616b0819410563767f8552c082
a52db6403c5e34ef76eb3fd01dc078718531d7bf
spec: add missing space in EBNF Fixes #36520 Change-Id: I698ab235f82f7c81caa09318c954847cf3833153 GitHub-Last-Rev: 368a1dc7889c2370fba272bcb45d94822b60d7b9 GitHub-Pull-Request: golang/go#36559 Reviewed-on: https://go-review.googlesource.com/c/go/+/214821 Reviewed-by: Robert Griesemer <gri@golang.org>
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Version of Jan 13, 2020\",\n+\t\"Subtitle\": \"Version of Jan 14, 2020\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2413,7 +2413,7 @@ <h3 id=\"Operands\">Operand...
2020-01-15T01:34:43
nodejs/node
54d331895c721fa85dc0ee237a3bbc04da3a324d
6914aeaefd55b0b57364e70d0ef4374040539792
lib: add guard to originalConsole Currently when building --without-ssl or --without-inspector there will be an error when trying to set up the console in bootstrap_node.js: Can't determine the arch of: 'out/Release/node' bootstrap_node.js:276 if (!globalConsole.hasOwnProperty(key)) ^ T...
[ { "path": "lib/internal/bootstrap_node.js", "patch": "@@ -261,7 +261,9 @@\n enumerable: true,\n get: function() {\n if (!console) {\n- console = installInspectorConsole(originalConsole);\n+ console = originalConsole === undefined ?\n+ NativeModule.require('...
2017-05-07T11:59:49
vuejs/vue
1a8720d6ead500eed5d40457a3e7f59fe8972472
6d31ed255df3e6b6f97270396c04c0eef0d2802b
Fix typo in 'component' (#3978)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -12,7 +12,7 @@ export default class VNode {\n key: string | number | void;\n componentOptions: VNodeComponentOptions | void;\n child: Component | void; // component instance\n- parent: VNode | void; // compoennt placeholder node\n+ parent: VNode | voi...
2016-10-19T14:33:17
huggingface/transformers
70a98024b1b0007d2d8bdced854cd9b638dbb07b
aa5c94d38deb3960e809b75bc959dc4357d3dd2b
Patch with accelerate xpu (#25714) * patch with accelerate xpu * patch with accelerate xpu * formatting * fix tests * revert ruff unrelated fixes * revert ruff unrelated fixes * revert ruff unrelated fixes * fix test * review fixes * review fixes * black fixed * review commits * rev...
[ { "path": "src/transformers/__init__.py", "patch": "@@ -748,6 +748,7 @@\n \"is_torch_npu_available\",\n \"is_torch_tpu_available\",\n \"is_torchvision_available\",\n+ \"is_torch_xpu_available\",\n \"is_vision_available\",\n \"logging\",\n ],\n@@ -4814,6 +48...
2023-09-05T14:41:42
ggml-org/llama.cpp
e2e1ddb93a01ce282e304431b37e60b3cddb6114
d9d398f84f96d16c308d4976f5e90222ecc2a492
server : Prefilling assistant message in openai compatible API (#13174) * Prefilling assistant message in openai compatible API * fixed indentation * fixed code convention * simplify method usage * no more than one assistant message at end of messages * merge checks into prefill code * Update examples/server/uti...
[ { "path": "examples/server/utils.hpp", "patch": "@@ -642,9 +642,31 @@ static json oaicompat_completion_params_parse(\n throw std::runtime_error(\"Cannot use custom grammar constraints with tools.\");\n }\n \n+ // if the assistant message appears at the end of list, we do not add end-of-turn t...
2025-04-29T18:33:10
golang/go
cae9a9fd65cae6cbde0aacfea8f70e952e89f33e
cfe3cd903f018dec3cb5997d53b1744df4e53909
doc: fix up some HTML issues in go_spec.html The HTML linter 'tidy' reports: go_spec.html:2556: Warning: unescaped & which should be written as &amp; go_spec.html:3293: Warning: unescaped & or unknown entity "&s1" go_spec.html:3293: Warning: unescaped & or unknown entity "&a" go_spec.html:3294: Warning: unescaped...
[ { "path": "doc/go_spec.html", "patch": "@@ -2042,7 +2042,7 @@ <h3 id=\"Type_declarations\">Type declarations</h3>\n <p>\n A type declaration binds an identifier, the <i>type name</i>, to a <a href=\"#Types\">type</a>.\n Type declarations come in two forms: alias declarations and type definitions.\n-<p>\n+</...
2020-01-13T05:03:12
vuejs/vue
6d31ed255df3e6b6f97270396c04c0eef0d2802b
7c9575bffe47214f339a70ba9e52770b893b8d1e
typo fix (#3963)
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -22,7 +22,7 @@ export const transitionProps = {\n }\n \n // in case the child is also an abstract component, e.g. <keep-alive>\n-// we want to recrusively retrieve the real component to be rendered\n+// we want to recursively retri...
2016-10-17T09:30:22
nodejs/node
6914aeaefd55b0b57364e70d0ef4374040539792
c68ebe8436796ff73563342ae41386cfb31f2821
test: detect all types of aborts in windows On Windows, 'aborts' are of 2 types, depending on the context: (i) Forced access violation, if --abort-on-uncaught-exception is on which corresponds to exit code 3221225477 (0xC0000005) (ii) raise(SIGABRT) or abort(), which lands up in CRT library calls which corresponds to ...
[ { "path": "test/common/index.js", "patch": "@@ -592,10 +592,13 @@ exports.nodeProcessAborted = function nodeProcessAborted(exitCode, signal) {\n // or SIGABRT (depending on the compiler).\n const expectedSignals = ['SIGILL', 'SIGTRAP', 'SIGABRT'];\n \n- // On Windows, v8's base::OS::Abort triggers an a...
2017-05-05T11:25:36
huggingface/transformers
aa5c94d38deb3960e809b75bc959dc4357d3dd2b
9a70d6e56f2801c9a3aa80ca97e6a32024db72b7
Show failed tests on CircleCI layout in a better way (#25895) * update * update * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -223,18 +223,27 @@ def to_dict(self):\n # failure.\n test_command = f\"({test_command}) || true\"\n else:\n- test_command += \" | tee tests_output.txt\"\n+ test_command += \" || true\"\n ...
2023-09-05T13:49:33
ggml-org/llama.cpp
5a6398011704c31178d7b774be67856ba57647c8
cdf76586b23c67abd3ca064ee2c084c57ae240bd
llama-bench: fixed size of fields to correctly map to values (#13183)
[ { "path": "examples/llama-bench/llama-bench.cpp", "patch": "@@ -1133,8 +1133,6 @@ struct test {\n \"build_commit\", \"build_number\", \"cpu_info\", \"gpu_info\", \"backends\", \"model_filename\",\n \"model_type\", \"model_size\", \"model_n_params\", \"n_batch\", \"...
2025-04-29T15:24:36
vuejs/vue
341d0a03570f548c5a2962704a4de8cda0247710
8ba420c35975583486308a55d31c1df7b195574a
fixed #3942 (#3947) * fixed #3942 * fixed #3942
[ { "path": "src/core/observer/index.js", "patch": "@@ -186,6 +186,7 @@ export function defineReactive (\n */\n export function set (obj: Array<any> | Object, key: any, val: any) {\n if (Array.isArray(obj)) {\n+ obj.length = Math.max(obj.length, key)\n obj.splice(key, 1, val)\n return val\n }"...
2016-10-17T02:43:39
golang/go
71154e061f067a668e7b619d7b3701470b8561be
0c65531ef18f0f4c1d983ca677c601afbe5552bb
runtime: better approximate total cost of scavenging Currently, the scavenger is paced according to how long it takes to scavenge one runtime page's worth of memory. However, this pacing doesn't take into account the additional cost of actually using a scavenged page. This operation, "sysUsed," is a counterpart to the...
[ { "path": "src/runtime/mgcscavenge.go", "patch": "@@ -80,6 +80,17 @@ const (\n \t// maxPagesPerPhysPage is the maximum number of supported runtime pages per\n \t// physical page, based on maxPhysPageSize.\n \tmaxPagesPerPhysPage = maxPhysPageSize / pageSize\n+\n+\t// scavengeCostRatio is the approximate rat...
2020-01-13T17:18:51
rust-lang/rust
7268b3d81fd49cceb7c5f58dffb2a4d866528ec7
cadc468b45089c8f6a3f32160cfee47d0504b6c9
fix: Properly handle CRLF line endings in the syntax tree view
[ { "path": "src/tools/rust-analyzer/crates/ide/src/view_syntax_tree.rs", "patch": "@@ -1,11 +1,15 @@\n use hir::Semantics;\n-use ide_db::{FileId, RootDatabase};\n-use span::TextRange;\n+use ide_db::{\n+ line_index::{LineCol, LineIndex},\n+ FileId, LineIndexDatabase, RootDatabase,\n+};\n+use span::{Text...
2025-01-27T20:05:20
huggingface/transformers
aea761499f4b1193f2706f471442da6f9df65d65
7011cd8667d7a51bd608e6a722f061d5ac5f4166
Update training_args.py to remove the runtime error (#25920) This cl iterates through a list of keys rather than dict items while updating the dict elements. Fixes the following error: File "..../transformers/training_args.py", line 1544, in post_init for k, v in self.fsdp_config.items(): RuntimeError: dictionary k...
[ { "path": "src/transformers/training_args.py", "patch": "@@ -1546,10 +1546,10 @@ def __post_init__(self):\n warnings.warn(\"`--fsdp_config` is useful only when `--fsdp` is specified.\")\n with io.open(self.fsdp_config, \"r\", encoding=\"utf-8\") as f:\n self.fsdp_...
2023-09-05T11:43:51
ggml-org/llama.cpp
cdf76586b23c67abd3ca064ee2c084c57ae240bd
7d3af70b089bb349b5d17eb01839224c99ec1952
CUDA: fix non-cont. inputs for batched mat mul (#13155)
[ { "path": "ggml/src/ggml-cuda/convert.cu", "patch": "@@ -1,6 +1,8 @@\n #include \"convert.cuh\"\n #include \"dequantize.cuh\"\n \n+#include <cstdint>\n+\n #define CUDA_Q8_0_NE_ALIGN 2048\n \n template <int qk, int qr, dequantize_kernel_t dequantize_kernel, typename dst_t>\n@@ -570,30 +572,46 @@ static void ...
2025-04-29T14:00:27
nodejs/node
e3e56f1d71fd496c8a25d6b4b50e51d4a682d184
4a7233c1788334c171d2280026333242df7d37af
test: adding tests for initHooks API Async wrap providers tested: - crypto.randomBytes - crypto.pbkdf2 - fs event wrap - fsreqwrap access - fsreqwrap readFile - getaddrinforeq wrap - getnameinforeq wrap - pipe connect wrap - query wrap - pipewrap - processwrap - shutdown wrap - tcpwrap - udpwrap - send wrap - detaile...
[ { "path": "test/async-hooks/coverage.md", "patch": "@@ -0,0 +1,32 @@\n+## AsyncHooks Coverage Overview\n+\n+Showing which kind of async resource is covered by which test:\n+\n+| Resource Type | Test |\n+|----------------------|----------------------------------------...
2016-11-22T16:13:44
vuejs/vue
8ba420c35975583486308a55d31c1df7b195574a
4f5a47d750d4d8b61fe3b5b2251a0a63b391ac27
Fix using one delay to control all transitions. (#3932) * Fix using one delay to control all transitions. Vue transitions have wrong timing when having CSS like the following: ``` .[transition-name]-enter-active, .[transition-name]-leave-active { transition: opacity 0.8s ease, transform 0.7s ease; transit...
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -131,6 +131,10 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {\n }\n \n function getTimeout (delays: Array<string>, durations: Array<string>): number {\n+ while (delays.length < durations.length) {\n+ de...
2016-10-17T02:36:22
huggingface/transformers
391f26459ab1a392aedc82e0546ce5f88acb7cd5
6f125aaa4807d84e9004ce79035c7653aedfd630
Use main in conversion script (#25973) * fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "src/transformers/models/falcon/convert_custom_code_checkpoint.py", "patch": "@@ -9,65 +9,66 @@\n without needing trust_remote_code=True.\n \"\"\"\n \n-parser = ArgumentParser()\n-parser.add_argument(\n- \"--checkpoint_dir\",\n- type=Path,\n- required=True,\n- help=\"Directory containi...
2023-09-05T11:04:49
vuejs/vue
4f5a47d750d4d8b61fe3b5b2251a0a63b391ac27
95bf0c000ef93418be366994b2ff846f3d7797fe
fix root v-else not rendering in prod and switched examples to minified vue for better prod coverage (#3943) * fix root v-else not rendering in production and switched examples to minified vue for better prod coverage * add dev build comment to examples * convert tabs to spaces in todomvc example for consistency
[ { "path": "examples/commits/index.html", "patch": "@@ -18,7 +18,8 @@\n font-weight: bold;\n }\n </style>\n- <script src=\"../../dist/vue.js\"></script>\n+ <!-- Delete \".min\" for console warnings in development -->\n+ <script src=\"../../dist/vue.min.js\"></script>\n </head>\n ...
2016-10-14T13:27:54
ggml-org/llama.cpp
b6ce7430b7eb51f032152316880204e0a9c0470e
5f5e39e1ba5dbea814e41f2a15e035d749a520bc
llama-graph : fix text position for mrope (#13159) * llama-graph : fix text position for mrope * fix typo * explicitly set 4th dim in the loop
[ { "path": "src/llama-graph.cpp", "patch": "@@ -55,13 +55,16 @@ void llm_graph_input_pos::set_input(const llama_ubatch * ubatch) {\n if (ubatch->pos && pos) {\n const int64_t n_tokens = ubatch->n_tokens;\n \n- if (ubatch->token && n_pos_per_embd > 1) {\n+ if (ubatch->token && n_pos_...
2025-04-29T06:45:49