mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
prep 0.0.1 release
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
# InvokeAI-MGPU - Experimental version of Invoke supporting rendering on multiple GPUs
|
||||
|
||||
This is a fork of the wonderful [InvokeAI Text-to-Image
|
||||
Generator](https://github.com/invoke-ai/InvokeAI) that has been
|
||||
modified to allow simultaneous rendering of images on systems with
|
||||
multiple CUDA GPUs. This support is very experimental and should not be
|
||||
used in production. Please click on the **Releases** button link on the
|
||||
right sidebar for the installer.
|
||||
|
||||
<div align="center">
|
||||
|
||||

|
||||
|
||||
@@ -96,6 +96,8 @@ for f in templates *.txt *.reg; do
|
||||
done
|
||||
mkdir InvokeAI-Installer/lib
|
||||
cp lib/*.py InvokeAI-Installer/lib
|
||||
mkdir InvokeAI-Installer/dist
|
||||
cp dist/*.whl InvokeAI-Installer/dist
|
||||
|
||||
# Install scripts
|
||||
# Mac/Linux
|
||||
|
||||
@@ -137,7 +137,6 @@ class Installer:
|
||||
import messages
|
||||
|
||||
if wheel:
|
||||
messages.installing_from_wheel(wheel.name)
|
||||
version = get_version_from_wheel_filename(wheel.name)
|
||||
else:
|
||||
messages.welcome(self.available_releases)
|
||||
|
||||
@@ -8,7 +8,15 @@ from pathlib import Path
|
||||
|
||||
from installer import Installer
|
||||
|
||||
def find_wheel() -> Path:
|
||||
dist = Path('./dist')
|
||||
wheel = next(dist.glob('*.whl'))
|
||||
assert wheel is not None
|
||||
return wheel
|
||||
|
||||
if __name__ == "__main__":
|
||||
wheel = find_wheel()
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
|
||||
parser.add_argument(
|
||||
@@ -42,7 +50,7 @@ if __name__ == "__main__":
|
||||
dest="wheel",
|
||||
help="Specifies a wheel for the InvokeAI package. Used for troubleshooting or testing prereleases.",
|
||||
type=Path,
|
||||
default=None,
|
||||
default=wheel
|
||||
)
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "4.2.4-mgpu"
|
||||
__version__ = "0.0.1"
|
||||
|
||||
Reference in New Issue
Block a user