├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── conversion └── shader.py ├── examples ├── react-renderer.tsx └── react-webgpu.tsx ├── images ├── 1a.svg ├── 1b.svg ├── 1c.svg ├── 2.svg ├── intro.gif ├── performance_analysis_720P_diff_graphic_card.svg └── performance_analysis_diff_input_size.svg ├── package.json ├── src ├── index.ts ├── pipelines │ ├── deblur │ │ ├── DoG │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── deblurDoGApply.wgsl │ │ │ │ ├── deblurDoGX.wgsl │ │ │ │ ├── deblurDoGY.wgsl │ │ │ │ └── lumination.wgsl │ │ └── index.ts │ ├── denoise │ │ ├── BilateralMean │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ └── bilateralMean.wgsl │ │ └── index.ts │ ├── helpers │ │ ├── ClampHighlights │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── clamp.wgsl │ │ │ │ ├── luminationX.wgsl │ │ │ │ └── luminationY.wgsl │ │ ├── Conv2d │ │ │ └── index.ts │ │ ├── DepthToSpace │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ └── depthToSpace.wgsl │ │ ├── Downscale │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── fragment.wgsl │ │ │ │ └── vertex.wgsl │ │ ├── Original │ │ │ └── index.ts │ │ ├── Overlay │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── overlay2.wgsl │ │ │ │ └── vertex.wgsl │ │ └── index.ts │ ├── index.ts │ ├── interfaces.ts │ ├── presets │ │ ├── ModeA │ │ │ └── index.ts │ │ ├── ModeAA │ │ │ └── index.ts │ │ ├── ModeB │ │ │ └── index.ts │ │ ├── ModeBB │ │ │ └── index.ts │ │ ├── ModeC │ │ │ └── index.ts │ │ ├── ModeCA │ │ │ └── index.ts │ │ └── index.ts │ ├── restore │ │ ├── CNNM │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── conv2d1tf.wgsl │ │ │ │ ├── conv2d2tf.wgsl │ │ │ │ ├── conv2d3tf.wgsl │ │ │ │ ├── conv2d4tf.wgsl │ │ │ │ ├── conv2d5tf.wgsl │ │ │ │ ├── conv2d6tf.wgsl │ │ │ │ ├── conv2dtf.wgsl │ │ │ │ └── output.wgsl │ │ ├── CNNSoftM │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── conv2d1tf.wgsl │ │ │ │ ├── conv2d2tf.wgsl │ │ │ │ ├── conv2d3tf.wgsl │ │ │ │ ├── conv2d4tf.wgsl │ │ │ │ ├── conv2d5tf.wgsl │ │ │ │ ├── conv2d6tf.wgsl │ │ │ │ ├── conv2dtf.wgsl │ │ │ │ └── output.wgsl │ │ ├── CNNSoftVL │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── conv2d1tf.wgsl │ │ │ │ ├── conv2d1tf1.wgsl │ │ │ │ ├── conv2d2tf.wgsl │ │ │ │ ├── conv2d2tf1.wgsl │ │ │ │ ├── conv2d3tf.wgsl │ │ │ │ ├── conv2d3tf1.wgsl │ │ │ │ ├── conv2d4tf.wgsl │ │ │ │ ├── conv2d4tf1.wgsl │ │ │ │ ├── conv2d5tf.wgsl │ │ │ │ ├── conv2d5tf1.wgsl │ │ │ │ ├── conv2d6tf.wgsl │ │ │ │ ├── conv2d6tf1.wgsl │ │ │ │ ├── conv2d7tf.wgsl │ │ │ │ ├── conv2d7tf1.wgsl │ │ │ │ ├── conv2dtf.wgsl │ │ │ │ ├── conv2dtf1.wgsl │ │ │ │ └── output.wgsl │ │ ├── CNNUL │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── conv2d1tf.wgsl │ │ │ │ ├── conv2d1tf1.wgsl │ │ │ │ ├── conv2d1tf2.wgsl │ │ │ │ ├── conv2d2tf.wgsl │ │ │ │ ├── conv2d2tf1.wgsl │ │ │ │ ├── conv2d2tf2.wgsl │ │ │ │ ├── conv2d3tf.wgsl │ │ │ │ ├── conv2d3tf1.wgsl │ │ │ │ ├── conv2d3tf2.wgsl │ │ │ │ ├── conv2d4tf.wgsl │ │ │ │ ├── conv2d4tf1.wgsl │ │ │ │ ├── conv2d4tf2.wgsl │ │ │ │ ├── conv2d5tf.wgsl │ │ │ │ ├── conv2d5tf1.wgsl │ │ │ │ ├── conv2d5tf2.wgsl │ │ │ │ ├── conv2d6tf.wgsl │ │ │ │ ├── conv2d6tf1.wgsl │ │ │ │ ├── conv2d6tf2.wgsl │ │ │ │ ├── conv2d7tf.wgsl │ │ │ │ ├── conv2d7tf1.wgsl │ │ │ │ ├── conv2d7tf2.wgsl │ │ │ │ ├── conv2dtf.wgsl │ │ │ │ ├── conv2dtf1.wgsl │ │ │ │ ├── conv2dtf2.wgsl │ │ │ │ └── output.wgsl │ │ ├── CNNVL │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── conv2d1tf.wgsl │ │ │ │ ├── conv2d1tf1.wgsl │ │ │ │ ├── conv2d2tf.wgsl │ │ │ │ ├── conv2d2tf1.wgsl │ │ │ │ ├── conv2d3tf.wgsl │ │ │ │ ├── conv2d3tf1.wgsl │ │ │ │ ├── conv2d4tf.wgsl │ │ │ │ ├── conv2d4tf1.wgsl │ │ │ │ ├── conv2d5tf.wgsl │ │ │ │ ├── conv2d5tf1.wgsl │ │ │ │ ├── conv2d6tf.wgsl │ │ │ │ ├── conv2d6tf1.wgsl │ │ │ │ ├── conv2d7tf.wgsl │ │ │ │ ├── conv2d7tf1.wgsl │ │ │ │ ├── conv2dtf.wgsl │ │ │ │ ├── conv2dtf1.wgsl │ │ │ │ └── output.wgsl │ │ ├── GANUUL │ │ │ ├── index.ts │ │ │ └── shaders │ │ │ │ ├── conv2d1tf.wgsl │ │ │ │ ├── conv2d1tf1.wgsl │ │ │ │ ├── conv2d1tf2.wgsl │ │ │ │ ├── conv2d2tf.wgsl │ │ │ │ ├── conv2d2tf1.wgsl │ │ │ │ ├── conv2d3tf.wgsl │ │ │ │ ├── conv2d3tf1.wgsl │ │ │ │ ├── conv2d3tf2.wgsl │ │ │ │ ├── conv2d4tf.wgsl │ │ │ │ ├── conv2d4tf1.wgsl │ │ │ │ ├── conv2d5tf.wgsl │ │ │ │ ├── conv2d5tf1.wgsl │ │ │ │ ├── conv2d5tf2.wgsl │ │ │ │ ├── conv2d6tf.wgsl │ │ │ │ ├── conv2d6tf1.wgsl │ │ │ │ ├── conv2dtf.wgsl │ │ │ │ ├── conv2dtf1.wgsl │ │ │ │ └── output.wgsl │ │ └── index.ts │ └── upscale │ │ ├── CNNx2M │ │ ├── index.ts │ │ └── shaders │ │ │ ├── conv2d1tf.wgsl │ │ │ ├── conv2d2tf.wgsl │ │ │ ├── conv2d3tf.wgsl │ │ │ ├── conv2d4tf.wgsl │ │ │ ├── conv2d5tf.wgsl │ │ │ ├── conv2d6tf.wgsl │ │ │ ├── conv2dlasttf.wgsl │ │ │ └── conv2dtf.wgsl │ │ ├── CNNx2UL │ │ ├── index.ts │ │ └── shaders │ │ │ ├── conv2d1tf.wgsl │ │ │ ├── conv2d1tf1.wgsl │ │ │ ├── conv2d1tf2.wgsl │ │ │ ├── conv2d2tf.wgsl │ │ │ ├── conv2d2tf1.wgsl │ │ │ ├── conv2d2tf2.wgsl │ │ │ ├── conv2d3tf.wgsl │ │ │ ├── conv2d3tf1.wgsl │ │ │ ├── conv2d3tf2.wgsl │ │ │ ├── conv2d4tf.wgsl │ │ │ ├── conv2d4tf1.wgsl │ │ │ ├── conv2d4tf2.wgsl │ │ │ ├── conv2d5tf.wgsl │ │ │ ├── conv2d5tf1.wgsl │ │ │ ├── conv2d5tf2.wgsl │ │ │ ├── conv2d6tf.wgsl │ │ │ ├── conv2d6tf1.wgsl │ │ │ ├── conv2d6tf2.wgsl │ │ │ ├── conv2dlasttf.wgsl │ │ │ ├── conv2dlasttf1.wgsl │ │ │ ├── conv2dlasttf2.wgsl │ │ │ ├── conv2dtf.wgsl │ │ │ ├── conv2dtf1.wgsl │ │ │ └── conv2dtf2.wgsl │ │ ├── CNNx2VL │ │ ├── index.ts │ │ └── shaders │ │ │ ├── conv2d1tf.wgsl │ │ │ ├── conv2d1tf1.wgsl │ │ │ ├── conv2d2tf.wgsl │ │ │ ├── conv2d2tf1.wgsl │ │ │ ├── conv2d3tf.wgsl │ │ │ ├── conv2d3tf1.wgsl │ │ │ ├── conv2d4tf.wgsl │ │ │ ├── conv2d4tf1.wgsl │ │ │ ├── conv2d5tf.wgsl │ │ │ ├── conv2d5tf1.wgsl │ │ │ ├── conv2d6tf.wgsl │ │ │ ├── conv2d6tf1.wgsl │ │ │ ├── conv2dlasttf.wgsl │ │ │ ├── conv2dlasttf1.wgsl │ │ │ ├── conv2dlasttf2.wgsl │ │ │ ├── conv2dtf.wgsl │ │ │ └── conv2dtf1.wgsl │ │ ├── DenoiseCNNx2VL │ │ ├── index.ts │ │ └── shaders │ │ │ ├── conv2d1tf.wgsl │ │ │ ├── conv2d1tf1.wgsl │ │ │ ├── conv2d2tf.wgsl │ │ │ ├── conv2d2tf1.wgsl │ │ │ ├── conv2d3tf.wgsl │ │ │ ├── conv2d3tf1.wgsl │ │ │ ├── conv2d4tf.wgsl │ │ │ ├── conv2d4tf1.wgsl │ │ │ ├── conv2d5tf.wgsl │ │ │ ├── conv2d5tf1.wgsl │ │ │ ├── conv2d6tf.wgsl │ │ │ ├── conv2d6tf1.wgsl │ │ │ ├── conv2dlasttf.wgsl │ │ │ ├── conv2dlasttf1.wgsl │ │ │ ├── conv2dlasttf2.wgsl │ │ │ ├── conv2dtf.wgsl │ │ │ └── conv2dtf1.wgsl │ │ ├── GANx3L │ │ ├── index.ts │ │ └── shaders │ │ │ ├── conv0ups0.wgsl │ │ │ ├── conv0ups1.wgsl │ │ │ ├── conv0ups2.wgsl │ │ │ ├── conv2d0tf0.wgsl │ │ │ ├── conv2d0tf1.wgsl │ │ │ ├── conv2d0tf2.wgsl │ │ │ ├── conv2d10tf.wgsl │ │ │ ├── conv2d11tf.wgsl │ │ │ ├── conv2d12tf0.wgsl │ │ │ ├── conv2d12tf1.wgsl │ │ │ ├── conv2d12tf2.wgsl │ │ │ ├── conv2d13tf.wgsl │ │ │ ├── conv2d1tf.wgsl │ │ │ ├── conv2d2tf.wgsl │ │ │ ├── conv2d3tf0.wgsl │ │ │ ├── conv2d3tf1.wgsl │ │ │ ├── conv2d3tf2.wgsl │ │ │ ├── conv2d4tf.wgsl │ │ │ ├── conv2d5tf.wgsl │ │ │ ├── conv2d6tf0.wgsl │ │ │ ├── conv2d6tf1.wgsl │ │ │ ├── conv2d6tf2.wgsl │ │ │ ├── conv2d7tf.wgsl │ │ │ ├── conv2d8tf.wgsl │ │ │ ├── conv2d9tf0.wgsl │ │ │ ├── conv2d9tf1.wgsl │ │ │ ├── conv2d9tf2.wgsl │ │ │ ├── overlayConv1ups0.wgsl │ │ │ ├── overlayConv1ups1.wgsl │ │ │ └── overlayOutput.wgsl │ │ ├── GANx4UUL │ │ ├── index.ts │ │ └── shaders │ │ │ ├── conv0ups.wgsl │ │ │ ├── conv0ups1.wgsl │ │ │ ├── conv0ups2.wgsl │ │ │ ├── conv0ups3.wgsl │ │ │ ├── conv0ups4.wgsl │ │ │ ├── conv0ups5.wgsl │ │ │ ├── conv2d10tf.wgsl │ │ │ ├── conv2d11tf.wgsl │ │ │ ├── conv2d12tf.wgsl │ │ │ ├── conv2d12tf1.wgsl │ │ │ ├── conv2d12tf2.wgsl │ │ │ ├── conv2d12tf3.wgsl │ │ │ ├── conv2d12tf4.wgsl │ │ │ ├── conv2d12tf5.wgsl │ │ │ ├── conv2d13tf.wgsl │ │ │ ├── conv2d14tf.wgsl │ │ │ ├── conv2d15tf.wgsl │ │ │ ├── conv2d15tf1.wgsl │ │ │ ├── conv2d15tf2.wgsl │ │ │ ├── conv2d15tf3.wgsl │ │ │ ├── conv2d15tf4.wgsl │ │ │ ├── conv2d15tf5.wgsl │ │ │ ├── conv2d16tf.wgsl │ │ │ ├── conv2d17tf.wgsl │ │ │ ├── conv2d18tf.wgsl │ │ │ ├── conv2d18tf1.wgsl │ │ │ ├── conv2d18tf2.wgsl │ │ │ ├── conv2d18tf3.wgsl │ │ │ ├── conv2d18tf4.wgsl │ │ │ ├── conv2d18tf5.wgsl │ │ │ ├── conv2d19tf.wgsl │ │ │ ├── conv2d1tf.wgsl │ │ │ ├── conv2d20tf.wgsl │ │ │ ├── conv2d21tf.wgsl │ │ │ ├── conv2d21tf1.wgsl │ │ │ ├── conv2d21tf2.wgsl │ │ │ ├── conv2d21tf3.wgsl │ │ │ ├── conv2d21tf4.wgsl │ │ │ ├── conv2d21tf5.wgsl │ │ │ ├── conv2d22tf.wgsl │ │ │ ├── conv2d23tf.wgsl │ │ │ ├── conv2d24tf.wgsl │ │ │ ├── conv2d24tf1.wgsl │ │ │ ├── conv2d24tf2.wgsl │ │ │ ├── conv2d24tf3.wgsl │ │ │ ├── conv2d24tf4.wgsl │ │ │ ├── conv2d24tf5.wgsl │ │ │ ├── conv2d25tf.wgsl │ │ │ ├── conv2d2tf.wgsl │ │ │ ├── conv2d3tf.wgsl │ │ │ ├── conv2d3tf1.wgsl │ │ │ ├── conv2d3tf2.wgsl │ │ │ ├── conv2d3tf3.wgsl │ │ │ ├── conv2d3tf4.wgsl │ │ │ ├── conv2d3tf5.wgsl │ │ │ ├── conv2d4tf.wgsl │ │ │ ├── conv2d5tf.wgsl │ │ │ ├── conv2d6tf.wgsl │ │ │ ├── conv2d6tf1.wgsl │ │ │ ├── conv2d6tf2.wgsl │ │ │ ├── conv2d6tf3.wgsl │ │ │ ├── conv2d6tf4.wgsl │ │ │ ├── conv2d6tf5.wgsl │ │ │ ├── conv2d7tf.wgsl │ │ │ ├── conv2d8tf.wgsl │ │ │ ├── conv2d9tf.wgsl │ │ │ ├── conv2d9tf1.wgsl │ │ │ ├── conv2d9tf2.wgsl │ │ │ ├── conv2d9tf3.wgsl │ │ │ ├── conv2d9tf4.wgsl │ │ │ ├── conv2d9tf5.wgsl │ │ │ ├── conv2dtf.wgsl │ │ │ ├── conv2dtf1.wgsl │ │ │ ├── conv2dtf2.wgsl │ │ │ ├── conv2dtf3.wgsl │ │ │ ├── conv2dtf4.wgsl │ │ │ ├── conv2dtf5.wgsl │ │ │ ├── output.wgsl │ │ │ ├── overlayConv1ups.wgsl │ │ │ ├── overlayConv1ups1.wgsl │ │ │ ├── overlayConv1ups2.wgsl │ │ │ ├── overlayConv1ups3.wgsl │ │ │ ├── overlayConv1ups4.wgsl │ │ │ └── overlayConv1ups5.wgsl │ │ └── index.ts ├── renderer │ ├── index.ts │ └── shaders │ │ ├── fullscreenTexturedQuad.wgsl │ │ └── sampleExternalTexture.wgsl └── type.d.ts ├── tsconfig.json └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/README.md -------------------------------------------------------------------------------- /conversion/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/conversion/shader.py -------------------------------------------------------------------------------- /examples/react-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/examples/react-renderer.tsx -------------------------------------------------------------------------------- /examples/react-webgpu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/examples/react-webgpu.tsx -------------------------------------------------------------------------------- /images/1a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/1a.svg -------------------------------------------------------------------------------- /images/1b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/1b.svg -------------------------------------------------------------------------------- /images/1c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/1c.svg -------------------------------------------------------------------------------- /images/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/2.svg -------------------------------------------------------------------------------- /images/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/intro.gif -------------------------------------------------------------------------------- /images/performance_analysis_720P_diff_graphic_card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/performance_analysis_720P_diff_graphic_card.svg -------------------------------------------------------------------------------- /images/performance_analysis_diff_input_size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/images/performance_analysis_diff_input_size.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pipelines/deblur/DoG/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/deblur/DoG/index.ts -------------------------------------------------------------------------------- /src/pipelines/deblur/DoG/shaders/deblurDoGApply.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/deblur/DoG/shaders/deblurDoGApply.wgsl -------------------------------------------------------------------------------- /src/pipelines/deblur/DoG/shaders/deblurDoGX.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/deblur/DoG/shaders/deblurDoGX.wgsl -------------------------------------------------------------------------------- /src/pipelines/deblur/DoG/shaders/deblurDoGY.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/deblur/DoG/shaders/deblurDoGY.wgsl -------------------------------------------------------------------------------- /src/pipelines/deblur/DoG/shaders/lumination.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/deblur/DoG/shaders/lumination.wgsl -------------------------------------------------------------------------------- /src/pipelines/deblur/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DoG'; 2 | -------------------------------------------------------------------------------- /src/pipelines/denoise/BilateralMean/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/denoise/BilateralMean/index.ts -------------------------------------------------------------------------------- /src/pipelines/denoise/BilateralMean/shaders/bilateralMean.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/denoise/BilateralMean/shaders/bilateralMean.wgsl -------------------------------------------------------------------------------- /src/pipelines/denoise/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BilateralMean'; 2 | -------------------------------------------------------------------------------- /src/pipelines/helpers/ClampHighlights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/ClampHighlights/index.ts -------------------------------------------------------------------------------- /src/pipelines/helpers/ClampHighlights/shaders/clamp.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/ClampHighlights/shaders/clamp.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/ClampHighlights/shaders/luminationX.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/ClampHighlights/shaders/luminationX.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/ClampHighlights/shaders/luminationY.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/ClampHighlights/shaders/luminationY.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/Conv2d/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Conv2d/index.ts -------------------------------------------------------------------------------- /src/pipelines/helpers/DepthToSpace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/DepthToSpace/index.ts -------------------------------------------------------------------------------- /src/pipelines/helpers/DepthToSpace/shaders/depthToSpace.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/DepthToSpace/shaders/depthToSpace.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/Downscale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Downscale/index.ts -------------------------------------------------------------------------------- /src/pipelines/helpers/Downscale/shaders/fragment.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Downscale/shaders/fragment.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/Downscale/shaders/vertex.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Downscale/shaders/vertex.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/Original/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Original/index.ts -------------------------------------------------------------------------------- /src/pipelines/helpers/Overlay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Overlay/index.ts -------------------------------------------------------------------------------- /src/pipelines/helpers/Overlay/shaders/overlay2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Overlay/shaders/overlay2.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/Overlay/shaders/vertex.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/Overlay/shaders/vertex.wgsl -------------------------------------------------------------------------------- /src/pipelines/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/helpers/index.ts -------------------------------------------------------------------------------- /src/pipelines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/index.ts -------------------------------------------------------------------------------- /src/pipelines/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/interfaces.ts -------------------------------------------------------------------------------- /src/pipelines/presets/ModeA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/ModeA/index.ts -------------------------------------------------------------------------------- /src/pipelines/presets/ModeAA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/ModeAA/index.ts -------------------------------------------------------------------------------- /src/pipelines/presets/ModeB/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/ModeB/index.ts -------------------------------------------------------------------------------- /src/pipelines/presets/ModeBB/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/ModeBB/index.ts -------------------------------------------------------------------------------- /src/pipelines/presets/ModeC/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/ModeC/index.ts -------------------------------------------------------------------------------- /src/pipelines/presets/ModeCA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/ModeCA/index.ts -------------------------------------------------------------------------------- /src/pipelines/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/presets/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNM/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNM/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftM/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftM/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d7tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d7tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2d7tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2d7tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNSoftVL/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNSoftVL/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d1tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d1tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d2tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d2tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d3tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d3tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d4tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d4tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d5tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d5tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d6tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d6tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d7tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d7tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d7tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d7tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2d7tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2d7tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/conv2dtf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/conv2dtf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNUL/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNUL/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d7tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d7tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2d7tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2d7tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/CNNVL/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/CNNVL/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/index.ts -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d1tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d1tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d3tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d3tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d5tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d5tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/GANUUL/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/GANUUL/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/restore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/restore/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2dlasttf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2dlasttf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2M/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2M/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d1tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d1tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d2tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d2tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d3tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d3tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d4tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d4tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d5tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d5tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2d6tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2d6tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2dlasttf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2dlasttf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2dlasttf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2dlasttf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2dlasttf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2dlasttf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2UL/shaders/conv2dtf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2UL/shaders/conv2dtf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2dlasttf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2dlasttf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2dlasttf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2dlasttf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2dlasttf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2dlasttf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/CNNx2VL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/CNNx2VL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d1tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d1tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d2tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d2tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d4tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d4tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d5tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d5tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dlasttf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dlasttf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dlasttf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dlasttf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dlasttf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dlasttf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/DenoiseCNNx2VL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv0ups0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv0ups0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv0ups1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv0ups1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv0ups2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv0ups2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d0tf0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d0tf0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d0tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d0tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d0tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d0tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d10tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d10tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d11tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d11tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d12tf0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d12tf0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d12tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d12tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d12tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d12tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d13tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d13tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d3tf0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d3tf0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d3tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d3tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d6tf0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d6tf0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d6tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d6tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d7tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d7tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d8tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d8tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d9tf0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d9tf0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d9tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d9tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/conv2d9tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/conv2d9tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/overlayConv1ups0.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/overlayConv1ups0.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/overlayConv1ups1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/overlayConv1ups1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx3L/shaders/overlayOutput.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx3L/shaders/overlayOutput.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/index.ts -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv0ups.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv0ups.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv0ups1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv0ups1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv0ups2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv0ups2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv0ups3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv0ups3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv0ups4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv0ups4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv0ups5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv0ups5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d10tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d10tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d11tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d11tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d12tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d13tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d13tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d14tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d14tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d15tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d16tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d16tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d17tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d17tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d18tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d19tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d19tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d1tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d1tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d20tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d20tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d21tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d22tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d22tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d23tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d23tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d24tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d25tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d25tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d2tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d2tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d3tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d4tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d4tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d5tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d5tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d6tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d7tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d7tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d8tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d8tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2d9tf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2dtf.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2dtf.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2dtf1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2dtf1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2dtf2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2dtf2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2dtf3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2dtf3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2dtf4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2dtf4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/conv2dtf5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/conv2dtf5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/output.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/output.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups1.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups1.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups2.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups3.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups4.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups4.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups5.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/GANx4UUL/shaders/overlayConv1ups5.wgsl -------------------------------------------------------------------------------- /src/pipelines/upscale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/pipelines/upscale/index.ts -------------------------------------------------------------------------------- /src/renderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/renderer/index.ts -------------------------------------------------------------------------------- /src/renderer/shaders/fullscreenTexturedQuad.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/renderer/shaders/fullscreenTexturedQuad.wgsl -------------------------------------------------------------------------------- /src/renderer/shaders/sampleExternalTexture.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/renderer/shaders/sampleExternalTexture.wgsl -------------------------------------------------------------------------------- /src/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/src/type.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4KWebBoost/Anime4K-WebGPU/HEAD/webpack.config.js --------------------------------------------------------------------------------