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
3b76bed3cdd865d9aabaa8e42eac72dc61e067db
7cfb814b0a43831ec6f847d7bb6ff00020393fcf
cmd/internal/moddeps: skip GOROOT/pkg when locating modules Fixes #37929 Change-Id: I1435411de43aed98f40e0d98e450310b0fdf804c Reviewed-on: https://go-review.googlesource.com/c/go/+/223924 Run-TryBot: Bryan C. Mills <bcmills@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Gobot Gobot <go...
[ { "path": "src/cmd/internal/moddeps/moddeps_test.go", "patch": "@@ -39,6 +39,14 @@ func findGorootModules(t *testing.T) []gorootModule {\n \t\t\tif info.Name() == \"vendor\" || info.Name() == \"testdata\" {\n \t\t\t\treturn filepath.SkipDir\n \t\t\t}\n+\t\t\tif path == filepath.Join(runtime.GOROOT(), \"pkg\...
2020-03-18T17:50:14
ggml-org/llama.cpp
ad57d3edd2f48cf6dc41a98fd9b303435ecb4fb0
1ba45d49822c39ca9a552c7b75efe0495ff400c3
batch : fix uninitialized has_cpl flag (#14733) ggml-ci
[ { "path": "src/llama-batch.cpp", "patch": "@@ -157,6 +157,8 @@ bool llama_batch_allocr::init(\n n_outputs += batch.logits[i] != 0;\n }\n \n+ has_cpl = false;\n+\n // determine coupled sequences\n // these are pairs of sequences that have at least one token in the input batch that is a...
2025-07-17T06:45:54
huggingface/transformers
239cd0eaa2d8d6cd3147f1e1457d4c1b0f0ad48a
1e32b05e066922e1bb3abdaa99e3b0fb3c0ee6e1
Translate task summary to chinese (#27180) * translate task_summary.md to chinese * update translation * update translation * fix _toctree.yml
[ { "path": "docs/source/zh/_toctree.yml", "patch": "@@ -32,3 +32,7 @@\n - local: tflite\n title: 导出为 TFLite\n title: 开发者指南\n+- sections:\n+ - local: task_summary\n+ title: 🤗Transformers能做什么\n+ title: 概念指南\n\\ No newline at end of file", "additions": 4, "deletions": 0, "language": "Y...
2023-11-01T16:28:34
vuejs/vue
a8ac129a5876a7eeae0137bf2f1b0968d4d6ffad
9b4dbba384bc81a99abe429476729f80cb06d19a
fix: ensure looseEqual is not dependant on key enumeration order close #5908
[ { "path": "src/shared/util.js", "patch": "@@ -248,15 +248,31 @@ export function genStaticKeys (modules: Array<ModuleOptions>): string {\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\n-export function looseEqual (a: mixed, b: mixed): ...
2017-07-21T00:41:18
nodejs/node
2ff23c5622c9738f48c19f078ba140efe2699871
23b3bbf506b8c53dad7abf70f2a27bf2d9e41746
doc: fix mistake in path.relative The docs implied that the parameters `from` and `to` are invalid only if neither of them is a string; in fact, they are invalid as soon as one of them is not a string. PR-URL: https://github.com/nodejs/node/pull/13912 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Jame...
[ { "path": "doc/api/path.md", "patch": "@@ -466,7 +466,7 @@ path.relative('C:\\\\orandea\\\\test\\\\aaa', 'C:\\\\orandea\\\\impl\\\\bbb');\n // Returns: '..\\\\..\\\\impl\\\\bbb'\n ```\n \n-A [`TypeError`][] is thrown if neither `from` nor `to` is a string.\n+A [`TypeError`][] is thrown if either `from` or `...
2017-06-25T19:31:54
ggml-org/llama.cpp
496957e1cbcb522abc63aa18521036e40efce985
21c021745d781edf9c44b4972ef6cbbf53b0ecff
llama : fix parameter order for hybrid memory initialization (#14725)
[ { "path": "src/llama-memory-hybrid.cpp", "patch": "@@ -38,9 +38,9 @@ llama_memory_hybrid::llama_memory_hybrid(\n type_v,\n v_trans,\n offload,\n+ 1,\n kv_size,\n n_seq_max,\n- 1,\n n_pad,\n n_swa,\n swa_type", "additions": 1, ...
2025-07-16T19:17:25
golang/go
6197104c14dc6e72a368f9b5d3d2a14381f5e456
42dfac67083f3fd09ca214738307d0404a0c0147
cmd/go/internal/modfetch/zip_sum_test: remove dead versions * gitlab.com/yumeko/MumbleEmu: the go-import tag now points to gitlab.com/yumeko/mumbleemu, but the module path hasn't changed in go.mod. * github.com/openshift/api: tag v3.9.0 was deleted. * github.com/AlexStocks/log4go: tag v1.0.5 was deleted. * github....
[ { "path": "src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv", "patch": "@@ -40,7 +40,6 @@ git.torproject.org/pluggable-transports/goptlib.git,v1.1.0,h1:LMQAA8pAho+QtYrrVN\n gitee.com/nggs/util,v0.0.0-20190830024003-3e49d2efc84b,h1:6KQpPEs326uPrICQy9x/PxmR8U0v/XsFzpt0k1nFKcY=,a062c99c2b560a361...
2020-02-10T19:42:02
huggingface/transformers
1e32b05e066922e1bb3abdaa99e3b0fb3c0ee6e1
21a2fbaf48ad7841567472b23dd8c0e553edd495
improving TimmBackbone to support FrozenBatchNorm2d (#27160) * supporting freeze_batch_norm_2d * supporting freeze_batch_norm_2d * including unfreeze + separate into methods * fix typo * calling unfreeze * lint * Update src/transformers/models/timm_backbone/modeling_timm_backbone.py Co-authored-by...
[ { "path": "src/transformers/models/timm_backbone/configuration_timm_backbone.py", "patch": "@@ -43,6 +43,8 @@ class TimmBackboneConfig(PretrainedConfig):\n out_indices (`List[int]`, *optional*):\n If used as backbone, list of indices of features to output. Can be any of 0, 1, 2, etc. (de...
2023-11-01T15:58:35
vuejs/vue
9b4dbba384bc81a99abe429476729f80cb06d19a
082fc3967db4d3290e901a38504dcd9bb698e561
fix(transition): should trigger transition hooks for v-show in ie9 fix #5525
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-import { isIE9 } from 'core/util/env'\n import { enter, leave } from '../modules/transition'\n \n // recursively search for possible transition defined inside the component root\n@@ -16,7 +15,7 @@ export d...
2017-07-21T00:03:33
ggml-org/llama.cpp
21c021745d781edf9c44b4972ef6cbbf53b0ecff
b0f0ecc3dce806c68609d375a2b3edc430d8db18
ggml: Add initial WebGPU backend (#14521) * Minimal setup of webgpu backend with dawn. Just prints out the adapter and segfaults * Initialize webgpu device * Making progress on setting up the backend * Finish more boilerplate/utility functions * Organize file and work on alloc buffer * Add webgpu_context to prepa...
[ { "path": ".github/workflows/build.yml", "patch": "@@ -135,6 +135,69 @@ jobs:\n cd build\n ctest -L main --verbose --timeout 900\n \n+ macOS-latest-cmake-arm64-webgpu:\n+ runs-on: macos-14\n+\n+ steps:\n+ - name: Clone\n+ id: checkout\n+ uses: actions/checkout@v...
2025-07-16T15:18:51
golang/go
0c0e8f224d5724e317952f77d215a752a3a7b7d9
6412750f32224f6820f781d09b2092c5c358dddc
runtime: don't send preemption signal if there is a signal pending If multiple threads call preemptone to preempt the same M, it may send many signals to the same M such that it hardly make progress, causing live-lock problem. Only send a signal if there isn't already one pending. Fixes #37741. Change-Id: Id94adb0b9...
[ { "path": "src/runtime/runtime2.go", "patch": "@@ -539,6 +539,10 @@ type m struct {\n \t// requested, but fails. Accessed atomically.\n \tpreemptGen uint32\n \n+\t// Whether this is a pending preemption signal on this M.\n+\t// Accessed atomically.\n+\tsignalPending uint32\n+\n \tdlogPerM\n \n \tmOS", "...
2020-03-17T00:08:00
huggingface/transformers
21a2fbaf48ad7841567472b23dd8c0e553edd495
f8afb2b2ec5b2fe33667d0a9b7655501d5d2e19a
Fix docstring in get_oneformer_resize_output_image_size func (#27207)
[ { "path": "src/transformers/models/oneformer/image_processing_oneformer.py", "patch": "@@ -307,14 +307,16 @@ def get_oneformer_resize_output_image_size(\n Computes the output size given the desired size.\n \n Args:\n- input_image (`np.ndarray`):\n+ image (`np.ndarray`):\n T...
2023-11-01T15:31:13
vuejs/vue
082fc3967db4d3290e901a38504dcd9bb698e561
17130611261fdbab70d0e5ab45036e4b612b17fe
fix(parser): only ignore the first newline in <pre> fix #6146
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -79,9 +79,6 @@ export function parseHTML (html, options) {\n last = html\n // Make sure we're not in a plaintext content element like script/style\n if (!lastTag || !isPlainTextElement(lastTag)) {\n- if (shouldIgnoreFirstNewline(l...
2017-07-20T23:30:09
ggml-org/llama.cpp
225e7a1438f4ea85eaa7b5ef3ab3b266ee4d9c06
ab140198211385b85eeeb0abd549a4bbe259e10d
llama : add high-throughput mode (#14363) * kv-cache : prepare K/V buffers for separation ggml-ci * batched-bench : fix oob write ggml-ci * llama : add "virtual sequences" ggml-ci * llama : use "stream" vs "virtual sequence" ggml-ci * graph : fix stream splitting when KV cache is not used ggml-ci * kv-cache ...
[ { "path": "common/arg.cpp", "patch": "@@ -1464,6 +1464,14 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n params.swa_full = true;\n }\n ).set_env(\"LLAMA_ARG_SWA_FULL\"));\n+ add_opt(common_arg(\n+ {\"--kv-unified\", \"-kvu\"},\n+ ...
2025-07-16T13:35:42
golang/go
6412750f32224f6820f781d09b2092c5c358dddc
971f8a2f9a5beb0473f82d7299613c86d2b4a5b9
cmd/go: add a missing curly-brace in the 'stale' command format string The missing brace made the 'stale' command a no-op in the non-error case. Fix the 'short' skip in install_cross_gobin (it was backward) and update it to no longer check staleness of a not-necessarily-stale target and to no longer expect to be able...
[ { "path": "src/cmd/go/script_test.go", "patch": "@@ -759,7 +759,7 @@ func (ts *testScript) cmdStale(neg bool, args []string) {\n \tif len(args) == 0 {\n \t\tts.fatalf(\"usage: stale target...\")\n \t}\n-\ttmpl := \"{{if .Error}}{{.ImportPath}}: {{.Error.Err}}{else}}\"\n+\ttmpl := \"{{if .Error}}{{.ImportPat...
2020-03-17T19:17:22
vuejs/vue
17130611261fdbab70d0e5ab45036e4b612b17fe
06b9b0bbadcc6c5afd300ed7748294e62ba00803
fix(v-on): revert component root data.on/data.nativeOn behavior for weex-vue-render compat close #6109
[ { "path": "src/core/instance/render.js", "patch": "@@ -54,12 +54,12 @@ export function initRender (vm: Component) {\n defineReactive(vm, '$attrs', parentData && parentData.attrs, () => {\n !isUpdatingChildComponent && warn(`$attrs is readonly.`, vm)\n }, true)\n- defineReactive(vm, '$listen...
2017-07-19T23:39:42
huggingface/transformers
f8afb2b2ec5b2fe33667d0a9b7655501d5d2e19a
391d14e8105cf877797e95a92534db89077ccb7e
Add TensorFlow implementation of ConvNeXTv2 (#25558) * Add type annotations to TFConvNextDropPath * Use tf.debugging.assert_equal for TFConvNextEmbeddings shape check * Add TensorFlow implementation of ConvNeXTV2 * check_docstrings: add TFConvNextV2Model to exclusions TFConvNextV2Model and TFConvNextV2For...
[ { "path": "docs/source/en/index.md", "patch": "@@ -97,7 +97,7 @@ Flax), PyTorch, and/or TensorFlow.\n | [Conditional DETR](model_doc/conditional_detr) | ✅ | ❌ | ❌ |\n | [ConvBERT](model_doc/convbert) |...
2023-11-01T15:09:55
nodejs/node
f85d5b21fda925b879cf27bdcde81478fc134b31
301c68bc2d778139321f914ad1bd5358f04c4493
doc: fixed formatting issue in cli docs Removed some bad escape characters PR-URL: https://github.com/nodejs/node/pull/13808 Fixes: https://github.com/nodejs/node/issues/13805 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com>...
[ { "path": "doc/api/cli.md", "patch": "@@ -512,7 +512,7 @@ added: v6.11.0\n \n Load an OpenSSL configuration file on startup. Among other uses, this can be\n used to enable FIPS-compliant crypto if Node.js is built with `./configure\n-\\-\\-openssl\\-fips`.\n+--openssl-fips`.\n \n If the [`--openssl-config`]...
2017-06-20T01:23:09
vuejs/vue
06b9b0bbadcc6c5afd300ed7748294e62ba00803
d03fa26687605a43d9a0c3f395d1d32375f7eaee
fix(v-bind): respect .prop modifier on components (#6159)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -483,8 +483,8 @@ function processAttrs (el) {\n )\n }\n }\n- if (!el.component && (\n- isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)\n+ if (isProp || (\n+ !el.component && pla...
2017-07-19T22:11:51
ggml-org/llama.cpp
ab140198211385b85eeeb0abd549a4bbe259e10d
64978340b0b4a0a6e2fb74270c1509383d2eff32
Support diffusion models: Add Dream 7B (#14644) * Support diffusion models: Add Dream 7B * Move diffusion to examples * Move stuff to examples. Add patch to not use kv-cache * Address review comments * Make sampling fast * llama: remove diffusion functions * Add basic timings + cleanup * More cleanup * Review ...
[ { "path": "common/arg.cpp", "patch": "@@ -3423,5 +3423,34 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n }\n ).set_examples({LLAMA_EXAMPLE_SERVER}));\n \n+ // diffusion parameters\n+ add_opt(common_arg(\n+ { \"--diffusion-steps\" }, \"N\",\n+ ...
2025-07-16T12:03:51
golang/go
971f8a2f9a5beb0473f82d7299613c86d2b4a5b9
0eeec4f25dc6eccc4e76ab91053e2b4823c72714
database/sql: process all Session Resets synchronously Adds a new interface, driver.ConnectionValidator, to allow drivers to signal they should not be used again, separatly from the session resetter interface. This is done now that the session reset is done after the connection is put into the connection pool. Previo...
[ { "path": "src/database/sql/driver/driver.go", "patch": "@@ -255,15 +255,23 @@ type ConnBeginTx interface {\n // SessionResetter may be implemented by Conn to allow drivers to reset the\n // session state associated with the connection and to signal a bad connection.\n type SessionResetter interface {\n-\t/...
2019-04-26T21:45:46
huggingface/transformers
391d14e8105cf877797e95a92534db89077ccb7e
f9b4bea0a63062f8b8bfaf9d88f9529a806bb8e4
[WhisperForCausalLM] Add WhisperForCausalLM for speculative decoding (#27195) * finish * add tests * fix all tests * [Assistant Decoding] Add test * fix more * better * finish * Apply suggestions from code review Co-authored-by: amyeroberts <22614925+amyeroberts@users.noreply.github.com> * f...
[ { "path": "docs/source/en/model_doc/whisper.md", "patch": "@@ -88,6 +88,11 @@ The original code can be found [here](https://github.com/openai/whisper).\n - forward\n - generate\n \n+## WhisperForCausalLM\n+\n+[[autodoc]] WhisperForCausalLM\n+ - forward\n+\n ## WhisperForAudioClassification\n \n [...
2023-11-01T15:01:53
nodejs/node
301c68bc2d778139321f914ad1bd5358f04c4493
0526f84ad3ae8c88dabd4919551c4b8c6c3b3978
test: skip fips tests using OpenSSL config file The motivation for this commit is that we are building Node with --shared-openssl and in our case the system OpenSSL version supports FIPS. The tests in test-crypto-fips that toggle fips mode on/off using the config file option might succeed and return 1 instead of an e...
[ { "path": "test/parallel/test-crypto-fips.js", "patch": "@@ -21,6 +21,10 @@ function compiledWithFips() {\n return process.config.variables.openssl_fips ? true : false;\n }\n \n+function sharedOpenSSL() {\n+ return process.config.variables.node_shared_openssl;\n+}\n+\n function addToEnv(newVar, value) {\...
2017-06-18T12:15:00
vuejs/vue
d03fa26687605a43d9a0c3f395d1d32375f7eaee
b0f00e31e7d06edfdc733e2e7f24d5ca448759f9
fix(compile): properly generate comments with special character (#6156) close #6150
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -442,7 +442,7 @@ export function genText (text: ASTText | ASTExpression): string {\n }\n \n export function genComment (comment: ASTText): string {\n- return `_e('${comment.text}')`\n+ return `_e(${JSON.stringify(comment.text)})`\n }\n \n function ge...
2017-07-19T22:09:21
ggml-org/llama.cpp
64978340b0b4a0a6e2fb74270c1509383d2eff32
6ffd4e9c442e99afac3d138543ebf86d5fc5ee03
ggml : add asserts (#14720) * ggml : add asserts ggml-ci * cont : fix constant type Co-authored-by: Diego Devesa <slarengh@gmail.com> --------- Co-authored-by: Diego Devesa <slarengh@gmail.com>
[ { "path": "ggml/src/ggml-cpu/ops.cpp", "patch": "@@ -4015,6 +4015,9 @@ static void ggml_compute_forward_rms_norm_f32(\n \n const float scale = 1.0f/sqrtf(mean + eps);\n \n+ // if you hit this, likely you got an inf somewhere earlier\n+ assert(scale > 0.0f);\n+\n...
2025-07-16T11:43:32
golang/go
f4ddc00345af8ffc77fabe2f6f21d570288159c1
14d20dc4f38dda548f6991cc687bc71b250b1603
runtime: don't report a pointer alignment error for pointer-free base type Fixes #37298 Change-Id: I8ba9c8b106e16cea7dd25473c7390b0f2ba9a1a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/223781 Run-TryBot: Keith Randall <khr@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Matthew Dem...
[ { "path": "src/runtime/checkptr.go", "patch": "@@ -8,8 +8,10 @@ import \"unsafe\"\n \n func checkptrAlignment(p unsafe.Pointer, elem *_type, n uintptr) {\n \t// Check that (*[n]elem)(p) is appropriately aligned.\n+\t// Note that we allow unaligned pointers if the types they point to contain\n+\t// no pointe...
2020-03-17T20:27:11
huggingface/transformers
f9b4bea0a63062f8b8bfaf9d88f9529a806bb8e4
037fb7d0e1086146612a716ef914305160134e9c
Added cache_block_outputs option to enable GPTQ for non-regular models (#27032) * Added cache_block_outputs option to enable GPTQ for non-regular models * Update src/transformers/utils/quantization_config.py Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> * Update src/transformers/utils/q...
[ { "path": "src/transformers/utils/quantization_config.py", "patch": "@@ -360,6 +360,8 @@ class GPTQConfig(QuantizationConfigMixin):\n max_input_length (`int`, *optional*):\n The maximum input length. This is needed to initialize a buffer that depends on the maximum expected input\n ...
2023-11-01T14:37:19
vuejs/vue
b0f00e31e7d06edfdc733e2e7f24d5ca448759f9
c70addf7d1a8e820ed80b6ab14aace5aa7b604c5
fix(provide/inject): resolve inject properly from mixins (#6107) fix #6093
[ { "path": "src/core/instance/inject.js", "patch": "@@ -1,7 +1,6 @@\n /* @flow */\n \n import { warn } from '../util/index'\n-import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n import { defineReactive, observerState } from '../observer/index'\n \n@@ -56,7 +55,7 @@ export funct...
2017-07-19T22:07:33
nodejs/node
0526f84ad3ae8c88dabd4919551c4b8c6c3b3978
b714060e086c305a1a2aacdee9731797cfbed03d
src,fs: calculate times as unsigned long PR-URL: https://github.com/nodejs/node/pull/13281 Fixes: https://github.com/nodejs/node/issues/13255 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -478,10 +478,13 @@ void FillStatsArray(double* fields, const uv_stat_t* s) {\n #else\n fields[9] = -1;\n #endif\n- // Dates.\n-#define X(idx, name) \\\n- fields[idx] = (s->st_##name.tv_sec * 1e3) + \\\n- (s->st_##name.tv_...
2017-05-29T12:27:52
ggml-org/llama.cpp
e4841d24d3485ea4af54f8b65a19ec3123f0ff3c
538cc77f7f44dfa047dba6a06d90c86dda69cf1d
llama : fix parallel processing for plamo2 (#14716)
[ { "path": "src/llama-model.cpp", "patch": "@@ -15763,6 +15763,7 @@ struct llm_build_plamo2 : public llm_graph_context_mamba {\n cb(zx, \"mamba_in_proj\", il);\n // {8192, 5, 1, 1} -> {8192, 1, 5, 1}\n zx = ggml_permute(ctx0, zx, 0, 2, 1, 3);\n+ zx = ggml_cont(ctx0, zx);\n ...
2025-07-16T10:12:22
golang/go
2f54081adfc967836842c96619d241378400ece6
2fbca94db7e14fc1d18162cd203d7afc19b520e8
testing: do not require os.Exit in TestMain If TestMain reports a wrong exit code to os.Exit, the test will be exited with exist code inconsist with test results. This CL eliminates the requirement of calling os.Exit in TestMain. Now, m.Run records the execution status of its test, the outer main func will call os.Ex...
[ { "path": "doc/go1.15.html", "patch": "@@ -86,6 +86,13 @@ <h2 id=\"library\">Core library</h2>\n that reports the time at which the test binary will have exceeded its\n timeout.\n </p>\n+ <p><!-- golang.org/issue/34129 -->\n+ A <code>TestMain</code> function is no longer required to ...
2020-02-16T13:42:29
huggingface/transformers
037fb7d0e1086146612a716ef914305160134e9c
f3c1a172bb7a8b67250343dba6b506cc6b45e0ee
added unsqueeze_dim to apply_rotary_pos_emb (#27117) * added unsqueeze_dim to apply_rotary_pos_emb * Added docstring * Modified docstring * Modified docstring * Modified docstring * Modified docstring * Modified docstring * ran make fix-copies and make fixup * Update src/transformers/models/lla...
[ { "path": "src/transformers/models/deprecated/open_llama/modeling_open_llama.py", "patch": "@@ -155,9 +155,29 @@ def rotate_half(x):\n \n \n # Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb\n-def apply_rotary_pos_emb(q, k, cos, sin, position_ids):\n- cos = cos[position_ids].uns...
2023-11-01T14:16:57
vuejs/vue
c70addf7d1a8e820ed80b6ab14aace5aa7b604c5
be3dc9c6e923248bcf81eb8240dd4f3c168fac59
fix(v-model): use stricter check for <select> option update close #6112
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -30,6 +30,7 @@ export default {\n if (isIE || isEdge) {\n setTimeout(cb, 0)\n }\n+ el._vOptions = [].map.call(el.options, getValue)\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n ...
2017-07-19T21:51:41
rust-lang/rust
270e52f6da05f40ee320ea1b0f1a914d2463babf
75e3a2e905ec17ae430a936d620862c598b022bb
fix: manual_unwrap_or_default
[ { "path": "clippy_lints/src/manual_unwrap_or_default.rs", "patch": "@@ -9,8 +9,8 @@ use rustc_span::sym;\n use clippy_utils::diagnostics::span_lint_and_sugg;\n use clippy_utils::higher::IfLetOrMatch;\n use clippy_utils::sugg::Sugg;\n-use clippy_utils::ty::implements_trait;\n-use clippy_utils::{is_default_eq...
2025-02-05T02:23:03
ggml-org/llama.cpp
538cc77f7f44dfa047dba6a06d90c86dda69cf1d
5cae76654113160f691f581930b69fc5535e8159
server : fix handling of the ignore_eos flag (#14710) ggml-ci
[ { "path": "tools/server/server.cpp", "patch": "@@ -127,7 +127,6 @@ struct slot_params {\n std::vector<std::string> response_fields;\n bool timings_per_token = false;\n bool post_sampling_probs = false;\n- bool ignore_eos = false;\n \n struct common_params_sampling sampling;\n struct c...
2025-07-16T09:13:57
huggingface/transformers
f3c1a172bb7a8b67250343dba6b506cc6b45e0ee
636f704d0ba16998a85924c33c104bc6dfcd44c2
Fixing docstring in get_resize_output_image_size function (#27191)
[ { "path": "src/transformers/models/conditional_detr/image_processing_conditional_detr.py", "patch": "@@ -136,9 +136,9 @@ def get_resize_output_image_size(\n image size is computed by keeping the aspect ratio of the input image size.\n \n Args:\n- image_size (`Tuple[int, int]`):\n- ...
2023-11-01T12:42:41
golang/go
ff1eb428654b7815a8fc825f1cc29d6cf72cc2f7
26154f31ad6c801d8bad5ef58df1e9263c6beec7
time: fix time.Before to reuse t.sec(), u.sec() Fixes #36987 Change-Id: I91ea1a42f75302de5256a22d382ab7f1b307a498 Reviewed-on: https://go-review.googlesource.com/c/go/+/217360 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
[ { "path": "src/time/time.go", "patch": "@@ -252,7 +252,9 @@ func (t Time) Before(u Time) bool {\n \tif t.wall&u.wall&hasMonotonic != 0 {\n \t\treturn t.ext < u.ext\n \t}\n-\treturn t.sec() < u.sec() || t.sec() == u.sec() && t.nsec() < u.nsec()\n+\tts := t.sec()\n+\tus := u.sec()\n+\treturn ts < us || ts == ...
2020-02-03T08:47:41
vuejs/vue
be3dc9c6e923248bcf81eb8240dd4f3c168fac59
381b48503aae796c5c21c318cae8b0a8322dde35
fix: include boolean in isPrimitive check (#6127) suppresses key warning for boolean values, closes #6126
[ { "path": "src/shared/util.js", "patch": "@@ -22,7 +22,11 @@ export function isFalse (v: any): boolean %checks {\n * Check if value is primitive\n */\n export function isPrimitive (value: any): boolean %checks {\n- return typeof value === 'string' || typeof value === 'number'\n+ return (\n+ typeof va...
2017-07-19T12:27:48
rust-lang/rust
a2f9861df8a817f3e3dd07a228b37d0569b67ece
75e3a2e905ec17ae430a936d620862c598b022bb
fix [`manual_map`] not catching type adjustment
[ { "path": "clippy_lints/src/matches/manual_utils.rs", "patch": "@@ -73,7 +73,7 @@ where\n }\n \n // `map` won't perform any adjustments.\n- if !cx.typeck_results().expr_adjustments(some_expr.expr).is_empty() {\n+ if expr_has_type_coercion(cx, expr) {\n return None;\n }\n \n@@ -124,...
2024-07-02T08:09:13
ggml-org/llama.cpp
79e0b68c178656bb0632cb8602d2940b755077f8
c81f4192f91a1e209c1eec7a84fe5371ef9175da
llama: add LLAMA_API to deprecated llama_kv_self_seq_div (#14708) Add LLAMA_API to fix the run-time error with llama-cpp-python in Windows env: attributeError: function 'llama_kv_self_seq_div' not found. Did you mean: 'llama_kv_self_seq_add'? Although llama_kv_self_seq_div() has been marked deprecated but it is neces...
[ { "path": "include/llama.h", "patch": "@@ -725,7 +725,7 @@ extern \"C\" {\n // - lazily on next llama_decode()\n // p0 < 0 : [0, p1]\n // p1 < 0 : [p0, inf)\n- DEPRECATED(void llama_kv_self_seq_div(\n+ DEPRECATED(LLAMA_API void llama_kv_self_seq_div(\n struct llama_context *...
2025-07-16T04:00:42
huggingface/transformers
636f704d0ba16998a85924c33c104bc6dfcd44c2
71025520bc980eec1825ec0716d086bdd9180e5a
Fix the typos and grammar mistakes in CONTRIBUTING.md. (#27193) Fix the typos and grammar mistakes in CONTRIBUTING.md
[ { "path": "CONTRIBUTING.md", "patch": "@@ -40,8 +40,8 @@ There are several ways you can contribute to 🤗 Transformers:\n \n If you don't know where to start, there is a special [Good First\n Issue](https://github.com/huggingface/transformers/contribute) listing. It will give you a list of\n-open issues that...
2023-11-01T12:42:22
nodejs/node
aaee43473b7abc2522d9968a92fb4c819fc7d7b3
fda25665be353396518927ad42a2f617816591c6
tools: update to ESLint 4.1.0 Update ESLint to 4.1.0. This fixes a bug that previously prevented us from using the new and stricter indentation checking. Refs: https://github.com/eslint/eslint/issues/8721 PR-URL: https://github.com/nodejs/node/pull/13895 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman...
[ { "path": "tools/eslint/README.md", "patch": "@@ -137,6 +137,10 @@ These folks keep the project moving and are resources for help.\n \n We have scheduled releases every two weeks on Friday or Saturday.\n \n+## Code of Conduct\n+\n+ESLint adheres to the [JS Foundation Code of Conduct](https://js.foundation/c...
2017-06-24T03:14:33
golang/go
61a0b0d62461a8697db9869cfaf39471228e7903
8a074fa275261a3dd1690f81e4fa6c45bdbb0471
[dev.link] cmd/link: use new relocation accessors in DWARF generation This gives some speedup and reduces some allocations: (linking cmd/compile) DwarfGenerateDebugInfo 63.2ms ± 3% 41.7ms ± 3% -34.04% (p=0.008 n=5+5) DwarfGenerateDebugInfo 20.0MB ± 0% 10.1MB ± 0% -49.62% (p=0.008 n=5+5) There are co...
[ { "path": "src/cmd/link/internal/ld/deadcode2.go", "patch": "@@ -306,8 +306,8 @@ func (d *deadcodePass2) decodeMethodSig2(ldr *loader.Loader, arch *sys.Arch, sym\n \tvar buf bytes.Buffer\n \tvar methods []methodsig\n \tfor i := 0; i < count; i++ {\n-\t\tbuf.WriteString(decodetypeName3(ldr, symIdx, relocs, o...
2020-03-16T16:09:52
rust-lang/rust
66599f1dd5ade8f87cfeca3b2334649820c659d9
54ad31b5b885bfcec5fd7d470ed03c0718656cac
Remove a no-longer-correct FIXME
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower/diagnostics.rs", "patch": "@@ -26,7 +26,6 @@ pub enum GenericArgsProhibitedReason {\n Static,\n /// When there is a generic enum, within the expression `Enum::Variant`,\n /// either `Enum` or `Variant` are allowed to have generic argumen...
2025-02-04T21:07:48
ggml-org/llama.cpp
4a4f426944e79b79e389f9ed7b34831cb9b637ad
ba1ceb34566c889a1fc500efa79799ffed25d9b0
model : add Kimi-K2 support (#14654) * Kimi-K2 conversion * add Kimi_K2 pre type * Kimi-K2 * Kimi-K2 unicode * Kimi-K2 * LLAMA_MAX_EXPERTS 384 * fix vocab iteration * regex space fix * add kimi-k2 to pre_computed_hashes * Updated with kimi-k2 get_vocab_base_pre hash * fix whitespaces * fix flake errors * ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -840,6 +840,9 @@ def get_vocab_base_pre(self, tokenizer) -> str:\n if chkhsh == \"169bf0296a13c4d9b7672313f749eb36501d931022de052aad6e36f2bf34dd51\":\n # ref: https://huggingface.co/LiquidAI/LFM2-Tokenizer\n res = \"lfm2\"\n+ ...
2025-07-15T19:54:22
huggingface/transformers
71025520bc980eec1825ec0716d086bdd9180e5a
ae093eef016533a3670561fa9e26addb42d446d1
Fix docstring get maskformer resize output image size (#27196) * fix docstring in get_maskformer_resize_output_image_size * fix functions docstring * fix 'copied from' functions docstring * fix docstring * fix return type * fix docstring resize
[ { "path": "src/transformers/models/mask2former/image_processing_mask2former.py", "patch": "@@ -304,21 +304,23 @@ def get_mask2former_resize_output_image_size(\n size_divisor: int = 0,\n default_to_square: bool = True,\n input_data_format: Optional[Union[str, ChannelDimension]] = None,\n-) -> tup...
2023-11-01T12:26:14
rust-lang/rust
54ad31b5b885bfcec5fd7d470ed03c0718656cac
cee2df27b7a1ae72cecad3d1d4d16911db1e596d
Fix incorrect terminology Lifetimes are elided in function signatures, and inferred in bodies.
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs", "patch": "@@ -2132,8 +2132,8 @@ impl InferenceContext<'_> {\n for kind_id in def_generics.iter_self_id().take(self_params) {\n let arg = args.peek();\n let arg = match (kind_id, arg) {\n- ...
2025-02-04T21:07:35
golang/go
3382411d932fb401b88a3b0ce33b74f9a26c8f4d
80702c7c3c6dfd4c48e1504e50e6cc0dcbdefade
[dev.link] cmd/link: don't set unreachable string variables in addstrdata If the variable is not reachable, don't bother setting it. The old behavior was to set it but not mark it reachable, nor the string data it points to. This was changed in CL 219226, which changed the variable and the string data to always reach...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -959,6 +959,9 @@ func addstrdata(arch *sys.Arch, l *loader.Loader, name, value string) {\n \t\tErrorf(nil, \"%s: cannot set with -X: not a var of type string (%s)\", name, typeName)\n \t\treturn\n \t}\n+\tif !l.AttrReachable(s) {\n+\t\treturn // don...
2020-03-13T20:56:00
vuejs/vue
a7615ef053d8bca85623666cb9a68e4d21f76952
ac3d1eaea34ee23978d395a84f68154e7e86caa1
build: fix postinstall script causing user install errors
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -41,9 +41,10 @@ After cloning the repo, run:\n \n ``` bash\n $ npm install\n+& npm run setup\n ```\n \n-This will also run the `postinstall` script which links two git hooks:\n+The `setup` script links two git hooks:\n \n - `pre-commit`: runs ESLint on stage...
2017-07-13T06:38:31
ggml-org/llama.cpp
ba1ceb34566c889a1fc500efa79799ffed25d9b0
10a0351a97c25471aea0bbde9cca54d32d163eec
vulkan: fix noncontig check for mat_mul_id splitting (#14683) * vulkan: fix noncontig check for mat_mul_id splitting Remove supports_op check for > 4096 (splitting fixes this) * vulkan: fix batched matmul dequant for Q*_K
[ { "path": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -4922,7 +4922,7 @@ static bool ggml_vk_dim01_contiguous(const ggml_tensor * tensor) {\n return\n tensor->nb[0] == ggml_type_size(tensor->type) &&\n tensor->nb[1] == (tensor->nb[0]*tensor->ne[0])/ggml_blck_size(tensor->type) &...
2025-07-15T19:51:09
nodejs/node
d71d7a1bc78826920f872482c256a56e3fabf0c4
2e5ce2bc2c4b1abc48c514a668bb272484a59830
doc: fix link in async_hooks.md PR-URL: https://github.com/nodejs/node/pull/13930 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/async_hooks.md", "patch": "@@ -564,4 +564,4 @@ never be called.\n * Returns {number} the same `triggerAsyncId` that is passed to the `AsyncResource`\n constructor.\n \n-[`Hook Callbacks`]: #hook-callbacks\n+[`Hook Callbacks`]: #async_hooks_hook_callbacks", "additions": 1, "deletio...
2017-06-26T17:25:06
huggingface/transformers
ae093eef016533a3670561fa9e26addb42d446d1
82c7e879876822864b5ceaf2c99eb01159266bcd
[`core` / `Quantization` ] AWQ integration (#27045) * working v1 * oops * Update src/transformers/modeling_utils.py Co-authored-by: Marc Sun <57196510+SunMarc@users.noreply.github.com> * fixup * oops * push * more changes * add docs * some fixes * fix copies * add v1 doc * added ins...
[ { "path": "docker/transformers-all-latest-gpu/Dockerfile", "patch": "@@ -55,6 +55,9 @@ RUN python3 -m pip install --no-cache-dir auto-gptq --extra-index-url https://hu\n # Add einops for additional model testing\n RUN python3 -m pip install --no-cache-dir einops\n \n+# Add autoawq for quantization testing\n...
2023-11-01T08:06:31
vuejs/vue
086e6d98f4217542afcc2794717119c62dde89b8
dc1bca1361807596f73340e54d76d16568b3224f
fix: handle arrays in v-on object syntax
[ { "path": "src/core/instance/render-helpers/bind-object-listeners.js", "patch": "@@ -14,7 +14,7 @@ export function bindObjectListeners (data: any, value: any): VNodeData {\n for (const key in value) {\n const existing = on[key]\n const ours = value[key]\n- on[key] = existing ? [...
2017-07-13T05:41:01
golang/go
80702c7c3c6dfd4c48e1504e50e6cc0dcbdefade
0e06775eebf6d357f604a55c803aab5cc8054e67
[dev.link] cmd/link: use versioned .TOC. symbols on AIX I thought that only non-static symbols need TOC, but apparently this is not true. We need to use versioned .TOC. symbols. Partially fix AIX build. There is still another problem, but this gets us a bit farther in make.bash. Change-Id: I40ba4a4dd27da0fc6ab26e4a5...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -101,7 +101,8 @@ type LookupFn func(name string, version int) *sym.Symbol\n // we keep a subset for relocation application.\n type ArchSyms struct {\n \tTOC *sym.Symbol\n-\tDotTOC *sym.Symbol\n+\tDotTOC []*sym.Symbol // for each version\n+\n \tGOT...
2020-03-13T21:02:31
ggml-org/llama.cpp
68e37a61a7b24863f67541db65b4f6195962a268
cbc68be51d88b1d5531643b926a4b359c3cff131
model : add PLaMo-2 support (#14560) * Add PLaMo-2 model using hybrid memory module * Fix z shape * Add cmath to include from llama-vocab.h * Explicitly dequantize normalization weights before RoPE apply * Revert unnecessary cast because the problem can be solved by excluding attn_k, attn_q when quantizing * Use ...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -3508,6 +3508,175 @@ def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iter\n return [(new_name, data_torch)]\n \n \n+@ModelBase.register(\"Plamo2ForCausalLM\", \"PLaMo2ForCausalLM\")\n+class Plamo2Model(TextModel):\n+ mode...
2025-07-15T16:11:42
huggingface/transformers
113ebf80ac9bdb74037239847cd906d7ea986a18
25e6e9418cc03bde2051f20f3ce0765c268e5943
Safetensors serialization by default (#27064) * Safetensors serialization by default * First pass on the tests * Second pass on the tests * Third pass on the tests * Fix TF weight loading from TF-format safetensors * Specific encoder-decoder fixes for weight crossloading * Add VisionEncoderDecoder fi...
[ { "path": "src/transformers/modeling_flax_pytorch_utils.py", "patch": "@@ -27,9 +27,15 @@\n \n import transformers\n \n+from . import is_safetensors_available\n from .utils import logging\n \n \n+if is_safetensors_available():\n+ from safetensors import safe_open\n+ from safetensors.flax import load_f...
2023-10-31T18:16:49
nodejs/node
5fbbd25dc4133ed57f4904dfeee716a02e3817c9
6bf4c23295ea4dceca0ae47f354ec4ec3836917f
test: check uv_ip4_addr return value Fixes Coverity errors. PR-URL: https://github.com/nodejs/node/pull/13878 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
[ { "path": "test/cctest/test_inspector_socket.cc", "patch": "@@ -370,7 +370,7 @@ class InspectorSocketTest : public ::testing::Test {\n sockaddr_in addr;\n uv_tcp_init(&loop, &server);\n uv_tcp_init(&loop, &client_socket);\n- uv_ip4_addr(\"127.0.0.1\", PORT, &addr);\n+ GTEST_ASSERT_EQ(0, uv...
2017-06-22T17:43:03
vuejs/vue
91deb4fd910afd51137820f120d4c26d0a99e629
6bf97721f1e38713353d5ac9906c88dca2cdad9b
fix: multiple merged vnode hooks not invoked properly fix #6076
[ { "path": "src/core/vdom/helpers/update-listeners.js", "patch": "@@ -27,8 +27,9 @@ export function createFnInvoker (fns: Function | Array<Function>): Function {\n function invoker () {\n const fns = invoker.fns\n if (Array.isArray(fns)) {\n- for (let i = 0; i < fns.length; i++) {\n- fn...
2017-07-12T09:56:04
golang/go
3e00061f526707dbc0fa1754a7e98a29b2c25939
2b920cba8fa68f8ded28150ec1b1a5cea61ae0f0
cmd/internal/obj/riscv: rework instruction generation Rework instruction generation so that multiple instructions are generated from a single obj.Prog, rather than the current approach where obj.Progs are rewritten. This allows the original obj.Prog to remain intact, before being converted into an architecture specifi...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscvenc.s", "patch": "@@ -290,19 +290,11 @@ start:\n \n \t// F extension\n \tFNEGS\tF0, F1\t\t\t\t\t// d3100020\n-\n-\t// TODO(jsing): FNES gets encoded as FEQS+XORI - this should\n-\t// be handled as a single *obj.Prog so that the full two\n-\t// instruction en...
2019-12-18T15:09:45
ggml-org/llama.cpp
cbc68be51d88b1d5531643b926a4b359c3cff131
bdca38376f7e8dd928defe01ce6a16218a64b040
cuda: fix build warnings in set-rows.cu (unused variable) (#14687) Signed-off-by: Xiaodong Ye <xiaodong.ye@mthreads.com>
[ { "path": "ggml/src/ggml-cuda/set-rows.cu", "patch": "@@ -3,7 +3,10 @@\n typedef void (*set_rows_kernel_t)(const char * src, char * dst);\n \n template<typename src_t, typename dst_t>\n-__device__ void set_rows_1(const src_t * src_f, dst_t * dst_f) {}\n+__device__ void set_rows_1(const src_t * src_f, dst_t ...
2025-07-15T07:28:53
rust-lang/rust
836a989820aa82a7bb35c9fba670ab733406a84f
07cf20e98773677746d09f10ff4bdae8b7ee22c6
Add OneSidedRangeBound to eliminate panic in `split_point_of` See discussion in https://github.com/rust-lang/rust/pull/88502/files#r760177240
[ { "path": "library/core/src/ops/mod.rs", "patch": "@@ -182,10 +182,10 @@ pub use self::function::{Fn, FnMut, FnOnce};\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n pub use self::index::{Index, IndexMut};\n pub(crate) use self::index_range::IndexRange;\n-#[unstable(feature = \"one_sided_range\", issu...
2025-02-04T19:42:29
huggingface/transformers
e22b7ced9a7cb6cd9bc2effab7e520ce83cee2a9
4bb50aa212032bda01ed8a60d7b11307ef8265a5
Fix dropout in `StarCoder` (#27182) fix dropout in modeling_gpt_bigcode.py
[ { "path": "src/transformers/models/gpt_bigcode/modeling_gpt_bigcode.py", "patch": "@@ -364,7 +364,7 @@ def forward(\n key = key.transpose(1, 2).reshape(batch_size, tgt, self.num_heads, self.head_dim)\n value = value.transpose(1, 2).reshape(batch_size, tgt, self.num_heads, self.head_d...
2023-10-31T15:44:57
nodejs/node
87d682b69a2ed1d6b74215ee8fbf9af9d6674ee9
748b2a87ca4effb39186d89f7e16a145a4bf9365
child_process: emit IPC messages on next tick This commit fixes a regression related to IPC 'message' events. When messages are not emitted in the next tick, a 'message' handler that throws can break the IPC read loop. Refs: https://github.com/nodejs/node/pull/6909 Refs: https://github.com/nodejs/node/pull/13459 Refs...
[ { "path": "lib/internal/child_process.js", "patch": "@@ -457,7 +457,6 @@ function setupChannel(target, channel) {\n }\n chunks[0] = jsonBuffer + chunks[0];\n \n- var nextTick = false;\n for (var i = 0; i < numCompleteChunks; i++) {\n var message = JSON.parse(chunks[i]);\n \n@@...
2017-06-21T18:40:50
vuejs/vue
606666d5a9008ab72f7cce9803b26310c636eef8
1f9e924971d7894517075f7f0efeeb85994a7ba0
test: fix Object.prototype.watch related warnings
[ { "path": "src/core/instance/state.js", "patch": "@@ -20,6 +20,7 @@ import {\n hasOwn,\n isReserved,\n handleError,\n+ nativeWatch,\n validateProp,\n isPlainObject,\n isReservedAttribute\n@@ -53,7 +54,9 @@ export function initState (vm: Component) {\n observe(vm._data = {}, true /* asRootDa...
2017-07-12T07:50:09
ggml-org/llama.cpp
bdca38376f7e8dd928defe01ce6a16218a64b040
55c509daf51d25bfaee9c8b8ce6abff103d4473b
sycl: Hotfix for non dnnl codepath (#14677)
[ { "path": "ggml/src/ggml-sycl/ggml-sycl.cpp", "patch": "@@ -2875,12 +2875,20 @@ static void ggml_sycl_mul_mat_batched_sycl(ggml_backend_sycl_context & ctx, cons\n }\n \n }\n+#if GGML_SYCL_DNNL\n+ // oneDNN handles strided data and does not need overhead of get_to_fp16_nc_sycl\n ...
2025-07-14T17:12:42
golang/go
70dc28f766194a2b3b050b9c8fab83523164bfbb
e8ecda8a38a1705d2ead985743f287acad34b542
math/cmplx: implement Payne-Hanek range reduction Tan has poles along the real axis. In order to accurately calculate the value near these poles, a range reduction by Pi is performed and the result calculated via a Taylor series. The prior implementation of range reduction used Cody-Waite range reduction in three par...
[ { "path": "src/go/build/deps_test.go", "patch": "@@ -65,7 +65,7 @@ var pkgDeps = map[string][]string{\n \t// but not Unicode tables.\n \t\"math\": {\"internal/cpu\", \"unsafe\", \"math/bits\"},\n \t\"math/bits\": {\"unsafe\"},\n-\t\"math/cmplx\": {\"math\"},\n+\t\"math/cmplx\": {\"math\",...
2019-04-12T04:54:18
huggingface/transformers
4bb50aa212032bda01ed8a60d7b11307ef8265a5
05f2290114def72a3e20643fd4359c4c2d3abafe
[`Quantization` / `tests` ] Fix bnb MPT test (#27178) fix bnb mpt test
[ { "path": "tests/quantization/bnb/test_mixed_int8.py", "patch": "@@ -124,7 +124,6 @@ def tearDown(self):\n gc.collect()\n torch.cuda.empty_cache()\n \n- @unittest.skip(\"Un-skip once https://github.com/mosaicml/llm-foundry/issues/703 is resolved\")\n def test_get_keys_to_not_convert_t...
2023-10-31T15:25:53
vuejs/vue
0a9aab510bcca85c78ef06487b5dcf25d76d780d
fed602b90be89a43b4ec41b5a2e0a526d3a5f4a2
fix(v-model): fix input change check for type="number" The change should only apply to the .number modifier, not type="number". fix #6069
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -158,7 +158,7 @@ function genDefaultModel (\n \n addProp(el, 'value', `(${value})`)\n addHandler(el, event, code, null, true)\n- if (trim || number || type === 'number') {\n+ if (trim || number) {\n addHandler(el, 'blur', '$f...
2017-07-11T05:04:55
nodejs/node
748b2a87ca4effb39186d89f7e16a145a4bf9365
befede64f14858ffea4e8d6f93700be07e0f85fc
build: clean up config_fips.gypi Currently when configuring the project using --openssl-fips a gyp include file name config_fips.gypi will be created. If the project is later configured but without the --openssl-fips flag an error will occur. For example: $ ./configure --openssl-fips=bogus $ ./configure && make -...
[ { "path": "configure", "patch": "@@ -984,7 +984,10 @@ def configure_openssl(o):\n ]\n else:\n o['variables']['openssl_fips'] = ''\n-\n+ try:\n+ os.remove('config_fips.gypi')\n+ except OSError:\n+ pass\n \n if options.without_ssl:\n def without_ssl_error(option):", "additi...
2017-06-21T08:20:56
ggml-org/llama.cpp
494c5899cb76859f32ddd913534f2685fd684a3d
0f4c6ec0f1a9607ba67071f8a02c69b0afc2f91e
scripts: benchmark for HTTP server throughput (#14668) * scripts: benchmark for HTTP server throughput * fix server connection reset
[ { "path": "requirements/requirements-all.txt", "patch": "@@ -3,6 +3,7 @@\n -r ../tools/server/tests/requirements.txt\n \n -r ./requirements-compare-llama-bench.txt\n+-r ./requirements-server-bench.txt\n -r ./requirements-pydantic.txt\n -r ./requirements-test-tokenizer-random.txt\n ", "additions": 1, ...
2025-07-14T11:14:30
golang/go
e8ecda8a38a1705d2ead985743f287acad34b542
b851e51160bc8ed412e229152b430b75e7ce56f9
context: deflake time-sensitive tests Many of tests in this package assumed reasonable scheduling latency. Unfortunately, scheduling latency on builders and CI systems is not always reasonable. Rather than expecting that a timeout is detected within a fixed short interval, we can use (*testing.T).Deadline to portably...
[ { "path": "src/context/context_test.go", "patch": "@@ -15,6 +15,7 @@ import (\n )\n \n type testingT interface {\n+\tDeadline() (time.Time, bool)\n \tError(args ...interface{})\n \tErrorf(format string, args ...interface{})\n \tFail()\n@@ -39,6 +40,23 @@ type otherContext struct {\n \tContext\n }\n \n+const...
2020-03-11T19:14:38
rust-lang/rust
578ae16c93268d280d0aca36a3642fa6aade72fa
1ba7a38e4f95cd7d8666719140650ce551bd1753
Add a FIXME for feature(adt_const_params)
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/consteval.rs", "patch": "@@ -124,6 +124,7 @@ pub(crate) fn path_to_const<'g>(\n ConstScalar::UnevaluatedConst(c.into(), Substitution::empty(Interner)),\n expected_ty,\n )),\n+ // FIXME: With feature(adt_const_params)...
2025-02-04T19:28:19
vuejs/vue
4d680794a5a345078827a3fee3db8658bd35ec3a
a1d1145c9123f7175f3ac20b503cfa507ad455f4
fix(parser): the first newline following pre and textarea tag should be ignored (#6022) fix #6022
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -59,6 +59,10 @@ const decodingMap = {\n const encodedAttr = /&(?:lt|gt|quot|amp);/g\n const encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10);/g\n \n+// #5992\n+const isIgnoreNewlineTag = makeMap('pre,textarea', true)\n+const shouldIgnoreFirstNew...
2017-07-10T13:42:00
huggingface/transformers
05f2290114def72a3e20643fd4359c4c2d3abafe
309a90664f8d05c1203ec8925e8c37e715ebdc23
Backward compatibility fix for the Conversation class (#27176) * Backward compatibility fix for the Conversation class * Explain what's going on in the conditional
[ { "path": "src/transformers/pipelines/conversational.py", "patch": "@@ -54,6 +54,7 @@ def __init__(\n \n # This block deals with the legacy args - new code should just totally\n # avoid past_user_inputs and generated_responses\n+ self._num_processed_user_inputs = 0\n generated...
2023-10-31T15:12:06
nodejs/node
3b0e800f18133674ae30b4c6cd5729c12fa054ff
0ba74dbcc6cdbfe7fcb6b3bb1b93dbcfd8dd5451
util: make util.debuglog() consistent with doc Previous realization produces some false positive and false negative results due to: * conflicts between unescaped user input and RegExp special characters; * conflicts between parsing with `\b` RegExp symbol and non alphanumeric characters in section names. The doc ...
[ { "path": "lib/util.js", "patch": "@@ -147,11 +147,13 @@ exports.deprecate = internalUtil.deprecate;\n var debugs = {};\n var debugEnviron;\n exports.debuglog = function(set) {\n- if (debugEnviron === undefined)\n- debugEnviron = process.env.NODE_DEBUG || '';\n+ if (debugEnviron === undefined) {\n+ ...
2017-06-21T13:37:42
ggml-org/llama.cpp
982e347255723fe6d02e60ee30cfdd0559c884c5
923e3ea2e3c96a0b4c208f53bc3bc90cdcdf13c0
quantize : fix minor logic flaw in --tensor-type (#14572)
[ { "path": "src/llama-quant.cpp", "patch": "@@ -884,8 +884,7 @@ static void llama_model_quantize_impl(const std::string & fname_inp, const std::\n if (std::regex pattern(tname); std::regex_search(tensor_name, pattern)) {\n if (qtype != new_type) {\n ...
2025-07-13T16:02:17
rust-lang/rust
009feeb83e8e1c9637467e87207e9322cca307d4
7b31983d5506e975801963b88b36c504eb2cecd8
Fix rustc_hidden_type_of_opaques for RPITITs with no default body
[ { "path": "compiler/rustc_hir_analysis/src/collect/dump.rs", "patch": "@@ -11,6 +11,15 @@ pub(crate) fn opaque_hidden_types(tcx: TyCtxt<'_>) {\n }\n \n for id in tcx.hir_crate_items(()).opaques() {\n+ if let hir::OpaqueTyOrigin::FnReturn { parent: fn_def_id, .. }\n+ | hir::OpaqueTyOrig...
2025-02-04T17:53:24
golang/go
b851e51160bc8ed412e229152b430b75e7ce56f9
dcc5c249260526aa1b1534aa9f7f33228fcd25d7
runtime: don't crash on mlock failure Instead, note that mlock has failed, start trying the mitigation of touching the signal stack before sending a preemption signal, and, if the program crashes, mention the possible problem and a wiki page describing the issue (https://golang.org/wiki/LinuxKernelSignalVectorBug). T...
[ { "path": "src/runtime/os_linux.go", "patch": "@@ -5,6 +5,7 @@\n package runtime\n \n import (\n+\t\"runtime/internal/atomic\"\n \t\"runtime/internal/sys\"\n \t\"unsafe\"\n )\n@@ -479,7 +480,21 @@ func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32\n func getpid() int\n func tgkill(tgid...
2020-03-12T04:51:09
vuejs/vue
a1d1145c9123f7175f3ac20b503cfa507ad455f4
8d66691ee264969447390822971b8caa029cac3e
fix(v-model): should generate component-specific code for tags with "is" attribute fix #6066
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -483,7 +483,9 @@ function processAttrs (el) {\n )\n }\n }\n- if (isProp || platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n+ if (!el.component && (\n+ isProp || platformMustUseProp(el.tag, el....
2017-07-10T13:34:40
huggingface/transformers
309a90664f8d05c1203ec8925e8c37e715ebdc23
f53041a753ed3bc4fbc6eed0eb84b68a13475127
[FEAT] Add Neftune into transformers Trainer (#27141) * add v1 neftune * use `unwrap_model` instead * add test + docs * Apply suggestions from code review Co-authored-by: Zach Mueller <muellerzr@gmail.com> * more details * fixup * Update docs/source/en/main_classes/trainer.md Co-authored-by: am...
[ { "path": "docs/source/en/main_classes/trainer.md", "patch": "@@ -740,3 +740,27 @@ Sections that were moved:\n | <a href=\"./deepspeed#deepspeed-grad-clip\">Gradient Clipping</a><a id=\"gradient-clipping\"></a>\n | <a href=\"./deepspeed#deepspeed-weight-extraction\">Getting The Model Weights Out</a><a id=\"...
2023-10-31T15:03:59
nodejs/node
0ba74dbcc6cdbfe7fcb6b3bb1b93dbcfd8dd5451
25b4d875ed28939a400f1fa33007bf6e77ef977b
deps: backport c0f1ff2 from upstream V8 Original commit message: Fix GCC 7 build errors BUG=chromium:691681 R=franzih@chromium.org Change-Id: Id7e5698487f16dc217a804f6d3f24da7213c72b9 Reviewed-on: https://chromium-review.googlesource.com/530227 Commit-Queue: Toon Verwaest <verwaest@chromium....
[ { "path": "deps/v8/BUILD.gn", "patch": "@@ -1717,6 +1717,7 @@ v8_source_set(\"v8_base\") {\n \"src/objects/dictionary.h\",\n \"src/objects/frame-array-inl.h\",\n \"src/objects/frame-array.h\",\n+ \"src/objects/hash-table-inl.h\",\n \"src/objects/hash-table.h\",\n \"src/objects/literal...
2017-06-20T15:06:59
ggml-org/llama.cpp
67eade1bf93f40e7c4975e5bd0782f426c89cff4
7de5c7cab61d4da4387ed9b216f88b96297bcc2d
docs : add LFM2 to models section (#14650) * readme : add LFM2 to models section * fix copy paste...
[ { "path": "README.md", "patch": "@@ -133,6 +133,7 @@ Instructions for adding support for new models: [HOWTO-add-model.md](docs/develo\n - [x] [GigaChat-20B-A3B](https://huggingface.co/ai-sage/GigaChat-20B-A3B-instruct)\n - [X] [Trillion-7B-preview](https://huggingface.co/trillionlabs/Trillion-7B-preview)\n ...
2025-07-12T17:07:08
vuejs/vue
8d66691ee264969447390822971b8caa029cac3e
5dbca4e3c4641a652163aac8b5c9d4e214ca2597
fix(core): should preserve reactivity-ness of injected objects fix #5913
[ { "path": "src/core/instance/inject.js", "patch": "@@ -3,7 +3,7 @@\n import { warn } from '../util/index'\n import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n-import { defineReactive } from '../observer/index'\n+import { defineReactive, observerState } from '../observer/index...
2017-07-10T13:12:43
golang/go
e2a9ea035d73df84c813132417366e8e01777c8d
cbcb031fe8b26be9d40c5fbb0c1934b0afdcf422
cmd/go/internal/modload: suppress the 'go mod init' hint for GOROOT more aggressively Previously, we suppressed a `to create a module there, run: … go mod init' warning only if the config file itself (such as .git/config) was found in GOROOT. However, our release tarballs don't include the .git/config, so that case wa...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -624,13 +624,14 @@ func findAltConfig(dir string) (root, name string) {\n \t\tpanic(\"dir not set\")\n \t}\n \tdir = filepath.Clean(dir)\n+\tif rel := search.InDir(dir, cfg.BuildContext.GOROOT); rel != \"\" {\n+\t\t// Don't suggest creating a mod...
2020-03-13T16:51:09
huggingface/transformers
08fadc8085610f7616a993dee8109a1bdc222d58
a8e74ebdc5e63175b722880f8e4555dad5935a1c
Shorten the conversation tests for speed + fixing position overflows (#26960) * Shorten the conversation tests for speed + fixing position overflows * Put max_new_tokens back to 5 * Remove test skips * Increase max_position_embeddings in blenderbot tests * Add skips for blenderbot_small * Correct TF tes...
[ { "path": "tests/models/blenderbot/test_modeling_blenderbot.py", "patch": "@@ -85,7 +85,7 @@ def __init__(\n hidden_act=\"gelu\",\n hidden_dropout_prob=0.1,\n attention_probs_dropout_prob=0.1,\n- max_position_embeddings=20,\n+ max_position_embeddings=50,\n eos_t...
2023-10-31T14:20:04
nodejs/node
25b4d875ed28939a400f1fa33007bf6e77ef977b
ea36609fc91c60f722036ad4de420e249dcd87a5
tools: fix error in custom ESLint rule Fix previously-unnoticed typo in `required-modules.js`. Refs: https://github.com/nodejs/node/pull/13758#discussion_r122582786 PR-URL: https://github.com/nodejs/node/pull/13758 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Rev...
[ { "path": "tools/eslint-rules/required-modules.js", "patch": "@@ -75,7 +75,7 @@ module.exports = function(context) {\n if (foundModules.length < requiredModules.length) {\n var missingModules = requiredModules.filter(\n function(module) {\n- return foundModules.indexOf(mod...
2017-06-19T18:13:30
ggml-org/llama.cpp
0c1df14b5f8d992805cb22d0b77b44092a18aeab
b3ad3a0191994d6c47b2bd389d5c7431526ecd2c
server : fix pooled embedding output (#14645)
[ { "path": "tools/server/server.cpp", "patch": "@@ -2581,25 +2581,27 @@ struct server_context {\n continue;\n }\n \n- const float * embd = llama_get_embeddings_seq(ctx, batch.seq_id[i][0]);\n- if (embd == NULL) {\n+ const float * embd = nullptr;\n+...
2025-07-12T10:21:02
vuejs/vue
0d6ad12a4805473579440d0f817641760c364dcf
306997eaf4ff36f4757c753c8a00ce3851e29cca
refactor(weex): sync recent changes of Weex (#6028) * compile bundle on native side if 'compileBundle()' is available on native side. * refactor sendTasks * reset renderer.compileBundle * v2.2.2-weex.1 * v2.2.2-weex.2 && fixed memory leak * call C++ timer instead of WxTimerModule in weex-vue-framwork ...
[ { "path": "src/platforms/weex/entry-framework.js", "patch": "@@ -22,7 +22,7 @@ export function init (cfg) {\n renderer.Document = cfg.Document\n renderer.Element = cfg.Element\n renderer.Comment = cfg.Comment\n- renderer.sendTasks = cfg.sendTasks\n+ renderer.compileBundle = cfg.compileBundle\n }\n \...
2017-07-07T03:42:47
huggingface/transformers
a8e74ebdc5e63175b722880f8e4555dad5935a1c
2963e196ee1fb9ab2c677221ca5e135568604662
Trigger CI if `tiny_model_summary.json` is modified (#27175) fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
[ { "path": "utils/tests_fetcher.py", "patch": "@@ -949,6 +949,10 @@ def infer_tests_to_run(\n if \"setup.py\" in modified_files:\n test_files_to_run = [\"tests\", \"examples\"]\n repo_utils_launch = True\n+ # in order to trigger pipeline tests even if no code change at all\n+ elif \...
2023-10-31T13:49:02
golang/go
0e06775eebf6d357f604a55c803aab5cc8054e67
440852c464a38036c9898dcdf22d57851a58331f
[dev.link] cmd/link: don't truncate external relocation type In CL 222244, we store external relocations in the same format as Go object files. In Go object file format, the relocation type is a uint8. However, for external relocations the type may not always fit in a uint8. Truncating it will result in a bad relocati...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -55,9 +55,16 @@ type Reloc2 struct {\n \t*goobj2.Reloc2\n \tr *oReader\n \tl *Loader\n+\n+\t// External reloc types may not fit into a uint8 which the Go object file uses.\n+\t// Store it here, instead of in the byte of goobj2.Reloc2.\n+\t// F...
2020-03-13T15:43:35
nodejs/node
491f838511a8c7b848fb0affcc3661ee45edbdc5
4885982ee270429e1d54602d6abb7ee1b174cb1b
tools: fix indentation in required-modules.js In preparation for applying the more strict indentation linting available in ESLint 4.0.0, correct minor indentation issues in tools/eslint-rules/required-modules.js. This is the only file with indentation that does not conform to the stricter checks. PR-URL: https://git...
[ { "path": "tools/eslint-rules/required-modules.js", "patch": "@@ -77,13 +77,13 @@ module.exports = function(context) {\n function(module) {\n return foundModules.indexOf(module === -1);\n }\n- );\n+ );\n missingModules.forEach(function(moduleName) {\n ...
2017-06-18T05:35:39
vuejs/vue
306997eaf4ff36f4757c753c8a00ce3851e29cca
254d85cfc42d58bf9e3d0626ba959379bdc32d6f
fix(core): add merge strategy for provide option (#6025) Fix #6008
[ { "path": "src/core/util/options.js", "patch": "@@ -63,7 +63,7 @@ function mergeData (to: Object, from: ?Object): Object {\n /**\n * Data\n */\n-strats.data = function (\n+export function mergeDataOrFn (\n parentVal: any,\n childVal: any,\n vm?: Component\n@@ -73,15 +73,6 @@ strats.data = function (...
2017-07-07T03:39:25
ggml-org/llama.cpp
0aedae00e6fb48680324a5ac5da9cba0e35de6b5
6bdda13981d6c8189b7dc4f9fb8ecb91c21529f8
model : Granite Four (#13550) * wip: llama : separate recurrent states from the KV cache This will be necessary to support Jamba (and other recurrent models mixed with Attention). Doesn't compile yet, and finding a slot isn't yet done correctly for recurrent states. * llama : use std::find for seq_nodes in llama_rs...
[ { "path": "convert_hf_to_gguf.py", "patch": "@@ -4890,6 +4890,9 @@ def __init__(self, dir_model: Path, *args, **kwargs):\n with open(dir_model / \"config.json\", \"r\", encoding=\"utf-8\") as f:\n hparams = json.load(f)\n super().__init__(dir_model, *args, hparams=hparams...
2025-07-11T00:20:13
huggingface/transformers
3cd3eaf96048cb76e67a432e72a7cecbdd1630a8
b5db8ca66fad3a39ea80d3e5609686d0933bde87
fix: Fix typical_p behaviour broken in recent change (#27165) A recent PR https://github.com/huggingface/transformers/pull/26579 fixed an edge case out-of-bounds tensor indexing error in TypicalLogitsWarper, and a related behaviour change was made that we thought fixed a long-standing bug w.r.t. the token inclusion cu...
[ { "path": "src/transformers/generation/logits_process.py", "patch": "@@ -492,8 +492,8 @@ def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor) -> to\n cumulative_probs = sorted_logits.softmax(dim=-1).cumsum(dim=-1)\n \n # Remove tokens with cumulative mass above the thre...
2023-10-31T13:09:56
golang/go
c3b9042132efc4e9f3485cd12b07acd1ca9c7d57
c6bcdeafd2a2f11373dec9a82fccc75d332cd0cc
cmd/cover: skip function declarations with blank names Function declarations with blank ("_") names do not introduce a binding, and therefore cannot be referenced or executed (in fact, they do not make it into the final compiled binary at all). As such, counters defined while annotating their bodies will always be zer...
[ { "path": "src/cmd/cover/cover.go", "patch": "@@ -293,6 +293,11 @@ func (f *File) Visit(node ast.Node) ast.Visitor {\n \t\t\tast.Walk(f, n.Assign)\n \t\t\treturn nil\n \t\t}\n+\tcase *ast.FuncDecl:\n+\t\t// Don't annotate functions with blank names - they cannot be executed.\n+\t\tif n.Name.Name == \"_\" {\...
2020-03-12T00:02:50
vuejs/vue
254d85cfc42d58bf9e3d0626ba959379bdc32d6f
d8d4ca6763af55e1715bbc1e0fadd10e5be41db3
fix(ref): refactor function registerRef (#6039) fix #5997
[ { "path": ".flowconfig", "patch": "@@ -20,3 +20,4 @@ module.name_mapper='^weex/\\(.*\\)$' -> '<PROJECT_ROOT>/src/platforms/weex/\\1'\n module.name_mapper='^server/\\(.*\\)$' -> '<PROJECT_ROOT>/src/server/\\1'\n module.name_mapper='^entries/\\(.*\\)$' -> '<PROJECT_ROOT>/src/entries/\\1'\n module.name_mapper=...
2017-07-07T03:37:19
ggml-org/llama.cpp
6bdda13981d6c8189b7dc4f9fb8ecb91c21529f8
0b8855775c6b873931d40b77a5e42558aacbde52
opencl: add tiled mul_mat_f16_f32 (#14535) * add tiled mul_mat_f16_f32 * fix trailing whitespace * add insightful comments
[ { "path": "ggml/src/ggml-opencl/CMakeLists.txt", "patch": "@@ -104,6 +104,7 @@ set(GGML_OPENCL_KERNELS\n tanh\n pad\n repeat\n+ mul_mat_f16_f32\n )\n \n foreach (K ${GGML_OPENCL_KERNELS})", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "ggml/src/ggm...
2025-07-10T21:58:12
nodejs/node
b4432888f5f1beb6d6edfa47b27a25cc5bf06f3d
c02dcc7b5983b2925016194002b9bc9a1e9da6c4
stream: finish must always follow error When _write completes with an Error, 'finish' was emitted before 'error' if the callback was asynchronous. This commit restore the previous behavior. The logic is still less then ideal, because we call the write() callback before emitting error if asynchronous, but after if sync...
[ { "path": "lib/_stream_writable.js", "patch": "@@ -374,18 +374,26 @@ function doWrite(stream, state, writev, len, chunk, encoding, cb) {\n \n function onwriteError(stream, state, sync, er, cb) {\n --state.pendingcb;\n- if (sync)\n- process.nextTick(afterError, stream, state, cb, er);\n- else\n- af...
2017-06-21T18:04:12
huggingface/transformers
b5db8ca66fad3a39ea80d3e5609686d0933bde87
9dc4ce9ea73dd46c4f63a3182a8cbd1cef1b886f
Add flash attention for `gpt_bigcode` (#26479) * added flash attention of gpt_bigcode * changed docs * Update src/transformers/models/gpt_bigcode/modeling_gpt_bigcode.py * add FA-2 docs * oops * Update docs/source/en/perf_infer_gpu_one.md Last Nit Co-authored-by: Arthur <48595927+ArthurZucker@users.n...
[ { "path": "docs/source/en/model_doc/gpt_bigcode.md", "patch": "@@ -42,6 +42,45 @@ The main differences compared to GPT2.\n \n You can read more about the optimizations in the [original pull request](https://github.com/huggingface/transformers/pull/22575)\n \n+## Combining Starcoder and Flash Attention 2\n+\...
2023-10-31T11:21:02
golang/go
9d67a94217c0a46a2b02a1fc67bb3e436dac0c97
85e87f9d81c00d38a196c40f3a93477bc4b3294f
cmd/internal/obj/ppc64: clean up some opcodes This does some clean up of the ppc64 opcodes to remove names from the opcode list that don't actually assemble. At one time names were added to this list to represent opcode "classes" to organize other opcodes that have the same set of operand combinations. Since this is n...
[ { "path": "src/cmd/asm/internal/asm/testdata/ppc64.s", "patch": "@@ -1064,7 +1064,7 @@ label1:\n //\tVSX AND, XX3-form\n //\t<MNEMONIC> XA,XB,XT produces\n //\t<mnemonic> XT,XA,XB\n-\tXXLANDQ\t VS0,VS1,VS32\n+\tXXLAND\t VS0,VS1,VS32\n \tXXLANDC\t VS0,VS1,VS32\n \tXXLEQV\t VS0,VS1,VS32\n \tXXLNAN...
2020-03-10T14:08:02