See also: https://danieldk.eu/Posts/2020-08-31-MKL-Zen.html
Compile this:
int mkl_serv_intel_cpu_true() {
return 1;
}into a shared library: gcc -shared -fPIC -o libfakeintel.so fakeintel.c
See also: https://danieldk.eu/Posts/2020-08-31-MKL-Zen.html
Compile this:
int mkl_serv_intel_cpu_true() {
return 1;
}into a shared library: gcc -shared -fPIC -o libfakeintel.so fakeintel.c
Note
(2025-01-08) Add feature for 🏷️Tag(Revision) Selection, contributed by @Bamboo-D.
(2024-12-17) Add feature for ⚡Quick Startup and ⏭️Fast Resume, enabling skipping of downloaded files, while removing the git clone dependency to accelerate file list retrieval.
Considering the lack of multi-threaded download support in the official huggingface-cli, and the inadequate error handling in hf_transfer, This command-line tool leverages curl and aria2c for fast and robust downloading of models and datasets.
The latest builds of Windows 10 and Windows 11 include a build-in SSH server and client that are based on OpenSSH. This means now you can remotely connect to Windows 10/11 or Windows Server 2019 using any SSH client, like Linux distros. Let's see how to configure OpenSSH on Windows 10 and Windows 11, and connect to it using Putty or any other SSH client.
OpenSSH is an open-source, cross-platform version of Secure Shell (SSH) that is used by Linux users for a long time. This project is currently ported to Windows and can be used as an SSH server on almost any version of Windows. In the latest versions of Windows Server 2022/2019 and Windows 11, OpenSSH is built-in to the operating system image.
| #!/bin/sh | |
| aria2c --dir=./ --input-file=urls.txt --max-concurrent-downloads=1 --connect-timeout=60 --max-connection-per-server=16 --split=16 --min-split-size=1M --human-readable=true --download-result=full --file-allocation=none | |
| date | |
| # Now create this file in the same directory and paste all urls in it: urls.txt | |
| #!/usr/bin/env bash | |
| # called by | |
| # sh extract_bam_tag.sh input.bam BC | |
| # to print read_id and BC tag value | |
| # two arguments, a bam file and the tag to extract | |
| BAM=$1 | |
| TAG=$2 |
We need to generate a unique SSH key for our second GitHub account.
ssh-keygen -t rsa -C "your-email-address"
Be careful that you don't over-write your existing key for your personal account. Instead, when prompted, save the file as id_rsa_COMPANY. In my case, I've saved the file to ~/.ssh/id_rsa_work.