repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
ca854f3cdaa577930b385b61571d5176193b738e
e1937251847bce7f6ccc149dfd64b34152588fce
database/sql: document Connect and Close may need a timeout Opening a connection with Connect should still create a derived context with a timeout because some clients will not use a timeout and the connection pool may open a connection asynchronously. Likewise, if a connection close makes a network operation it shou...
[ { "path": "src/database/sql/driver/driver.go", "patch": "@@ -123,7 +123,9 @@ type Connector interface {\n \t//\n \t// The provided context.Context is for dialing purposes only\n \t// (see net.DialContext) and should not be stored or used for\n-\t// other purposes.\n+\t// other purposes. A default timeout sh...
2020-04-28T14:31:12
nodejs/node
94369d801772e75d70bd498cb45efafa2a2c073c
64688d8e3acaf0c649d2f1fd877a2f2e48291da9
async_hooks: improve comments and function names * Reword several of the comments to be more descriptive. * Rename functions to better indicate what they are doing. * Change AsyncHooks::uid_fields_ to be a fixed array instead of a pointer. * Define regex early so line ends before 80 columns. * Remove obsolete commen...
[ { "path": "lib/async_hooks.js", "patch": "@@ -1,39 +1,58 @@\n 'use strict';\n \n const async_wrap = process.binding('async_wrap');\n-/* Both these arrays are used to communicate between JS and C++ with as little\n- * overhead as possible.\n+/* async_hook_fields is a Uint32Array wrapping the uint32_t array o...
2017-08-02T07:34:59
ggml-org/llama.cpp
f505bd83ca7a43c4585ff3d59135e77eae9c793b
0889589dbe8c67dd518c58a57afbb02dde2dccbe
ci : disable AMD workflows + update NVIDIA workflows (#16200) * ci : disable AMD workflows + update NVIDIA workflows * cont : fixes * cont : update nvidia vulkan workflows
[ { "path": ".github/workflows/build.yml", "patch": "@@ -1302,8 +1302,8 @@ jobs:\n run: |\n GG_BUILD_NO_BF16=1 GG_BUILD_EXTRA_TESTS_0=1 bash ./ci/run.sh ~/results/llama.cpp /mnt/llama.cpp\n \n- ggml-ci-x64-nvidia-v100-cuda:\n- runs-on: [self-hosted, Linux, X64, NVIDIA, V100]\n+ ggml-ci-...
2025-09-23T17:41:40
vuejs/vue
b9de23b1008b52deca7e7df40843e318a42f3f53
2ef67f868dc4ca95453a091a589bab24e226f045
fix: async component should use render owner as force update context Previously, an async component uses its lexical owner as the force update context. This works when the async component is rendered in a scoped slot because in the past parent components always force update child components with any type of slots. Aft...
[ { "path": "src/core/instance/render.js", "patch": "@@ -51,6 +51,13 @@ export function initRender (vm: Component) {\n }\n }\n \n+export let currentRenderingInstance: Component | null = null\n+\n+// for testing only\n+export function setCurrentRenderingInstance (vm: Component) {\n+ currentRenderingInstance...
2019-02-06T03:16:55
huggingface/transformers
3b742ea84cfc32432d60c0b65c886576ef736833
73c88012b769b0364989a21202357d168f12c666
Add SigLIP (#26522) * Add first draft * Use appropriate gelu function * More improvements * More improvements * More improvements * Convert checkpoint * More improvements * Improve docs, remove print statements * More improvements * Add link * remove unused masking function * begin tok...
[ { "path": "README.md", "patch": "@@ -475,6 +475,7 @@ Current number of checkpoints: ![](https://img.shields.io/endpoint?url=https://h\n 1. **[Segment Anything](https://huggingface.co/docs/transformers/model_doc/sam)** (from Meta AI) released with the paper [Segment Anything](https://arxiv.org/pdf/2304.02643...
2024-01-08T17:17:16
golang/go
39380e8e01fec15f5dc78ea430e5641e067d64d0
0ddde4ada2b1aa61310db06b20c936160d3e4567
runtime: fix block leak due to race in span set The span set data structure may leak blocks due to a race in the logic to check whether it's safe to free a block. The simplest example of this race is between two poppers: 1. Popper A claims slot spanSetEntries-2. 2. Popper B claims slot spanSetEntries-1. 3. Popper A g...
[ { "path": "src/runtime/mspanset.go", "patch": "@@ -60,12 +60,10 @@ type spanSetBlock struct {\n \t// Free spanSetBlocks are managed via a lock-free stack.\n \tlfnode\n \n-\t// used represents the number of slots in the spans array which are\n-\t// currently in use. This number is used to help determine when...
2020-04-28T15:14:56
ggml-org/llama.cpp
f6b4af3d04763b1e0130f5b5fce19c4bc6f83f1c
264f1b51872c125e23fa0ac1da5e2a1170de9a08
ggml : fix uninitialized is_on_grid in quantize_row_iq3_xxs_impl (#15928) * fix uninitialized is_on_grid in quantize_row_iq3_xxs_impl * change initialization to true
[ { "path": "ggml/src/ggml-quants.c", "patch": "@@ -3721,6 +3721,7 @@ static void quantize_row_iq3_xxs_impl(int grid_size, const float * GGML_RESTRICT\n }\n float best = 0;\n float scale = max/(2*kMaxQ-1);\n+ for (int k = 0; k < 8; ++k) is_on_grid[k] = true;\n ...
2025-09-23T08:25:20
nodejs/node
64688d8e3acaf0c649d2f1fd877a2f2e48291da9
11a2ca29babcb35132e7d93244b69c544d52dfe4
async_wrap: return undefined if domain is disposed v8::MaybeLocal::ToLocalChecked() will abort on an empty handle. AsyncWrap::MakeCallback returns an empty handle if the domain is disposed, but this should not cause the process to abort. So instead return v8::Undefined() and allow the error to be handled normally. PR...
[ { "path": "src/async-wrap.cc", "patch": "@@ -54,6 +54,7 @@ using v8::String;\n using v8::Symbol;\n using v8::TryCatch;\n using v8::Uint32Array;\n+using v8::Undefined;\n using v8::Value;\n \n using AsyncHooks = node::Environment::AsyncHooks;\n@@ -687,7 +688,7 @@ MaybeLocal<Value> AsyncWrap::MakeCallback(cons...
2017-08-09T06:02:20
vuejs/vue
2ef67f868dc4ca95453a091a589bab24e226f045
fdc5f0363bf528ddd1eda73c313c860ea8cf5e7a
chore: fix typo in scheduler.js [ci skip] (#9425)
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -44,7 +44,7 @@ export let currentFlushTimestamp = 0\n let getNow: () => number = Date.now\n \n // Determine what event timestamp the browser is using. Annoyingly, the\n-// timestamp can either be hi-res ( relative to poge load) or low-res\n+// timesta...
2019-02-05T16:34:16
huggingface/transformers
73c88012b769b0364989a21202357d168f12c666
2272ab57a99bcac972b5252b87c31e24d0b25538
Add segmentation map processing to SAM Image Processor (#27463) * add segmentation map processing to sam image processor * fixup * add tests * reshaped_input_size is shape before padding * update tests for size/shape outputs * fixup * add code snippet to docs * Update docs/source/en/model_doc/sam....
[ { "path": "docs/source/en/model_doc/sam.md", "patch": "@@ -66,6 +66,34 @@ masks = processor.image_processor.post_process_masks(\n scores = outputs.iou_scores\n ```\n \n+You can also process your own masks alongside the input images in the processor to be passed to the model.\n+\n+```python\n+import torch\n+...
2024-01-08T16:40:36
ggml-org/llama.cpp
4b9f4cb0f89a88de4bdf97727d0457b0c648804c
85e72271ba1ce78adf34fd8997803c991e617ca6
devops: add s390x containers (#15915) * devops: add s390x dockerfile Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * devops: add missing ninja Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * devops: move s390x docker into cpu docker Signed-off-by: Aaron Teo <aaron.teo1@ibm.com> * devops: rework s390x docker Sig...
[ { "path": ".devops/s390x.Dockerfile", "patch": "@@ -0,0 +1,122 @@\n+ARG GCC_VERSION=15.2.0\n+ARG UBUNTU_VERSION=24.04\n+\n+### Build Llama.cpp stage\n+FROM --platform=linux/s390x gcc:${GCC_VERSION} AS build\n+\n+RUN --mount=type=cache,target=/var/cache/apt \\\n+ --mount=type=cache,target=/var/lib/apt/lis...
2025-09-23T05:59:34
golang/go
0ddde4ada2b1aa61310db06b20c936160d3e4567
bd01a1b756caf9f7a1e86296c3c69ff65c69b734
runtime: flush mcaches to mcentral before reading memstats Currently mcaches are flushed to mcentral after a bunch of memstats have already been read. This is not safe (in the sense that it doesn't ensure consisent memstats) since memstats may in general change when mcentral data structures are manipulated. Note that...
[ { "path": "src/runtime/mstats.go", "patch": "@@ -513,6 +513,12 @@ func readGCStats_m(pauses *[]uint64) {\n \n //go:nowritebarrier\n func updatememstats() {\n+\t// Flush mcaches to mcentral before doing anything else.\n+\t//\n+\t// Flushing to the mcentral may in general cause stats to\n+\t// change as mcent...
2020-04-28T16:40:38
nodejs/node
11a2ca29babcb35132e7d93244b69c544d52dfe4
28a47aa1bbd4d278293fda2bb3f2df836d743816
errors: migrate _http_outgoing PR-URL: https://github.com/nodejs/node/pull/14735 Refs: https://github.com/nodejs/node/issues/11273 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -998,6 +998,11 @@ Used when an attempt is made to open an IPC communication channel with a\n synchronous forked Node.js process. See the documentation for the\n [`child_process`](child_process.html) module for more information.\n \n+<a id=\"ERR_METHOD_NOT_IMPLEMEN...
2017-08-10T10:58:22
huggingface/transformers
87a6cf41d0faa2df5bd464273534e928c6ac6e99
98dba52ccd713b6a821a597ac2aa50b6d145dcdf
[AttentionMaskConverter] fix sdpa unmask unattended (#28369) fix tensor device
[ { "path": "src/transformers/modeling_attn_mask_utils.py", "patch": "@@ -234,8 +234,8 @@ def _unmask_unattended(\n \n # Get the index of the first non-zero value for every sample in the batch.\n # In the above example, indices = [[2], [0], [1]]]\n- tmp = torch.arange(attention_mask.sha...
2024-01-08T12:33:44
ggml-org/llama.cpp
85e72271ba1ce78adf34fd8997803c991e617ca6
1d0125bcf1cbd7195ad0faf826a20bc7cec7d3f4
ggml-cpu : fix typo in gemm comments [no ci] (#16189)
[ { "path": "ggml/src/ggml-cpu/arch/x86/repack.cpp", "patch": "@@ -878,7 +878,7 @@ static void gemm_q4_b32_8x8_q8_0_lut_avx(int n, float * GGML_RESTRICT s, size_t\n const __m256i rhs_raw_mat_89AB_1 = _mm256_loadu_si256((const __m256i *)(b_ptr_1[b].qs + 64));\n const __m256i rhs...
2025-09-23T03:59:03
golang/go
863424beb2ef735c273af87801bf56f252285889
7b0c5180324c6ec29105aebbf12f551b02c9dd54
internal/goversion: update to 1.15 This is a second attempt at CL 230024, with cmd/go/testdata/script/mod_retention.txt updated to perform a version-independent comparison on the 'go' version added to a go.mod file that lacks one. Fixes #38708 Change-Id: I15dcd83b51ed5ec57946b419bcbaec41e85a46f9 Reviewed-on: https:/...
[ { "path": "src/cmd/go/testdata/script/mod_retention.txt", "patch": "@@ -64,7 +64,7 @@ cmp go.mod go.mod.tidy\n # However, that should not remove other redundant requirements.\n cp go.mod.nogo go.mod\n go list all\n-cmp go.mod go.mod.redundant\n+cmpenv go.mod go.mod.currentgo\n \n \n -- go.mod.tidy --\n@@ -1...
2020-04-28T01:20:36
huggingface/transformers
98dba52ccd713b6a821a597ac2aa50b6d145dcdf
7d9d5cea551b7ac5a6222c0b32a4c269412f7b9a
Bugfix / ffmpeg input device (mic) not working on Windows (#27051) * fix input audio device for windows. * ffmpeg audio device Windows * Fixes wrong input device assignment in Windows * Fixed getting mic on Windows systems by adding _get_microphone_name() function.
[ { "path": "src/transformers/pipelines/audio_utils.py", "patch": "@@ -52,7 +52,7 @@ def ffmpeg_microphone(\n format_for_conversion: str = \"f32le\",\n ):\n \"\"\"\n- Helper function ro read raw microphone data.\n+ Helper function to read raw microphone data.\n \"\"\"\n ar = f\"{sampling...
2024-01-08T12:32:36
nodejs/node
28a47aa1bbd4d278293fda2bb3f2df836d743816
f417add1f4ad9dfc201102bbc34491cddaeabae0
test: fix test-cluster-send-handle-large-payload On macOS, the parent process might not receive a message if it is sent to soon, and then subsequent messages are also sometimes not received. (Is this a bug or expected operating system behavior like the way a file watcher is returned before it's actually watching the ...
[ { "path": "test/parallel/test-cluster-send-handle-large-payload.js", "patch": "@@ -1,5 +1,6 @@\n 'use strict';\n const common = require('../common');\n+\n const assert = require('assert');\n const cluster = require('cluster');\n const net = require('net');\n@@ -9,7 +10,7 @@ const payload = 'a'.repeat(800004...
2017-08-12T00:27:44
vuejs/vue
44a4ca33b95070e9aa53c6924479519d86dd9b36
0129b0eb12a1f98a722f100892bfc5e60b0f51ce
fix: restore slot-scope + v-if behavior fix #9422
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -375,15 +375,18 @@ function genScopedSlot (\n el: ASTElement,\n state: CodegenState\n ): string {\n- if (el.if && !el.ifProcessed) {\n+ const isLegacySyntax = el.attrsMap['slot-scope']\n+ if (el.if && !el.ifProcessed && !isLegacySyntax) {\n ...
2019-02-05T03:39:35
golang/go
8e7ddac52d436e6930b3d1f4b2106ee85e7adb30
b6df7e555ec1e1f813cda0d250cd109533e6d4e5
[dev.link] cmd/link: fix accidental shadowing ctxt.Tlsg2 is supposed to be the embedded ArchSyms.Tlsg2. Change-Id: I4f9711f83999d4a98bcf6d99c24fab756c580905 Reviewed-on: https://go-review.googlesource.com/c/go/+/230379 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Review...
[ { "path": "src/cmd/link/internal/ld/link.go", "patch": "@@ -66,7 +66,6 @@ type Link struct {\n \n \tcompressDWARF bool\n \n-\tTlsg2 loader.Sym\n \tLibdir []string\n \tLibrary []*sym.Library\n \tLibraryByPkg map[string]*sym.Library", "additions": 0, "deletions": 1, "language": "...
2020-04-27T22:47:03
huggingface/transformers
0c2121f99bd3553365d2f2ac4355b106b5dd4cb6
53cffeb33c2f46ccef8969da076aa620f70801c4
Fix building alibi tensor when num_heads is not a power of 2 (#28380) * Fix building alibi tensor when num_heads is not a power of 2 * Remove print function
[ { "path": "src/transformers/models/mpt/modeling_mpt.py", "patch": "@@ -70,10 +70,10 @@ def build_mpt_alibi_tensor(num_heads, sequence_length, alibi_bias_max=8, device=\n base = base * (alibi_bias_max / num_heads_power_of_2)\n \n slopes = 1.0 / torch.pow(2, base)\n- slopes = slopes.view(1, num_hea...
2024-01-08T09:39:40
nodejs/node
4a6b678070f5e2ba0f0200a1a4b9a31dd0b60dac
afe68c18682579d19a0cc37566e2edda73481dc6
os: add CIDR support This patch adds support for CIDR notation to the output of the `networkInterfaces()` method PR-URL: https://github.com/nodejs/node/pull/14307 Fixes: https://github.com/nodejs/node/issues/14006 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: ...
[ { "path": "doc/api/os.md", "patch": "@@ -253,6 +253,9 @@ The properties available on the assigned network address object include:\n similar interface that is not remotely accessible; otherwise `false`\n * `scopeid` {number} The numeric IPv6 scope ID (only specified when `family`\n is `IPv6`)\n+* `cidr` ...
2017-07-16T15:51:44
vuejs/vue
b034abf48e793189ce8796c259eed2fbfb79bcd0
1a6f7a576c5359d3f86ceaf080e4e72cbeba030a
fix: always set transformed model value on attrs
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -250,8 +250,7 @@ function mergeHook (f1: any, f2: any): Function {\n function transformModel (options, data: any) {\n const prop = (options.model && options.model.prop) || 'value'\n const event = (options.model && options.model.event) || 'input...
2019-02-05T03:03:33
golang/go
7b0c5180324c6ec29105aebbf12f551b02c9dd54
f639a81cd5e85ca9538c76e612867aa4c2ae241b
database/sql: fix incorrect function name in example_test fixes incorrect function name prefix in `example_test.go` Change-Id: I0cce8afc89f6ee6dab3e5152246d28deb597fe53 GitHub-Last-Rev: 4e9a6067c8307e049ace2e35414a838bf6c8a8a4 GitHub-Pull-Request: golang/go#38715 Reviewed-on: https://go-review.googlesource.com/c/go/+...
[ { "path": "src/database/sql/example_test.go", "patch": "@@ -220,7 +220,7 @@ func ExampleTx_Prepare() {\n \t}\n }\n \n-func ExampleConn_BeginTx() {\n+func ExampleDB_BeginTx() {\n \ttx, err := db.BeginTx(ctx, &sql.TxOptions{Isolation: sql.LevelSerializable})\n \tif err != nil {\n \t\tlog.Fatal(err)", "add...
2020-04-28T00:36:41
huggingface/transformers
53cffeb33c2f46ccef8969da076aa620f70801c4
3eddda1111f70f3a59485e08540e8262b927e867
Enhancing Code Readability and Maintainability with Simplified Activation Function Selection. (#28349) * Little bit change code in get_activation() * proper area to deffine gelu_activation() in this two file * Fix github issue * Mistake some typo * My mistake to self using to call config * Reformat my t...
[ { "path": "src/transformers/models/convbert/modeling_convbert.py", "patch": "@@ -856,12 +856,13 @@ class ConvBertGeneratorPredictions(nn.Module):\n def __init__(self, config):\n super().__init__()\n \n+ self.activation = get_activation(\"gelu\")\n self.LayerNorm = nn.LayerNorm(con...
2024-01-08T08:19:06
nodejs/node
b2a9b81738a77bd4dc63926d74cc4f037a3cb43c
85d7d97d8165dbd94a57ed4dbe143c745487ff8c
http2: fix [kInspect]() output for Http2Stream This fixes a typo in the util.inspect output of Http2Stream. It previously had writeableSate instead of writableState. PR-URL: https://github.com/nodejs/node/pull/14753 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Revie...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -1315,7 +1315,7 @@ class Http2Stream extends Duplex {\n id: this[kID],\n state: this.state,\n readableState: this._readableState,\n- writeableSate: this._writableState\n+ writableState: this._writableState\n };\n return...
2017-08-10T22:00:01
vuejs/vue
66fd3c8dd1577d4b634731adf4be4d3db5bf1df6
0fb03b7831693b4abc90dd0bfe971c36c02d82a6
fix(v-model): add value to $attrs if not defined in props (#9331) fix #9330
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -250,7 +250,8 @@ function mergeHook (f1: any, f2: any): Function {\n function transformModel (options, data: any) {\n const prop = (options.model && options.model.prop) || 'value'\n const event = (options.model && options.model.event) || 'input...
2019-02-04T22:43:48
rust-lang/rust
c91737373a5d24ca930ab0fe478e25c575dcd18e
ced8e650cddbafad92094b2c89dee97b8a807d9c
Fix import in bench for wasm
[ { "path": "library/std/benches/time.rs", "patch": "@@ -1,5 +1,3 @@\n-use std::time::Instant;\n-\n #[cfg(not(target_arch = \"wasm32\"))]\n use test::{Bencher, black_box};\n \n@@ -10,6 +8,7 @@ macro_rules! bench_instant_threaded {\n fn $bench_name(b: &mut Bencher) -> std::thread::Result<()> {\n ...
2025-02-12T22:44:30
huggingface/transformers
4ab5fb8941a38d172b3883c152c34ae2a0b83a68
7226f3d2b06316a1623b7b557cc32f360a854860
chore: Fix typo s/exclusivelly/exclusively/ (#28361)
[ { "path": "docs/source/en/internal/generation_utils.md", "patch": "@@ -317,7 +317,7 @@ generation.\n \n ## StoppingCriteria\n \n-A [`StoppingCriteria`] can be used to change when to stop generation (other than EOS token). Please note that this is exclusivelly available to our PyTorch implementations.\n+A [`...
2024-01-05T21:19:15
golang/go
5c22c01d450c2da859644d2c020b75860308bf71
7be3f09deb2dc1d57cfc18b18e12192be3544794
go/types: improve errors for method calls with pointer receivers The compiler has better error messages for methods called without a pointer receiver when one is expected. This change is similar to CL 229801, but for method calls. Also, added better error messages for functions called with the wrong capitalization. I...
[ { "path": "src/go/types/call.go", "patch": "@@ -9,6 +9,7 @@ package types\n import (\n \t\"go/ast\"\n \t\"go/token\"\n+\t\"unicode\"\n )\n \n func (check *Checker) call(x *operand, e *ast.CallExpr) exprKind {\n@@ -375,12 +376,24 @@ func (check *Checker) selector(x *operand, e *ast.SelectorExpr) {\n \t\tswit...
2020-04-27T23:41:14
vuejs/vue
0fb03b7831693b4abc90dd0bfe971c36c02d82a6
55bfb94a33ecc9b33131ec0fb78bba2946e8fc75
fix: avoid blocking first input event in IE when it shouldn't (#9297) - the original bug in #7138 only happens for `<textarea>` - the bug doesn't happen if placeholder has empty value fix #9042, fix #9383
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -98,8 +98,8 @@ function baseSetAttr (el, key, value) {\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n- (el.tagName === 'TEXTAREA' || el.tagName === 'INPUT') &&\n- key === 'placeholder' && !el.__ieph\n+ ...
2019-02-04T22:39:41
rust-lang/rust
99ec64c34c65630d9a66befa2cbf2faa9478baa0
cd805f09ffbfa3896c8f50a619de9b67e1d9f3c3
Export kernel descriptor for amdgpu kernels The host runtime (HIP or HSA) expects a kernel descriptor object for each kernel in the ELF file. The amdgpu LLVM backend generates the object. It is created as a symbol with the name of the kernel plus a `.kd` suffix. Add it to the exported symbols in the linker script, so...
[ { "path": "compiler/rustc_codegen_ssa/src/back/linker.rs", "patch": "@@ -1776,6 +1776,7 @@ fn exported_symbols_for_non_proc_macro(tcx: TyCtxt<'_>, crate_type: CrateType) -\n symbols.push(symbol_export::exporting_symbol_name_for_instance_in_crate(\n tcx, symbol, cnum,\n ...
2025-02-10T21:37:43
nodejs/node
6d84e3008792a837c4a94614516f45872898c3af
1268737e7198b77817fd0abf18edef5e76b78b33
doc: fix header level typo PR-URL: https://github.com/nodejs/node/pull/14707 Refs: https://github.com/nodejs/node/pull/12756 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
[ { "path": "doc/api/cli.md", "patch": "@@ -185,7 +185,7 @@ added: v8.0.0\n Enable loading native modules compiled with the ABI-stable Node.js API (N-API)\n (experimental).\n \n-## `--abort-on-uncaught-exception`\n+### `--abort-on-uncaught-exception`\n <!-- YAML\n added: v0.10\n -->", "additions": 1, ...
2017-08-09T03:45:32
huggingface/transformers
7226f3d2b06316a1623b7b557cc32f360a854860
cadf93a6fc547a4b809c138f0cd6ba5570fdf905
Update VITS modeling to enable ONNX export (#28141) * Update vits modeling for onnx export compatibility * fix style * Update src/transformers/models/vits/modeling_vits.py
[ { "path": "src/transformers/models/vits/modeling_vits.py", "patch": "@@ -1022,7 +1022,7 @@ def _absolute_position_to_relative_position(self, x):\n \n # Pad along column\n x = nn.functional.pad(x, [0, length - 1, 0, 0, 0, 0])\n- x_flat = x.view([batch_heads, length**2 + length * (lengt...
2024-01-05T16:52:32
ggml-org/llama.cpp
3ecb2f671a2f49d56357f99d135a94e841759178
432cf4304c5379bfbd1f3feed65ec205955b2f4b
ggml : implement set_rows with i32 index (#16159) * implement set_rows with i32 index * template fix * test quantized path warnings-- * Apply suggestions from code review Co-authored-by: Georgi Gerganov <ggerganov@gmail.com> * forgotten name change * deduplicate cuda/sycl and test-fix * indent++ * vulkan: sup...
[ { "path": "ggml/src/ggml-cpu/ops.cpp", "patch": "@@ -4739,6 +4739,7 @@ void ggml_compute_forward_get_rows(\n //}\n }\n \n+template<typename idx_t>\n static void ggml_compute_forward_set_rows_f32(\n const ggml_compute_params * params,\n ggml_tensor * dst) {\n@@ -4777,7 +4778,7 @@ st...
2025-09-22T17:13:00
vuejs/vue
55bfb94a33ecc9b33131ec0fb78bba2946e8fc75
c27fe24dc6088b517ab17c799a1852f97c22c076
fix(compiler): fix inline-template crashing (#9365) fix #9361
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -346,7 +346,7 @@ function genInlineTemplate (el: ASTElement, state: CodegenState): ?string {\n { start: el.start }\n )\n }\n- if (ast.type === 1) {\n+ if (ast && ast.type === 1) {\n const inlineRenderFns = generate(ast, state.options)...
2019-02-04T21:49:27
golang/go
7be3f09deb2dc1d57cfc18b18e12192be3544794
c2e0f01598fbc17d2f960fe93c5bcb057203b75d
os, internal/poll, internal/syscall/unix: use copy_file_range on Linux Linux 4.5 introduced (and Linux 5.3 refined) the copy_file_range system call, which allows file systems the opportunity to implement copy acceleration techniques. This commit adds support for copy_file_range(2) to the os package. Introduce a new R...
[ { "path": "src/internal/poll/copy_file_range_linux.go", "patch": "@@ -0,0 +1,93 @@\n+// Copyright 2020 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package poll\n+\n+import (\n+\t\"internal/syscall/unix\...
2020-04-21T23:08:33
nodejs/node
95c8df18f139ae3c2eb930018556683bc4c0807d
e6eb5c00dada92754a4d1c33e52fae70047d1b59
test: add test to verify ErrnoException path This commit adds a test to verify that the path argument to ErrnoException can contain UTF-8 characters. PR-URL: https://github.com/nodejs/node/pull/13958 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Gibson Fah...
[ { "path": "test/addons/errno-exception/binding.cc", "patch": "@@ -0,0 +1,18 @@\n+#include <node.h>\n+#include <v8.h>\n+\n+void Method(const v8::FunctionCallbackInfo<v8::Value>& args) {\n+ v8::Isolate* isolate = args.GetIsolate();\n+ v8::HandleScope scope(isolate);\n+ args.GetReturnValue().Set(node::Errno...
2017-06-30T07:25:00
huggingface/transformers
cadf93a6fc547a4b809c138f0cd6ba5570fdf905
899d8351f9926aa725b25a4b5625f07d7defc3c0
fix FA2 when using quantization for remaining models (#28341) * fix fa2 autocasting when using quantization * Update src/transformers/models/distilbert/modeling_distilbert.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * Update src/transformers/models/distilbert/modeling_distilbert...
[ { "path": "src/transformers/models/bart/modeling_bart.py", "patch": "@@ -382,8 +382,10 @@ def forward(\n \n input_dtype = query_states.dtype\n if input_dtype == torch.float32:\n+ if torch.is_autocast_enabled():\n+ target_dtype = torch.get_autocast_gpu_dtype()\n ...
2024-01-05T15:46:55
ggml-org/llama.cpp
37a23c17bdc9c99c9c6ad41168e4ced3724b72cd
138c87ce8bd558b2cc134ada7316a3dad8eb67ac
common : enable `--offline` mode without curl support (#16137) * common : use the json parser Signed-off-by: Adrien Gallouët <angt@huggingface.co> * common : enable --offline mode without CURL support This change refactors the download logic to properly support offline mode even when the project is built without CU...
[ { "path": "common/arg.cpp", "patch": "@@ -24,6 +24,7 @@\n #include <cstdarg>\n #include <filesystem>\n #include <fstream>\n+#include <future>\n #include <list>\n #include <regex>\n #include <set>\n@@ -36,9 +37,21 @@\n #if defined(LLAMA_USE_CURL)\n #include <curl/curl.h>\n #include <curl/easy.h>\n-#include <...
2025-09-22T12:13:51
vuejs/vue
c27fe24dc6088b517ab17c799a1852f97c22c076
1922e7d4d99d0397223b3919a1643aacb7afbbab
fix: decode single quotes in html attributes (#9341)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -36,10 +36,11 @@ const decodingMap = {\n '&quot;': '\"',\n '&amp;': '&',\n '&#10;': '\\n',\n- '&#9;': '\\t'\n+ '&#9;': '\\t',\n+ '&#39;': \"'\"\n }\n-const encodedAttr = /&(?:lt|gt|quot|amp);/g\n-const encodedAttrWithNewLines = /&(?:lt|gt...
2019-02-04T21:48:24
golang/go
42c48998aada0df10279650d04a018c83cbfa518
0a364330a2abba1fede96c7cdd6432f3007866b3
image/draw: optimize paletted dst + uniform src name old time/op new time/op delta PalettedFill-4 5.74ms ± 1% 0.01ms ± 1% -99.78% (p=0.008 n=5+5) PalettedRGBA-4 3.34ms ± 3% 3.33ms ± 0% ~ (p=0.690 n=5+5) Fixes #35938 Thanks to pjbgtnj for the suggestion. Change-Id: I07b494482cce918f556e196...
[ { "path": "src/image/draw/bench_test.go", "patch": "@@ -236,7 +236,11 @@ func BenchmarkRGBA(b *testing.B) {\n \tbench(b, color.RGBAModel, color.RGBA64Model, nil, Src)\n }\n \n-func BenchmarkPaletted(b *testing.B) {\n+func BenchmarkPalettedFill(b *testing.B) {\n+\tbench(b, palette, nil, nil, Src)\n+}\n+\n+fu...
2020-04-25T12:29:02
nodejs/node
e6eb5c00dada92754a4d1c33e52fae70047d1b59
314217f8fbec156eff6dd61d71b3cd5327c41a5b
test: use regular expressions in throw assertions Test errors thrown in addons-napi/test_constructor more specifically. PR-URL: https://github.com/nodejs/node/pull/14318 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-B...
[ { "path": "test/addons-napi/test_constructor/test.js", "patch": "@@ -13,7 +13,8 @@ assert.strictEqual(test_object.readwriteValue, 1);\n test_object.readwriteValue = 2;\n assert.strictEqual(test_object.readwriteValue, 2);\n \n-assert.throws(() => { test_object.readonlyValue = 3; }, TypeError);\n+assert.throw...
2017-07-17T03:58:38
huggingface/transformers
899d8351f9926aa725b25a4b5625f07d7defc3c0
57e9c8321385dfd31bda33df144a4ac849206e06
[DETA] Improvement and Sync from DETA especially for training (#27990) * [DETA] fix freeze/unfreeze function * Update src/transformers/models/deta/modeling_deta.py Co-authored-by: Arthur <48595927+ArthurZucker@users.noreply.github.com> * Update src/transformers/models/deta/modeling_deta.py Co-authored-by: ...
[ { "path": "src/transformers/models/deta/configuration_deta.py", "patch": "@@ -109,6 +109,10 @@ class DetaConfig(PretrainedConfig):\n based on the predictions from the previous layer.\n focal_alpha (`float`, *optional*, defaults to 0.25):\n Alpha parameter in the focal loss.\n...
2024-01-05T14:20:21
ggml-org/llama.cpp
138c87ce8bd558b2cc134ada7316a3dad8eb67ac
c6db9a10278f40b4b8d3f6931728f2cce2356daa
webui : fix handling incomplete chunks (#16107)
[ { "path": "tools/server/webui/src/lib/services/chat.ts", "patch": "@@ -264,12 +264,14 @@ export class ChatService {\n \t\tlet lastTimings: ChatMessageTimings | undefined;\n \n \t\ttry {\n+\t\t\tlet chunk = '';\n \t\t\twhile (true) {\n \t\t\t\tconst { done, value } = await reader.read();\n \t\t\t\tif (done) ...
2025-09-22T08:53:13
vuejs/vue
1922e7d4d99d0397223b3919a1643aacb7afbbab
b6b42ca8c41963be292caa266ce4330603f4c4eb
fix(template-compiler): allow comments on the root node in templates (#9408) In SFC templates, we are allowed to add comments to the root node. If parsing with comments flag true, we are not anymore. This ignores the root comments in case they cannot be added. fix #9407
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -377,16 +377,20 @@ export function parse (\n }\n },\n comment (text: string, start, end) {\n- const child: ASTText = {\n- type: 3,\n- text,\n- isComment: true\n- }\n- if (process.env.NODE_ENV !== 'produc...
2019-02-04T21:34:32
golang/go
0a364330a2abba1fede96c7cdd6432f3007866b3
287d1ec96c1271de532c6b1160cd9cbbe717ee34
strconv: remove redundant conversions to int IntSize is an untyped constant that does not need explicit conversion. Annotating IntSize as an int and running github.com/mdempsky/unconvert reveals these two cases. Fixes #38682. Change-Id: I014646b7457ddcde32474810153229dcf0c269c6 Reviewed-on: https://go-review.googles...
[ { "path": "src/strconv/atoi.go", "patch": "@@ -96,7 +96,7 @@ func ParseUint(s string, base int, bitSize int) (uint64, error) {\n \t}\n \n \tif bitSize == 0 {\n-\t\tbitSize = int(IntSize)\n+\t\tbitSize = IntSize\n \t} else if bitSize < 0 || bitSize > 64 {\n \t\treturn 0, bitSizeError(fnParseUint, s0, bitSize...
2020-04-27T17:23:24
nodejs/node
a7189c0177938545050421a600fb12c21db3858f
6fe72c82d283fead3694368218263ab6bca6572b
benchmark: fix and extend assert benchmarks The benchmarks had the strict and non strict labels switched. This is fixed and the benchmarks were extended to check more possible input types and function calls. PR-URL: https://github.com/nodejs/node/pull/14147 Refs: https://github.com/nodejs/node/pull/13973 Reviewed-By:...
[ { "path": "benchmark/assert/deepequal-buffer.js", "patch": "@@ -1,39 +1,62 @@\n 'use strict';\n const common = require('../common.js');\n const assert = require('assert');\n+\n const bench = common.createBenchmark(main, {\n- n: [1e3],\n- len: [1e2],\n- method: ['strict', 'nonstrict']\n+ n: [1e5],\n+ le...
2017-06-28T18:34:19
ggml-org/llama.cpp
c6db9a10278f40b4b8d3f6931728f2cce2356daa
d05affbab7d1364fa7ac06c03cd33f03235ae840
embedding : fix typos in README (#16171)
[ { "path": "examples/embedding/README.md", "patch": "@@ -43,8 +43,8 @@ The above command will output space-separated float values.\n | $\"string\"$ | |\n |--------------|-|\n | \"\\n\" | (default)\n-| \"<#embSep#>\" | for exemple\n-| \"<#sep#>\" | other exemple\n+| \"<#embSep#>\" | for example\n...
2025-09-22T08:49:58
huggingface/transformers
57e9c8321385dfd31bda33df144a4ac849206e06
03b980990a2dba03611f2d89cdac07ea57254d48
Fix pos_mask application and update tests accordingly (#27892) * Fix pos_mask application and update tests accordingly * Fix style * Adding comments --------- Co-authored-by: Fernando Rodriguez <fernando.rodriguez@nielseniq.com>
[ { "path": "src/transformers/models/flava/modeling_flava.py", "patch": "@@ -1949,15 +1949,14 @@ def forward(\n \n if mim_labels is not None:\n mim_labels = mim_labels[pos_mask]\n+ bool_masked_pos = bool_masked_pos[pos_mask]\n \n # MMM Image Loss\...
2024-01-05T11:36:10
vuejs/vue
b6b42ca8c41963be292caa266ce4330603f4c4eb
85548310f19975745c83ac173f700f8b2f1e8e3e
fix: avoid isPromise check when handler return value is Vue instance fix #9418
[ { "path": "src/core/util/error.js", "patch": "@@ -35,7 +35,7 @@ export function invokeWithErrorHandling (\n let res\n try {\n res = args ? handler.apply(context, args) : handler.call(context)\n- if (isPromise(res)) {\n+ if (res && !res._isVue && isPromise(res)) {\n res.catch(e => handleE...
2019-02-04T20:14:29
vuejs/vue
44a17ba2cde7fb9a673486d44de7f29feb5c1882
539e481f38706a6202f0eacf54c579362fbd5bb4
fix: fix child forceUpdate regression close #9396
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -26,7 +26,7 @@ export function normalizeScopedSlots (\n }\n }\n res._normalized = true\n- res.$stable = slots && slots.$stable\n+ res.$stable = slots ? slots.$stable : true\n return res\n }\n ", "additions": 1, "de...
2019-01-31T15:24:41
ggml-org/llama.cpp
d05affbab7d1364fa7ac06c03cd33f03235ae840
4f324a556caa5be0be2261604ef4aab0faf36eb8
common : remove unused local variables (#16140) These two local variables 'arg' and 'arg_prefix' have been overriden by: 1. for (const auto & arg : opt.args) 2. for (int i = 1; i < argc; i++) { const std::string arg_prefix = "--"; std::string arg = argv[i];
[ { "path": "common/arg.cpp", "patch": "@@ -1068,8 +1068,6 @@ static std::string get_all_kv_cache_types() {\n //\n \n static bool common_params_parse_ex(int argc, char ** argv, common_params_context & ctx_arg) {\n- std::string arg;\n- const std::string arg_prefix = \"--\";\n common_params & params =...
2025-09-22T08:48:42
golang/go
287d1ec96c1271de532c6b1160cd9cbbe717ee34
9a3f22be7a3a28bd8f33a86925e2b05f2314ead2
runtime: ensure allocToCache updates searchAddr in a valid way Currently allocToCache assumes it can move the search address past the block it allocated the cache from, which violates the property that searchAddr should always point to mapped memory (i.e. memory represented by pageAlloc.inUse). This bug was already f...
[ { "path": "src/runtime/mpagecache.go", "patch": "@@ -148,9 +148,14 @@ func (s *pageAlloc) allocToCache() pageCache {\n \t// Update as an allocation, but note that it's not contiguous.\n \ts.update(c.base, pageCachePages, false, true)\n \n-\t// We're always searching for the first free page, and we always kn...
2020-04-22T21:36:11
huggingface/transformers
5d36025ca13d05151b7a0c761e90d429c4644a30
35e9d2b223067d8e5da8aa96d254747d6f9ab352
README: install transformers from conda-forge channel (#28313) Switch to the conda-forge channel for transformer installation, as the huggingface channel does not offer the latest version. Fixes #28248
[ { "path": "README.md", "patch": "@@ -269,14 +269,14 @@ If you'd like to play with the examples or need the bleeding edge of the code an\n \n ### With conda\n \n-Since Transformers version v4.0.0, we now have a conda channel: `huggingface`.\n-\n 🤗 Transformers can be installed using conda as follows:\n \n `...
2024-01-04T17:36:16
nodejs/node
7294f57c0dc6151acba9c536e4a596b0ae3c0427
003ba0b0e2280ab3a27184e954fa761f4283d5d1
doc: fix docs style in util.md Summary + L582: Cell should be padded + L589: Cell should be padded + L590: Cell should be padded + L600: Cell should be padded + L622: Cell should be padded PR-URL: https://github.com/nodejs/node/pull/14711 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ac...
[ { "path": "doc/api/util.md", "patch": "@@ -576,57 +576,57 @@ with ICU and using the full ICU data (see [Internationalization][]).\n \n #### Encodings Supported Without ICU\n \n-| Encoding | Aliases |\n-| ----------- | --------------------------------- |\n-| `'utf-8'` | `'unico...
2017-08-09T08:45:18
vuejs/vue
539e481f38706a6202f0eacf54c579362fbd5bb4
e1db2c5bf66fca3d219683682690cd33921dd5c5
fix: fix v-bind:style for camelCase properties with !important (#9386)
[ { "path": "src/platforms/web/runtime/modules/style.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n import { getStyle, normalizeStyleBinding } from 'web/util/style'\n-import { cached, camelize, extend, isDef, isUndef } from 'shared/util'\n+import { cached, camelize, extend, isDef, isUndef, hyphenate } from...
2019-01-31T15:08:35
ggml-org/llama.cpp
4f324a556caa5be0be2261604ef4aab0faf36eb8
a71ae3ba7a857394103f12e30b387c48242c84f2
ggml : extend ggml_can_fuse to work with non-sequential nodes (#16123) * ggml : extend ggml_can_fuse to work with non-sequential nodes in the graph * cont : fix wrong bounds check condition * cont : remove unnecessary overload
[ { "path": "ggml/src/ggml-impl.h", "patch": "@@ -583,27 +583,27 @@ static inline bool ggml_node_has_n_uses(const struct ggml_cgraph * cgraph, int n\n return true;\n }\n \n-// Returns true if nodes [i, i+ops.size()) are the sequence of ggml_ops in ops[]\n+// Returns true if nodes with indices { node_idxs ...
2025-09-22T08:12:37
golang/go
1067ab080863f9e9557889d501ac0a75fbb3e19a
08bf64a81e4c3e2199d0e879089880f538fafbb9
runtime: added several new lock-rank partial order edges Several new ones came from my testing (long, repeated runs) and one (assistQueue -> spine) came from the staticlockranking builder (filed as issue 38441). Fixes #38441 Change-Id: I4268da0d8b8cc51251eba6bd936110c8ab4c4e61 Reviewed-on: https://go-review.googleso...
[ { "path": "src/runtime/lockrank.go", "patch": "@@ -207,23 +207,23 @@ var lockPartialOrder [][]lockRank = [][]lockRank{\n \tlockRankProf: {lockRankScavenge, lockRankAssistQueue, lockRankCpuprof, lockRankSweep, lockRankSched, lockRankAllg, lockRankAllp, lockRankTimers, lockRankItab, lockRankReflectOf...
2020-04-13T15:37:03
huggingface/transformers
35e9d2b223067d8e5da8aa96d254747d6f9ab352
4a66c0d95219bbeb91bebd010d75a29a5e5f3f43
Fix error in M4T feature extractor (#28340) * fix M4T FE error when no attention mask * modify logic * add test * go back to initial test situation + add other tests
[ { "path": "src/transformers/models/seamless_m4t/feature_extraction_seamless_m4t.py", "patch": "@@ -229,6 +229,10 @@ def __call__(\n \"Failing to do so can result in silent errors that might be hard to debug.\"\n )\n \n+ return_attention_mask = (\n+ return_attent...
2024-01-04T16:40:53
nodejs/node
003ba0b0e2280ab3a27184e954fa761f4283d5d1
9222fe64ad4f624a50551ef5289cdb0bc333a4bc
doc: fix docs style in intl.md Summary + L43: Add missing final pipe in table fence + L45: Add missing final pipe in table fence + L46: Add missing final pipe in table fence + L47: Add missing final pipe in table fence + L48: Add missing final pipe in table fence + L49: Add missing final pipe in table fenc...
[ { "path": "doc/api/intl.md", "patch": "@@ -40,19 +40,19 @@ in [BUILDING.md][].\n An overview of available Node.js and JavaScript features for each `configure`\n option:\n \n-| | `none` | `system-icu` | `small-icu` ...
2017-08-09T08:38:25
ggml-org/llama.cpp
96fdca043be8fa733bbd59868a75517f92633376
b2d980fce063fa3591c59ad50b946c8da66c294f
Vulkan: add conv_transpose_2d operation (#16022) * Vulkan: add conv_transpose_2d operation * Vulkan: fix typo in conv_transpose_2d shader(s0mp, s0L, s1mp, s1L) * Vulkan: fix incorrect indentation in conv_transpose_2d shader * Vulkan: add checking the push constants size limit and reuse conv2d_mm.comp for conv_trans...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -574,6 +574,8 @@ struct vk_device_struct {\n vk_pipeline pipeline_opt_step_sgd_f32;\n vk_pipeline pipeline_conv2d_f32[CONV_SHAPE_COUNT];\n vk_pipeline pipeline_conv2d_f16_f32[CONV_SHAPE_COUNT];\n+ vk_pipeline pipeline_conv_transpo...
2025-09-22T08:04:01
vuejs/vue
e632e9a0759532e1d902871ca07b02c9ac267e7c
6afd96f2fdb59b1fce8ee7bf1cef4c348294959b
fix: allow more enumerated values for contenteditable close #9397
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -14,7 +14,8 @@ import {\n getXlinkProp,\n isBooleanAttr,\n isEnumeratedAttr,\n- isFalsyAttrValue\n+ isFalsyAttrValue,\n+ convertEnumeratedValue\n } from 'web/util/index'\n \n function updateAttrs (oldVnode: VNodeWithData, vnode: V...
2019-01-31T14:56:18
huggingface/transformers
4a66c0d95219bbeb91bebd010d75a29a5e5f3f43
6b8ec2588ef3a9c42a36469099e69e3013b9b53f
enable training mask2former and maskformer for transformers trainer (#28277) * fix get_num_masks output as [int] to int * fix loss size from torch.Size([1]) to torch.Size([])
[ { "path": "src/transformers/models/mask2former/modeling_mask2former.py", "patch": "@@ -787,7 +787,7 @@ def get_num_masks(self, class_labels: torch.Tensor, device: torch.device) -> tor\n Computes the average number of target masks across the batch, for normalization purposes.\n \"\"\"\n ...
2024-01-04T08:53:25
nodejs/node
95bbb6817532a2cdf1991f452ebbc5a5b5d5a112
f2b01cba7b48c2410a692fe1cb29b2e88a6c5cab
util: improve util.inspect performance * improve util.inspect performance This is a huge performance improvement in case of sparse arrays when using util.inspect as the hole will simple be skipped. * use faster visibleKeys property lookup * add inspect-array benchmark PR-URL: https://github.com/nodejs/node/pull...
[ { "path": "benchmark/util/inspect-array.js", "patch": "@@ -0,0 +1,39 @@\n+'use strict';\n+\n+const common = require('../common');\n+const util = require('util');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [1e2],\n+ len: [1e5],\n+ type: [\n+ 'denseArray',\n+ 'sparseArray',\n+ 'mixedA...
2017-07-26T02:21:12
golang/go
a13691966ad571ed9e434d591a2d612c51349fd1
9582b6e8fd1b278e670987c7689920888191b14f
runtime: add new mcentral implementation Currently mcentral is implemented as a couple of linked lists of spans protected by a lock. Unfortunately this design leads to significant lock contention. The span ownership model is also confusing and complicated. In-use spans jump between being owned by multiple sources, ge...
[ { "path": "src/runtime/lockrank.go", "patch": "@@ -66,8 +66,9 @@ const (\n \tlockRankRwmutexW\n \tlockRankRwmutexR\n \n-\tlockRankMcentral\n-\tlockRankSpine\n+\tlockRankMcentral // For !go115NewMCentralImpl\n+\tlockRankSpine // For !go115NewMCentralImpl\n+\tlockRankSpanSetSpine\n \tlockRankStackpool\n \t...
2020-02-20T20:58:45
vuejs/vue
6afd96f2fdb59b1fce8ee7bf1cef4c348294959b
3edb99920011d64516c30d45250988e39544e418
chore: fix flow
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -149,7 +149,7 @@ export function parse (\n \n // final children cleanup\n // filter out scoped slots\n- element.children = element.children.filter(c => !c.slotScope)\n+ element.children = element.children.filter(c => !(c: any).slotScope)\n...
2019-01-31T02:41:56
ggml-org/llama.cpp
a20d810d79adfbf82e0eb703af6f27a0e2d1a539
4d0a7cbc617e384fc355077a304c883b5c7d4fb6
vulkan: add RTE variants of exp shader (#16165) This fixes some failures on Turing where "round to zero" rounds to the max f16 value but the CPU reference value is infinite.
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -3391,7 +3391,6 @@ static void ggml_vk_load_shaders(vk_device& device) {\n ggml_vk_create_pipeline(device, device->pipeline_ ## name [0], #name \"_f32\", name ## _f32_len, name ## _f32_data, \"main\", 2, sizeof(vk_op_push_constants), {512, 1...
2025-09-22T05:37:17
huggingface/transformers
6b8ec2588ef3a9c42a36469099e69e3013b9b53f
3ea88336769557886f289f3a9356d3cfd380fcd6
[docs] Sort es/toctree.yml | Translate performance.md (#28262) * Sort es/_toctree.yml like en/_toctree.yml * Run make style * Add -Rendimiento y escalabilidad- section to es/_toctree.yml * Run make style * Add s to section * Add translate of performance.md * Add performance.md to es/_toctree.yml *...
[ { "path": "docs/source/es/_toctree.yml", "patch": "@@ -21,57 +21,60 @@\n title: Compartir un modelo\n title: Tutoriales\n - sections:\n- - sections:\n- - local: create_a_model\n- title: Crea una arquitectura personalizada\n- - local: custom_models\n- title: Compartir modelos personali...
2024-01-03T22:35:58
nodejs/node
f2b01cba7b48c2410a692fe1cb29b2e88a6c5cab
5ea25d2ebeb61ea209171f5f5cb72d4072a2c969
child_process: defer error to next tick PR-URL: https://github.com/nodejs/node/pull/4670 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myll...
[ { "path": "lib/internal/child_process.js", "patch": "@@ -599,7 +599,7 @@ function setupChannel(target, channel) {\n if (typeof callback === 'function') {\n process.nextTick(callback, ex);\n } else {\n- this.emit('error', ex); // FIXME(bnoordhuis) Defer to next tick.\n+ process.nextT...
2016-01-13T15:00:19
vuejs/vue
3edb99920011d64516c30d45250988e39544e418
2807fd24b0c17179336f84d1725b69cd3c7a0aca
polish: warn against incorrect nested v-slot usage
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -642,6 +642,13 @@ function processSlotContent (el) {\n el\n )\n }\n+ if (!maybeComponent(el.parent)) {\n+ warn(\n+ `<template v-slot> can only appear at the root level inside ` +\n+ ...
2019-01-31T02:33:59
ggml-org/llama.cpp
9073a73d82a916cea0809de225ef5175c3a86e91
51f5a45fbe575dcd54bdd2a339ef8e8424d1c12a
vulkan: vec dot matrix multiplication fix (#16151) * vulkan: fix matrix multiplication index calculation for odd m/n and odd k in combination with batching * add odd m/n + odd k test with batching
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp", "patch": "@@ -31,10 +31,22 @@\n #include \"types.comp\"\n \n #ifndef LOAD_VEC_A\n-#define LOAD_VEC_A 2\n+#define LOAD_VEC_A 1\n #endif\n #ifndef LOAD_VEC_B\n-#define LOAD_VEC_B 2\n+#define LOAD_VEC_B 1\n+#endif\n+\n+// Load 2 values at once withou...
2025-09-22T05:22:43
rust-lang/rust
d82219a4fa06bfa47fc5aac64844c461905ae77d
8c61cd4df8434573190336b8f16169f3c2b22a7a
debuginfo: Set bitwidth appropriately in enum variant tags Previously, we unconditionally set the bitwidth to 128-bits, the largest an discrimnator would possibly be. Then, LLVM would cut down the constant by chopping off leading zeroes before emitting the DWARF. LLVM only supported 64-bit descriminators, so this woul...
[ { "path": "compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/native.rs", "patch": "@@ -437,6 +437,12 @@ fn build_enum_variant_member_di_node<'ll, 'tcx>(\n .source_info\n .unwrap_or_else(|| (unknown_file_metadata(cx), UNKNOWN_LINE_NUMBER));\n \n+ let discr = discr_value.opt_single_v...
2025-02-12T00:37:33
vuejs/vue
2807fd24b0c17179336f84d1725b69cd3c7a0aca
5851961ca320a423003bd32fecb488f230dcd854
fix: template v-slot should work with v-else conditions
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -366,53 +366,27 @@ function genScopedSlots (\n })\n return `scopedSlots:_u([${\n Object.keys(slots).map(key => {\n- return genScopedSlot(key, slots[key], state)\n+ return genScopedSlot(slots[key], state)\n }).join(',')\n }]${has...
2019-01-31T02:30:29
huggingface/transformers
d83ff5eeff1d5360052a66074dde1f87bd9f3a21
6eba901d88909b4635b02e284723a71a675ebaa0
Add FastSpeech2Conformer (#23439) * start - docs, SpeechT5 copy and rename * add relevant code from FastSpeech2 draft, have tests pass * make it an actual conformer, demo ex. * matching inference with original repo, includes debug code * refactor nn.Sequentials, start more desc. var names * more renamin...
[ { "path": ".circleci/create_circleci_config.py", "patch": "@@ -515,6 +515,7 @@ def job_name(self):\n \"pip install -U --upgrade-strategy eager -e git+https://github.com/huggingface/accelerate@main#egg=accelerate\",\n \"pip install --upgrade --upgrade-strategy eager pytest pytest-sugar\",\n ...
2024-01-03T18:01:06
ggml-org/llama.cpp
51f5a45fbe575dcd54bdd2a339ef8e8424d1c12a
c4510dc9374e17dcb8726902ab5216067a92b3d3
opencl: fix concat crash on win arm64 with Adreno (#15944)
[ { "path": "ggml/src/ggml-opencl/ggml-opencl.cpp", "patch": "@@ -6108,12 +6108,12 @@ static void ggml_cl_concat(ggml_backend_t backend, const ggml_tensor * src0, con\n } else {\n cl_kernel kernel = backend_ctx->kernel_concat_f32_non_contiguous;\n \n- long ne00 = src0->ne[0], ne01 = src0->n...
2025-09-21T23:42:10
rust-lang/rust
b167895a19dd8c634c66b5c672a83cdb610ab8a9
660d86105891a4b2a686e56ad2171c743faca88c
Fix `used_underscore_items` lint uses of foreign functions
[ { "path": "clippy_lints/src/misc.rs", "patch": "@@ -7,7 +7,6 @@ use clippy_utils::{\n };\n use rustc_errors::Applicability;\n use rustc_hir::def::Res;\n-use rustc_hir::def_id::LOCAL_CRATE;\n use rustc_hir::intravisit::FnKind;\n use rustc_hir::{\n BinOpKind, BindingMode, Body, ByRef, Expr, ExprKind, FnDe...
2025-02-12T17:06:32
vuejs/vue
2afa1d056e9c50376cb63763ab6815cd245b8d69
c9e3a5d1d92500ac1e1d1eb6f3866a9df5eecf53
build: fix feature flags for esm builds
[ { "path": "scripts/config.js", "patch": "@@ -68,8 +68,7 @@ const builds = {\n alias: { he: './entity-decoder' },\n banner\n },\n- // Runtime only (ES Modules). Used by bundlers that support ES Modules,\n- // e.g. Rollup & Webpack 2\n+ // Runtime only ES modules build (for bundlers)\n 'web-run...
2019-01-30T14:47:31
huggingface/transformers
6eba901d88909b4635b02e284723a71a675ebaa0
c2d283a64a7f33547952e3eb0fa6533fc375bcdd
fix documentation for zero_shot_object_detection (#28267) remove broken space
[ { "path": "docs/source/en/tasks/zero_shot_object_detection.md", "patch": "@@ -299,11 +299,3 @@ as before except now there are no labels.\n <img src=\"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/zero-sh-obj-detection_6.png\" alt=\"Cats with bounding b...
2024-01-03T17:20:34
ggml-org/llama.cpp
28baac9c9f491c872e2c37762d3bd90446b005e9
1eeb523c3e0c7ffbd59469f5463dcbdecba3535e
ci : migrate ggml ci to self-hosted runners (#16116) * ci : migrate ggml ci to a self-hosted runners * ci : add T4 runner * ci : add instructions for adding self-hosted runners * ci : disable test-backend-ops from debug builds due to slowness * ci : add AMD V710 runner (vulkan) * cont : add ROCM workflow * ci : ...
[ { "path": ".github/workflows/build.yml", "patch": "@@ -1247,3 +1247,195 @@ jobs:\n -DGGML_CANN=on \\\n -DSOC_TYPE=${{ matrix.device }}\n cmake --build build -j $(nproc)\n+\n+# TODO: simplify the following workflows using a matrix\n+# TODO: run lighter CI on PRs and the ...
2025-09-21T13:50:45
vuejs/vue
1868561442507690f07579c258f4db19a650fb9a
8cb2069aa44f833259781f135c7b6cf9e21e15c8
fix: fix checkbox event edge case in Firefox
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -45,7 +45,7 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n // In Chrome / Firefox, click event fires before change, thus having this problem.\n // In Safari / Edge, the order is opposite.\n /...
2019-01-24T20:43:06
golang/go
9b9556f6604c1426bc28a77ca9be6ce316ca1e6e
70d9b72a87f17736784fc91764fe3ffed9dee8a6
cmd/link: use definition from debug/elf for ldelf Change-Id: I92d0fb3a244d0151fcc4b25a20913ad69a89f198 Reviewed-on: https://go-review.googlesource.com/c/go/+/224977 Run-TryBot: Meng Zhuo <mengzhuo1203@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -46,233 +46,16 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n-const (\n-\tElfClassNone = 0\n-\tElfClass32 = ...
2020-04-26T07:47:18
ggml-org/llama.cpp
1eeb523c3e0c7ffbd59469f5463dcbdecba3535e
5bb4a3edec297e74b0f7bd4ed5d0fdd12e28d858
vulkan: optimize UMA buffer operations and fix driver hangs (#16059) * vulkan: optimize UMA buffer operations and fix driver hangs The previous implementation was blocking the GPU for extended periods, causing the i915 driver to reset the context due to the hangcheck protection. [32628.443070] i915 0000:00:02.0: [dr...
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -1185,6 +1185,14 @@ struct vk_staging_memcpy {\n size_t n;\n };\n \n+struct vk_staging_memset {\n+ vk_staging_memset(void * _dst, uint32_t _val, size_t _n) : dst(_dst), val(_val), n(_n) {}\n+\n+ void * dst;\n+ uint32_t val;\n+ si...
2025-09-21T06:31:55
rust-lang/rust
d9256abe72cb6a0e08c34edad64f24cb1bfb89e2
da4c09937559e8d93cc6499ec8510a3571449061
Improve error recovery when method-calling a field
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs", "patch": "@@ -489,78 +489,7 @@ impl InferenceContext<'_> {\n \n ty\n }\n- Expr::Call { callee, args, .. } => {\n- let callee_ty = self.infer_expr(*callee, &Expectation::none(), ExprIsRe...
2025-02-12T14:15:47
nodejs/node
b646a3df29d85107cd49d5970dcf1cf286d9def8
50235a03ef0dafd9738766643cd0e0266eafd4e6
repl: include folder extensions in autocomplete When autocompleting `require` calls, the repl strips .js file extensions from results. However, stripping an extension from a directory results in an error. Update the autocompletion logic to avoid stripping extensions from directories. PR-URL: https://github.com/nodejs...
[ { "path": "lib/repl.js", "patch": "@@ -822,7 +822,7 @@ function complete(line, callback) {\n completeOn = match[1];\n var subdir = match[2] || '';\n filter = match[1];\n- var dir, files, f, name, base, ext, abs, subfiles, s;\n+ var dir, files, f, name, base, ext, abs, subfiles, s, isDirect...
2017-08-10T04:51:56
huggingface/transformers
5be46dfc094a5028efdb7ca13a04f35a0323259c
87ae2a4632de9c3090272d5cd37db86c0e03a0a9
[Whisper] Fix errors with MPS backend introduced by new code on word-level timestamps computation (#28288) * Update modeling_whisper.py to support MPS backend Fixed some issue with MPS backend. First, the torch.std_mean is not implemented and is not scheduled for implementation, while the single torch.std and to...
[ { "path": "src/transformers/models/whisper/modeling_whisper.py", "patch": "@@ -2599,7 +2599,8 @@ def _extract_token_timestamps(self, generate_outputs, alignment_heads, time_prec\n \n if num_frames is None or isinstance(num_frames, int):\n # Normalize and smoothen the weights.\n- ...
2024-01-02T16:22:28
vuejs/vue
8cb2069aa44f833259781f135c7b6cf9e21e15c8
32072e8a8853584b1f8763f42cd845fbc55f4dc2
test: fix tests in IE/Edge
[ { "path": "test/unit/features/component/component-scoped-slot.spec.js", "patch": "@@ -458,7 +458,7 @@ describe('Component scoped slot', () => {\n // new in 2.6, unifying all slots as functions\n it('non-scoped slots should also be available on $scopedSlots', () => {\n const vm = new Vue({\n- te...
2019-01-24T15:05:39
golang/go
2a874562bf7e1831bca5bb2c89dd1a9d0beac6d2
51ac260e5a92c75fc8fbdaa0e13958b26361b1a5
[dev.link] cmd/link: stop setting ReadOnly attribute in late stage The ReadOnly attribute was used to do copy on write when applying relocations to symbols with read-only backing stores. Now that we always apply relocations in the output buffer (mmap or heap), it is always writeable. No need to tamper with the ReadOnl...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -140,11 +140,14 @@ func relocsym(target *Target, ldr *loader.Loader, err *ErrorReporter, syms *Arch\n \tif len(s.R) == 0 {\n \t\treturn\n \t}\n-\tif s.Attr.ReadOnly() {\n+\tif target.IsWasm() && s.Attr.ReadOnly() {\n \t\t// The symbol's content is b...
2020-04-25T00:22:39
ggml-org/llama.cpp
5bb4a3edec297e74b0f7bd4ed5d0fdd12e28d858
7f766929ca8e8e01dcceb1c526ee584f7e5e1408
vulkan: fix validation error about VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR (#16086)
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -1584,7 +1584,9 @@ static void ggml_vk_create_pipeline_func(vk_device& device, vk_pipeline& pipelin\n }\n \n vk::ComputePipelineCreateInfo compute_pipeline_create_info(\n- vk::PipelineCreateFlags{},\n+ device->pipeline_exec...
2025-09-21T06:23:37
vuejs/vue
ba0ebd4771ddb5c56c1261f82c842b57ca7163a6
ba9907c73c01b1b52afdf9486c178238a4a68169
fix: async edge case fix should apply to more browsers also optimize fix performance by avoiding calls to performance.now()
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -7,7 +7,8 @@ import { callHook, activateChildComponent } from '../instance/lifecycle'\n import {\n warn,\n nextTick,\n- devtools\n+ devtools,\n+ inBrowser\n } from '../util/index'\n \n export const MAX_UPDATE_COUNT = 100\n@@ -32,10 +33,35 @@ fu...
2019-01-23T23:41:50
huggingface/transformers
87ae2a4632de9c3090272d5cd37db86c0e03a0a9
502a10a6f89b2919444aba68cd0def51d5ba618c
fix bug:divide by zero in _maybe_log_save_evaluate() (#28251) Co-authored-by: liujizhong1 <liujizhong1@xiaomi.com>
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2238,7 +2238,7 @@ def _issue_warnings_after_load(self, load_result):\n )\n \n def _maybe_log_save_evaluate(self, tr_loss, model, trial, epoch, ignore_keys_for_eval):\n- if self.control.should_log:\n+ if self.control.should_...
2024-01-02T14:19:42
nodejs/node
50235a03ef0dafd9738766643cd0e0266eafd4e6
7253eaef58785e55b0f6eb217863c445a5ff01c6
src: avoid creating local data variable This commit removes the following comment and attempts to fix the issue as the the requirement of g++ version is now 4.9.4 or newer: // XXX(bnoordhuis) Work around a g++ 4.9.2 template type inferrer bug // when the expression is written as info.Data().As<v8::External>(). PR-UR...
[ { "path": "src/env-inl.h", "patch": "@@ -283,10 +283,8 @@ template <typename T>\n inline Environment* Environment::GetCurrent(\n const v8::PropertyCallbackInfo<T>& info) {\n CHECK(info.Data()->IsExternal());\n- // XXX(bnoordhuis) Work around a g++ 4.9.2 template type inferrer bug\n- // when the expr...
2017-08-10T10:32:12
golang/go
f8b74eafd5d2019a7a0fcfc21e037ba5f2f84732
e77639f3a4ab27e2b6520ca54ee192953be00186
[dev.link] cmd/link: set symbol alignments after dynreloc2 The symbol alignment is set based on its size. In dynreloc2 symbol size may change (e.g. elfdynhash2). So the alignment must be set after dynreloc2. Noticed this while debugging nondeterministic build on Solaris. Idx Name Size VMA ...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1336,11 +1336,6 @@ func (ctxt *Link) dodata2(symGroupType []sym.SymKind) {\n \t\t}\n \t\tstate.data2[st] = append(state.data2[st], s)\n \n-\t\t// Set explicit alignment here, so as to avoid having to update\n-\t\t// symbol alignment in doDataSect2,...
2020-04-26T18:56:19
ggml-org/llama.cpp
405921dcefdd4e90ed948a4bf179007c2fa92b2d
fa6383ca7e7ccb8ca3bdfeb37e348ddc4113aa26
ggml : introduce semantic versioning (ggml/1336) * ggml : introduce semantic versioning This commit introduces semantic versioning for the GGML library. The motivation for this is that the current versioning, using build numbers, makes it difficult to track changes and releases for projects that use ggml. The relea...
[ { "path": "ggml/CMakeLists.txt", "patch": "@@ -1,5 +1,41 @@\n cmake_minimum_required(VERSION 3.14) # for add_link_options and implicit target directories.\n project(\"ggml\" C CXX ASM)\n+\n+### GGML Version\n+set(GGML_VERSION_MAJOR 0)\n+set(GGML_VERSION_MINOR 9)\n+set(GGML_VERSION_PATCH 0)\n+set(GGML_VERSIO...
2025-09-16T04:16:52
vuejs/vue
b0f2f830e62b21a93f22d12ac6402e70354e849c
42fdf3f8378e5dc379808a4fa67b39c4a74ae191
chore: fix flow
[ { "path": "flow/options.js", "patch": "@@ -44,7 +44,7 @@ declare type ComponentOptions = {\n beforeDestroy?: Function;\n destroyed?: Function;\n errorCaptured?: () => boolean | void;\n- ssrPrefetch?: Function;\n+ serverPrefetch?: Function;\n \n // assets\n directives?: { [key: string]: Object };...
2019-01-18T21:46:49
huggingface/transformers
502a10a6f89b2919444aba68cd0def51d5ba618c
cad9f5c6cc1198d3fa58fd16f1080f2c07f0c4df
Fix trainer saving safetensors: metadata is None (#28219) * Update trainer.py * format
[ { "path": "src/transformers/trainer.py", "patch": "@@ -2908,7 +2908,9 @@ def _save(self, output_dir: Optional[str] = None, state_dict=None):\n else:\n logger.info(\"Trainer.model is not a `PreTrainedModel`, only saving its state dict.\")\n if self.args.save_safete...
2024-01-02T12:58:29
nodejs/node
89d9cc789bd7e77d488cfd90bade0669f88cf971
835c383969d9bddc3980b9cd7f0d7adf3e2701b9
doc: expanded description of buffer.slice Added description for the case when `end` is greater than buffer length PR-URL: https://github.com/nodejs/node/pull/14720 Fixes: https://github.com/nodejs/node/issues/14714 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Revie...
[ { "path": "doc/api/buffer.md", "patch": "@@ -1907,6 +1907,9 @@ changes:\n Returns a new `Buffer` that references the same memory as the original, but\n offset and cropped by the `start` and `end` indices.\n \n+Specifying `end` greater than [`buf.length`] will return the same result as\n+that of `end` equal ...
2017-08-09T20:16:14
golang/go
e77639f3a4ab27e2b6520ca54ee192953be00186
d5c932762865de1d12cf522d5d7aad5280943bde
[dev.link] cmd/link: sort DynidSyms Sort DynidSyms to ensure a deterministic build. Fix Solaris build. Change-Id: I6c01cb3dec5e46b3d881e720e3c2079643b5c7c7 Reviewed-on: https://go-review.googlesource.com/c/go/+/230277 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Review...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -1276,6 +1276,7 @@ func (l *Loader) DynidSyms() []Sym {\n \tfor s := range l.dynid {\n \t\tsl = append(sl, s)\n \t}\n+\tsort.Slice(sl, func(i, j int) bool { return sl[i] < sl[j] })\n \treturn sl\n }\n ", "additions": 1, "deletions": 0,...
2020-04-26T17:19:32
ggml-org/llama.cpp
803dac2e48ef3ba26a504eb27c4e77ec2d21f7d0
459c0c2c1a400f960d7b8e8d94d31a8426f80986
vulkan: use vec dot for matrix matrix multiplications (#16056) * vulkan: Change the mul_mm shared memory and register caching system to use vec2 instead of scalars, to enable using dot2 instructions * use fma instead of dot to fix Nvidia and Apple performance issues
[ { "path": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mm.comp", "patch": "@@ -31,10 +31,10 @@\n #include \"types.comp\"\n \n #ifndef LOAD_VEC_A\n-#define LOAD_VEC_A 1\n+#define LOAD_VEC_A 2\n #endif\n #ifndef LOAD_VEC_B\n-#define LOAD_VEC_B 1\n+#define LOAD_VEC_B 2\n #endif\n \n #if !defined(TO_FLOAT_TYPE)\n@@...
2025-09-20T08:42:56
vuejs/vue
a47a0ee287116df7f2b89b956fdb3a3ea6c6330c
732bf878c1f8b60e075990ec490977758d4fb886
workflow: fix release script [ci skip]
[ { "path": "scripts/release.sh", "patch": "@@ -57,10 +57,12 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then\n git add -f \\\n dist/*.js \\\n packages/vue-server-renderer/basic.js \\\n- packages/vue-server-renderer/build.js \\\n+ packages/vue-server-renderer/build.dev.js \\\n+ packages/vue-server-render...
2019-01-16T16:22:02