LCOV - code coverage report
Current view: top level - fem/qfunctions/apply - apply_1_qf.h (source / functions) Coverage Total Hit
Test: Palace Coverage Report Lines: 0.0 % 6 0
Test Date: 2025-10-23 22:45:05 Functions: 0.0 % 1 0
Legend: Lines: hit not hit

            Line data    Source code
       1              : // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
       2              : // SPDX-License-Identifier: Apache-2.0
       3              : 
       4              : #ifndef PALACE_LIBCEED_APPLY_1_QF_H
       5              : #define PALACE_LIBCEED_APPLY_1_QF_H
       6              : 
       7            0 : CEED_QFUNCTION(f_apply_1)(void *, CeedInt Q, const CeedScalar *const *in,
       8              :                           CeedScalar *const *out)
       9              : {
      10            0 :   const CeedScalar *__restrict__ qd = in[0], *__restrict__ u = in[1];
      11            0 :   CeedScalar *__restrict__ v = out[0];
      12              : 
      13            0 :   CeedPragmaSIMD for (CeedInt i = 0; i < Q; i++)
      14              :   {
      15            0 :     v[i] = qd[i] * u[i];
      16              :   }
      17            0 :   return 0;
      18              : }
      19              : 
      20              : #endif  // PALACE_LIBCEED_APPLY_1_QF_H
        

Generated by: LCOV version 2.0-1