Skip to content

Instantly share code, notes, and snippets.

[12,484 / 13,096] Compiling stablehlo/dialect/StablehloOps.cpp; 32s local ... (4 actions running)
ERROR: /build/output/external/xla/xla/service/gpu/model/BUILD:316:11: Compiling xla/service/gpu/model/indexing_analysis.cc failed: (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command (from target @xla//xla/service/gpu/model:indexing_analysis) external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc -MD -MF bazel-out/k8-opt/bin/external/xla/xla/service/gpu/model/_objs/indexing_analysis/indexing_analysis.pic.d ... (remaining 335 arguments skipped)
/build/output/execroot/__main__/external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc:44: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13
import pipes
In file included from external/xla/xla/hlo/ir/hlo_computation.h:31,
from external/xla/xla/hlo/ir/hlo_instructions.h:35,
from external/xla/xla/service/gpu/model/indexing_analysi
use std::collections::HashMap;
use std::sync::Arc;
use async_trait::async_trait;
use pty_process::OwnedWritePty;
use russh::server::{Auth, Msg, Session};
use russh::*;
use russh_keys::*;
use tokio::io::{AsyncReadExt, AsyncWriteExt};
use tokio::sync::Mutex;
use async_trait::async_trait;
use core::panic;
use russh::server::{Msg, Session};
use russh::{Channel, ChannelId, ChannelStream, CryptoVec, Sig};
use std::collections::HashMap;
use std::io::Read;
use std::net::SocketAddr;
use std::sync::Arc;
use tokio::io::AsyncReadExt;
use tokio::sync::Mutex;
use async_trait::async_trait;
use russh::server::{Msg, Session};
use russh::*;
use russh_keys::*;
use std::net::SocketAddr;
use std::process::Stdio;
use std::sync::Arc;
use tokio::io::AsyncReadExt;
use tokio::io::BufReader;
use tokio::process::Command;
@samuela
samuela / sshd_config
Created November 22, 2023 11:36
AuthorizedKeysCommand bug
Ciphers [email protected],[email protected],[email protected],aes256-ctr,aes192-ctr,aes128-ctr
GatewayPorts no
KbdInteractiveAuthentication yes
KexAlgorithms [email protected],curve25519-sha256,[email protected],diffie-hellman-group-exchange-sha256
LogLevel DEBUG
Macs [email protected],[email protected],[email protected]
PasswordAuthentication no
PermitRootLogin no
UseDns no
X11Forwarding no
let
# Last updated: 2023-09-29. Check for new commits at https://status.nixos.org.
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/archive/f3dab3509afca932f3f4fd0908957709bb1c1f57.tar.gz";
stage0 = import nixpkgs {};
nixpkgs-patched = stage0.applyPatches {
name = "nixpkgs-patched";
src = nixpkgs;
patches = [
# https://github.com/NixOS/nixpkgs/pull/258084
{ lib
, stdenv
, buildPythonPackage
, cmake
, fetchFromGitHub
, gtest
, nbval
, numpy
, parameterized
, protobuf
{
outputs = { nixpkgs, ... }:
{ devShell.aarch64-darwin = nixpkgs.legacyPackages.aarch64-darwin.mkShell { }; };
}
{
inputs = { flake-utils.url = "github:numtide/flake-utils"; };
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
{
devShell = nixpkgs.legacyPackages."${system}".mkShell { };
});
}
=================================== FAILURES ===================================
___ LaxControlFlowTest.testScanGrad_jit_scan=False_jit_f=False_impl=unroll2 ____
[gw3] darwin -- Python 3.10.10 /nix/store/7rjqb838snvvxcmpvck1smfxhkwzqal5-python3-3.10.10/bin/python3.10
self = <lax_control_flow_test.LaxControlFlowTest testMethod=testScanGrad_jit_scan=False_jit_f=False_impl=unroll2>
jit_scan = False, jit_f = False
scan = functools.partial(<function scan at 0x1197827a0>, unroll=2)
@parameterized.named_parameters(
{"testcase_name": f"_{jit_scan=}_{jit_f=}_impl={scan_name}",