Skip to content

Commit c6988ed

Browse files
committedJun 1, 2024
Merge
2 parents dcdeef5 + 3457542 commit c6988ed

File tree

1 file changed

+114
-0
lines changed

1 file changed

+114
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @summary Stress test virtual threads with a variation of the Skynet 1M benchmark that uses
27+
* a channel implementation based on object monitors
28+
* @requires vm.continuations
29+
* @run main/othervm/timeout=300 -Xmx1500m SkynetWithMonitors 2
30+
*/
31+
32+
public class SkynetWithMonitors {
33+
34+
public static void main(String[] args) {
35+
int iterations = (args.length > 0) ? Integer.parseInt(args[0]) : 1;
36+
for (int i = 0; i < iterations; i++) {
37+
skynet(1_000_000, 499999500000L);
38+
}
39+
}
40+
41+
static void skynet(int num, long expected) {
42+
long start = System.currentTimeMillis();
43+
var chan = new Channel<Long>();
44+
45+
Thread.startVirtualThread(() -> skynet(chan, 0, num, 10));
46+
47+
long sum = chan.receive();
48+
long end = System.currentTimeMillis();
49+
System.out.format("Result: %d in %s ms%n", sum, (end-start));
50+
if (sum != expected)
51+
throw new AssertionError("unexpected result!");
52+
}
53+
54+
static void skynet(Channel<Long> result, int num, int size, int div) {
55+
if (size == 1) {
56+
result.send((long)num);
57+
} else {
58+
var chan = new Channel<Long>();
59+
for (int i = 0; i < div; i++) {
60+
int subNum = num + i * (size / div);
61+
Thread.startVirtualThread(() -> skynet(chan, subNum, size / div, div));
62+
}
63+
long sum = 0;
64+
for (int i = 0; i < div; i++) {
65+
sum += chan.receive();
66+
}
67+
result.send(sum);
68+
}
69+
}
70+
71+
static class Channel<T> {
72+
private final Object lock = new Object();
73+
private T element;
74+
75+
Channel() {
76+
}
77+
78+
void send(T e) {
79+
boolean interrupted = false;
80+
synchronized (lock) {
81+
while (element != null) {
82+
try {
83+
lock.wait();
84+
} catch (InterruptedException x) {
85+
interrupted = true;
86+
}
87+
}
88+
element = e;
89+
lock.notifyAll();
90+
}
91+
if (interrupted)
92+
Thread.currentThread().interrupt();
93+
}
94+
95+
T receive() {
96+
T e;
97+
boolean interrupted = false;
98+
synchronized (lock) {
99+
while ((e = element) == null) {
100+
try {
101+
lock.wait();
102+
} catch (InterruptedException x) {
103+
interrupted = true;
104+
}
105+
}
106+
element = null;
107+
lock.notifyAll();
108+
}
109+
if (interrupted)
110+
Thread.currentThread().interrupt();
111+
return e;
112+
}
113+
}
114+
}

0 commit comments

Comments
 (0)
Please sign in to comment.