Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[just testing] Move off of nightly releases #492

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/nightly_build.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
name: Build/Push Nightly Binary

on:
schedule:
# * is a special character in YAML so you have to quote this string
# Runs at midnight every day
- cron: '0 0 * * *'
# manual trigger
workflow_dispatch:
pull_request:

defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ The following assumes conda is installed.

```
# Use the current CUDA version as seen [here](https://pytorch.org/get-started/locally/)
# Select the nightly Pytorch build, Linux as the OS, and conda. Pick the most recent CUDA version.
conda install pytorch torchvision torchtext torchaudio pytorch-cuda=\<cuda_version\> -c pytorch-nightly -c nvidia
# Select the stable Pytorch build, Linux as the OS, and conda. Pick the most recent CUDA version.
conda install pytorch torchvision torchtext torchaudio pytorch-cuda=\<cuda_version\> -c pytorch -c nvidia

# For CPU-only install
conda install pytorch torchvision torchtext torchaudio cpuonly -c pytorch-nightly
conda install pytorch torchvision torchtext torchaudio cpuonly -c pytorch
```

### Install from binaries
Expand Down
5 changes: 5 additions & 0 deletions torchmultimodal/models/video_gpt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
Loading