hidenorly a0096c5897 Add FP32 fallback support on torch.nn.functional.interpolate
This tries to execute interpolate with FP32 if it failed.

Background is that
on some environment such as Mx chip MacOS devices, we get error as follows:

```
"torch/nn/functional.py", line 3931, in interpolate
        return torch._C._nn.upsample_nearest2d(input, output_size, scale_factors)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    RuntimeError: "upsample_nearest2d_channels_last" not implemented for 'Half'
```

In this case, ```--no-half``` doesn't help to solve. Therefore this commits add the FP32 fallback execution to solve it.

Note that the ```upsample_nearest2d``` is called from ```torch.nn.functional.interpolate```.
And the fallback for torch.nn.functional.interpolate is necessary at
```modules/sd_vae_approx.py``` 's ```VAEApprox.forward```
```repositories/stable-diffusion-stability-ai/ldm/modules/diffusionmodules/openaimodel.py``` 's ```Upsample.forward```
2023-11-29 04:45:04 +09:00
..
2023-10-15 09:41:02 +03:00
2023-09-09 09:15:09 +03:00
2023-10-14 12:17:59 +03:00
2023-11-05 11:37:23 +09:00
2023-05-10 11:05:02 +03:00
2023-08-27 08:45:40 +03:00
2023-08-01 08:27:54 +03:00
2023-08-29 00:54:57 -06:00
2023-07-15 09:20:43 +03:00
2023-09-14 18:42:56 +08:00
2023-08-22 18:49:08 +03:00
2023-11-20 01:38:31 +09:00
2023-09-11 09:22:27 +08:00
2023-08-22 18:49:08 +03:00
2023-05-18 10:12:17 +03:00
2023-09-30 08:23:12 +03:00
2023-05-10 11:05:02 +03:00
2023-08-03 18:46:49 +09:00
2023-05-10 08:43:42 +03:00
2023-05-10 08:43:42 +03:00
2023-10-01 12:25:19 +08:00
2023-11-05 19:32:21 +03:00
2023-09-11 21:17:40 +03:00
2023-08-04 13:38:52 +08:00
2023-08-28 03:43:27 +09:00
2023-11-05 19:19:55 +03:00
2023-08-03 23:31:13 +03:00
2023-09-09 15:59:22 +09:00
2023-08-04 08:04:23 +03:00
2023-11-05 19:19:55 +03:00
2023-09-12 09:29:07 +09:00
2023-08-04 08:04:23 +03:00
2023-11-05 19:19:55 +03:00
2023-11-20 01:38:31 +09:00
2023-06-03 22:28:00 +07:00
2023-10-01 12:25:19 +08:00