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
import torch | |
import warnings | |
class BiCGSTAB(): | |
""" | |
This is a pytorch implementation of BiCGSTAB or BCGSTAB, a stable version | |
of the CGD method, published first by Van Der Vrost. | |
For solving ``Ax = b`` system. |
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/sh | |
# /etc/init.d/autossh | |
TUNNEL_MONITOR=53389 | |
TUNNEL_USER="bae" | |
TUNNEL_HOST="bae.ofr.me" | |
TUNNEL_PORT=30383 | |
TUNNEL_KEY="/home/oxyflour/.ssh/bae.id_rsa" | |
TUNNEL_ARGS="-D 0.0.0.0:3129 -L 0.0.0.0:13128:127.0.0.1:3128 -L 0.0.0.0:10022:vlr.ofr.me:22" |