/*
 * Copyright (c) 2018-2025, High Performance Computing Architecture and System
 * research laboratory at University of North Carolina at Charlotte (HPCAS@UNCC)
 * and Lawrence Livermore National Security, LLC.
 *
 * SPDX-License-Identifier: (BSD-3-Clause)
 */

//For testing purpose, there are several extra empty lines.
//The final version should only contain necessary information.
//This is not a C/C++ code, so there's no required writing style.
//Only two kinds of special lines will be recognized.
//One is starting with "omp", which is the input.
//The other one is starting with "PASS: ", which is the result for validation.

!$omp atomic
PASS: !$omp atomic

!$omp atomic hint(abc)
PASS: !$omp atomic hint(abc)

!$omp atomic read
PASS: !$omp atomic read

!$omp atomic hint(abc) read
PASS: !$omp atomic hint(abc) read

!$omp atomic write hint(abc)
PASS: !$omp atomic write hint(abc)

!$omp atomic write seq_cst
PASS: !$omp atomic write seq_cst


!$omp atomic release
PASS: !$omp atomic release

!$omp end atomic
PASS: !$omp end atomic

