RFR: CODETOOLS-7903060: jcstress: ProducerConsumer problem sample [v6]

Michael Mirwaldt duke at openjdk.java.net
Thu Dec 9 20:38:08 UTC 2021


On Thu, 9 Dec 2021 01:50:35 GMT, Michael Mirwaldt <duke at openjdk.java.net> wrote:

>> This sample implements some solutions from the wikipedia article about the producer-consumer-problem on https://en.wikipedia.org/wiki/Producer%E2%80%93consumer_problem .
>> It contains these solutions:
>> - _OneProducerOneConsumer_ with semaphores
>> - _FlawedTwoProducersOneConsumer_ with semaphores in which the producers sometimes use the same index for their items and overwrite each others item in the buffer
>> - _FixedTwoProducersOneConsumer_ with semaphores which uses an extra lock for the index so that the producers never use the same index for their items
>> - _Lock_ doesn't use any sempahores but a reentrant lock with two conditions. It supports many producers and many consumers
>> - _AtomicIntegers_ neither uses any semaphores but two atomic integers and supports one producer and one consumer.
>> 
>> I have decided not to implement the last solution with finite-range single writer registers in the wikipedia article. It looked far too complicated to me.
>> 
>> This is my third try to avoid squash commits.
>
> Michael Mirwaldt has updated the pull request incrementally with one additional commit since the last revision:
> 
>   applied proposals from the third review on sample Classic_02_ProducerConsumerProblem

Which results?
I cannot see any 

          RESULT        SAMPLES     FREQ      EXPECT  DESCRIPTION
            true  6,325,295,104  100.00%  Acceptable  Trivial.

for other tests than FlawedTwoProducersOneConsumer.
I can only see

(ETA: in 00:01:40; at Do., 2021-12-09 21:14:35)
(Sampling Rate: 8,09 M/sec)
(JVMs: 0 starting, 4 running, 1 finishing)
(CPUs: 12 configured, 12 allocated)
(Results: 434 planned; 359 passed, 0 failed, 0 soft errs, 0 hard errs)

How can I enable this output for all other tests?

I have added the separators but I miss the results.

-------------

PR: https://git.openjdk.java.net/jcstress/pull/104


More information about the jcstress-dev mailing list