The model the community calls Qwen3.8-Flash-Next lands in transformers as
model_type = "qwen4_exp", under src/transformers/models/qwen4_exp/, with
@auto_docstring(checkpoint="Qwen/Qwen4-Exp"). It is a VLM
(Qwen4ExpForConditionalGeneration) over a hybrid text stack: linear-attention
layers, MoE, hyper-connections, and Qwen sparse attention (QSA) on the layers
that indexer_n_heads enables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Laguna-S-2.1-NVFP4 on NVIDIA DGX Spark (GB10, sm_121a, arm64) | |
| # 2-node TENSOR-PARALLEL (TP=2) vLLM serving at NATIVE 1M context, one engine | |
| # sharded across two GB10 nodes over ConnectX-7 RoCE, with DFlash speculative | |
| # decoding and the FlashInfer B12X NVFP4 MoE backend. Fronted by an llm-d | |
| # Endpoint Picker (EPP) constrained to rank0. | |
| # | |
| # ───────────────────────────────────────────────────────────────────────────── | |
| # WHY TP=2 (vs 2 independent replicas): | |
| # One vLLM engine tensor-sharded across 2 DGX Spark nodes (1 GPU/node) gives a | |
| # single UNIFIED KV pool and shards the weights (~35 GiB/node vs ~70 GiB on a |
Did the Moral Foundations Theory Group Publish a Post-COVID Retrospective on the Purity Foundation? A Slop Report
- No. The original Moral Foundations Theory (MFT) authors—Jonathan Haidt and Jesse Graham—have not published a formal scholarly retrospective or reassessment of the Purity/Sanctity foundation in light of COVID-19. The closest thing on record is an informal, unpublished remark by Haidt in a 2024 Conversations with Tyler interview, where—asked directly whether COVID changed his view—he argued the pandemic "wasn't about germs" but about government control, so it neither cleanly validated nor revised his purity work.
- The MFT group did publish a major theory revision in this window—Atari, Haidt, Graham et al. (2023), "Morality Beyond the WEIRD," JPSP (the MFQ-2, which splits Fairness into Equality and Proportionality)—but it is a cross-cultural measurement overhaul built on 25 populations, not a COVID/purity retrospective. The Liberty/Oppression foundation was added ea
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| declare -A seenNamespaces | |
| declare -A containerInfo | |
| # Ensure ipcs command is available | |
| ipcsPath=$(which ipcs) | |
| if [ -z "$ipcsPath" ]; then | |
| echo "ipcs command could not be found" | |
| exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| data: ${CNI_RESOURCES} | |
| kind: ConfigMap | |
| metadata: | |
| name: cni-${CLUSTER_NAME}-crs-0 | |
| namespace: default | |
| --- | |
| apiVersion: addons.cluster.x-k8s.io/v1alpha4 | |
| kind: ClusterResourceSet | |
| metadata: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: goldpinger-serviceaccount | |
| namespace: default | |
| --- | |
| apiVersion: apps/v1 | |
| kind: DaemonSet | |
| metadata: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -Naur linux-4.19.138/drivers/net/vmxnet3/vmxnet3_drv.c ../SOURCES/linux-5.8/drivers/net/vmxnet3/vmxnet3_drv.c | |
| --- linux-4.19.138/drivers/net/vmxnet3/vmxnet3_drv.c 2020-09-18 02:49:39.826513351 +0100 | |
| +++ ../SOURCES/linux-5.8/drivers/net/vmxnet3/vmxnet3_drv.c 2020-09-18 02:58:22.467376972 +0100 | |
| @@ -535,8 +535,8 @@ | |
| } | |
| sz = tq->tx_ring.size * sizeof(tq->buf_info[0]); | |
| - tq->buf_info = dma_zalloc_coherent(&adapter->pdev->dev, sz, | |
| - &tq->buf_info_pa, GFP_KERNEL); | |
| + tq->buf_info = dma_alloc_coherent(&adapter->pdev->dev, sz, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: cluster.x-k8s.io/v1alpha3 | |
| kind: Cluster | |
| metadata: | |
| labels: | |
| cluster.x-k8s.io/cluster-name: 'test' | |
| name: 'test' | |
| namespace: 'default' | |
| spec: | |
| clusterNetwork: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: apps/v1 | |
| kind: DaemonSet | |
| metadata: | |
| name: netshoot | |
| labels: | |
| app: netshoot | |
| spec: | |
| updateStrategy: | |
| type: RollingUpdate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright © 2019 VMware Inc. | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
NewerOlder