1 /*
2 * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25 package mandel;
26
27 import hat.Accelerator;
28 import hat.ComputeContext;
29 import hat.NDRange;
30 import hat.KernelContext;
31 import hat.backend.Backend;
32 import hat.buffer.S32Array;
33 import hat.buffer.S32Array2D;
34
35 import java.awt.Color;
36 import java.lang.invoke.MethodHandles;
37
38 import jdk.incubator.code.CodeReflection;
39 import static hat.ifacemapper.MappableIface.*;
40
41 public class Main {
42 @CodeReflection
43 public static void mandel(@RO KernelContext kc, @RW S32Array2D s32Array2D, @RO S32Array pallette, float offsetx, float offsety, float scale) {
44 if (kc.gix < kc.gsx) {
45 float width = s32Array2D.width();
46 float height = s32Array2D.height();
47 float x = ((kc.gix % s32Array2D.width()) * scale - (scale / 2f * width)) / width + offsetx;
48 float y = ((kc.gix / s32Array2D.width()) * scale - (scale / 2f * height)) / height + offsety;
49 float zx = x;
50 float zy = y;
51 float new_zx;
52 int colorIdx = 0;
53 while ((colorIdx < pallette.length()) && (((zx * zx) + (zy * zy)) < 4f)) {
54 new_zx = ((zx * zx) - (zy * zy)) + x;
55 zy = (2f * zx * zy) + y;
56 zx = new_zx;
57 colorIdx++;
58 }
59 int color = colorIdx < pallette.length() ? pallette.array(colorIdx) : 0;
60 s32Array2D.array(kc.gix, color);
61 }
62 }
63
64
65 @CodeReflection
66 static public void compute(final ComputeContext computeContext, S32Array pallete, S32Array2D s32Array2D, float x, float y, float scale) {
67 computeContext.dispatchKernel(
68 NDRange.of(s32Array2D.width()*s32Array2D.height()), //0..S32Array2D.size()
69 kc -> Main.mandel(kc, s32Array2D, pallete, x, y, scale));
70 }
71
72 public static void main(String[] args) {
73 final int width = 1024;
74 final int height = 1024;
75 final float defaultScale = 3f;
76 final float originX = -1f;
77 final float originY = 0;
78 final int maxIterations = 64;
79 final int zoomFrames = 200;
80
81 Accelerator accelerator = new Accelerator(MethodHandles.lookup(), Backend.FIRST);
82 boolean headless = accelerator.config().headless(args.length>0?args[0]:null);
83 S32Array2D s32Array2D = S32Array2D.create(accelerator, width, height);
84
85 int[] palletteArray = new int[maxIterations];
86
87 if (accelerator.config().headless(args.length>0?args[0]:null)){
88 for (int i = 1; i < maxIterations; i++) {
89 palletteArray[i]=(i/8+1);// 0-7?
90 }
91 palletteArray[0]=0;
92 }else {
93 for (int i = 0; i < maxIterations; i++) {
94 final float h = i / (float) maxIterations;
95 final float b = 1.0f - (h * h);
96 palletteArray[i] = Color.HSBtoRGB(h, 1f, b);
97 }
98 }
99 S32Array pallette = S32Array.createFrom(accelerator, palletteArray);
100
101 accelerator.compute(cc -> Main.compute(cc, pallette, s32Array2D, originX, originY, defaultScale));
102
103 if (headless){
104 // Well take 1 in 4 samples (so 1024 -> 128 grid) of the pallette.
105 int subsample = 16;
106 char[] charPallette9 = new char []{' ', '.', ',',':', '-', '+','*', '#', '@', '%'};
107 for (int y = 0; y<height/subsample; y++) {
108 for (int x = 0; x<width/subsample; x++) {
109 int palletteValue = s32Array2D.get(x*subsample,y*subsample); // so 0->8
110 System.out.print(charPallette9[palletteValue]);
111 }
112 System.out.println();
113 }
114
115 }else {
116 Viewer viewer = new Viewer("mandel", s32Array2D);
117 viewer.imageViewer.syncWithRGB(s32Array2D);
118
119 while (viewer.imageViewer.getZoomPoint(defaultScale) instanceof Viewer.PointF32 zoomPoint) {
120 float x = originX;
121 float y = originY;
122 float scale = defaultScale;
123 final long startMillis = System.currentTimeMillis();
124
125 for (int sign : new int[]{-1, 1}) {
126 for (int i = 0; i < zoomFrames; i++) {
127 scale = scale + ((sign * defaultScale) / zoomFrames);
128 final float fscale = scale;
129 final float fx = x - sign * zoomPoint.x / zoomFrames;
130 final float fy = y - sign * zoomPoint.y / zoomFrames;
131 accelerator.compute(cc -> Main.compute(cc, pallette, s32Array2D, fx, fy, fscale));
132 viewer.imageViewer.syncWithRGB(s32Array2D);
133
134 }
135 }
136 var fps = ((zoomFrames * 2 * 1000) / (System.currentTimeMillis() - startMillis));
137 viewer.framesSecondSevenSegment.set((int)fps);
138 // System.out.println("FPS = " +fps);
139 }
140 }
141 }
142 }