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
#include <inttypes.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
#if (defined(__unix__) || defined(unix)) && !defined(USG) | |
#include <sys/param.h> | |
#endif | |
#ifdef __APPLE__ | |
#include <sys/types.h> |
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
# stripcolors.pm | |
use strict; | |
use warnings; | |
use feature qw/switch/; | |
use ZNC; | |
package stripcolors; | |
use base 'ZNC::Module'; |
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
FROM nvcr.io/nvidia/l4t-pytorch:r35.2.1-pth2.0-py3 as builder | |
ENV TORCH_CUDA_ARCH_LIST Turing | |
RUN apt-get update && \ | |
apt-get install -y python3 python3-pip git build-essential python3-dev | |
RUN pip3 install --upgrade pip setuptools | |
RUN git clone https://github.com/g588928812/bitsandbytes_jetsonX.git /build | |
WORKDIR /build | |
RUN CUDA_VERSION=114 make cuda11x | |
RUN mkdir /wheels |