This file contains 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
#!/usr/bin/python | |
# Software License Agreement (BSD License) | |
# | |
# Copyright (c) 2013, Juergen Sturm, TUM | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions | |
# are met: | |
# |
This file contains 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 nvidia/cuda:11.8.0-devel-ubuntu22.04 | |
# Remove any third-party apt sources to avoid issues with expiring keys. | |
RUN rm -f /etc/apt/sources.list.d/*.list | |
# Install some basic utilities. | |
RUN apt-get update && apt-get install -y \ | |
curl \ | |
ca-certificates \ | |
sudo \ |
This file contains 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
payload: | |
- '136.22.64.0/24' | |
- '136.22.65.0/24' | |
- '136.22.67.0/24' | |
- '136.22.76.0/24' | |
- '136.22.83.0/24' | |
- '136.22.85.0/24' | |
- '136.22.86.0/24' | |
- '136.22.87.0/24' | |
- '136.22.92.0/24' |
This file contains 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 nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04 | |
# For the convenience for users in China mainland | |
# COPY apt-sources.list /etc/apt/sources.list | |
# Install some basic utilities | |
RUN apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y tzdata && apt-get install -y\ | |
curl \ | |
ca-certificates \ |
This file contains 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
[build-system] | |
requires = ["setuptools >= 61.0"] | |
build-backend = "setuptools.build_meta" | |
[project] | |
version = "0.0.1-dev" | |
name = "simple_gaussian" | |
requires-python = ">=3.10" |