15aed82e4SJeremy L Thompson // Copyright (c) 2017-2024, Lawrence Livermore National Security, LLC and other CEED contributors. 23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 30436c2adSjeremylt // 43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 50436c2adSjeremylt // 63d8e8822SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 70436c2adSjeremylt 82b730f8bSJeremy L Thompson #include <ceed-impl.h> 949aac155SJeremy L Thompson #include <ceed.h> 102b730f8bSJeremy L Thompson #include <ceed/backend.h> 11c85e8640SSebastian Grimberg #include <assert.h> 12547d9b97Sjeremylt #include <math.h> 1349aac155SJeremy L Thompson #include <stdbool.h> 143d576824SJeremy L Thompson #include <stdint.h> 153d576824SJeremy L Thompson #include <stdio.h> 160436c2adSjeremylt 177a982d89SJeremy L. Thompson /// @file 187a982d89SJeremy L. Thompson /// Implementation of public CeedVector interfaces 197a982d89SJeremy L. Thompson 200436c2adSjeremylt /// @cond DOXYGEN_SKIP 210436c2adSjeremylt static struct CeedVector_private ceed_vector_active; 220436c2adSjeremylt static struct CeedVector_private ceed_vector_none; 230436c2adSjeremylt /// @endcond 240436c2adSjeremylt 257a982d89SJeremy L. Thompson /// @addtogroup CeedVectorUser 267a982d89SJeremy L. Thompson /// @{ 277a982d89SJeremy L. Thompson 28ca94c3ddSJeremy L Thompson /// Indicate that vector will be provided as an explicit argument to @ref CeedOperatorApply(). 297a982d89SJeremy L. Thompson const CeedVector CEED_VECTOR_ACTIVE = &ceed_vector_active; 307a982d89SJeremy L. Thompson 3196b902e2Sjeremylt /// Indicate that no vector is applicable (i.e., for @ref CEED_EVAL_WEIGHT). 327a982d89SJeremy L. Thompson const CeedVector CEED_VECTOR_NONE = &ceed_vector_none; 337a982d89SJeremy L. Thompson 347a982d89SJeremy L. Thompson /// @} 357a982d89SJeremy L. Thompson 367a982d89SJeremy L. Thompson /// ---------------------------------------------------------------------------- 377a982d89SJeremy L. Thompson /// CeedVector Backend API 387a982d89SJeremy L. Thompson /// ---------------------------------------------------------------------------- 397a982d89SJeremy L. Thompson /// @addtogroup CeedVectorBackend 407a982d89SJeremy L. Thompson /// @{ 417a982d89SJeremy L. Thompson 427a982d89SJeremy L. Thompson /** 43ca94c3ddSJeremy L Thompson @brief Check for valid data in a `CeedVector` 449c774eddSJeremy L Thompson 45ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to check validity 469c774eddSJeremy L Thompson @param[out] has_valid_array Variable to store validity 479c774eddSJeremy L Thompson 489c774eddSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 499c774eddSJeremy L Thompson 509c774eddSJeremy L Thompson @ref Backend 519c774eddSJeremy L Thompson **/ 529c774eddSJeremy L Thompson int CeedVectorHasValidArray(CeedVector vec, bool *has_valid_array) { 531203703bSJeremy L Thompson CeedSize length; 541203703bSJeremy L Thompson 556e536b99SJeremy L Thompson CeedCheck(vec->HasValidArray, CeedVectorReturnCeed(vec), CEED_ERROR_UNSUPPORTED, "Backend does not support CeedVectorHasValidArray"); 561203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 571203703bSJeremy L Thompson if (length == 0) { 58b0976d5aSZach Atkins *has_valid_array = true; 59b0976d5aSZach Atkins return CEED_ERROR_SUCCESS; 60b0976d5aSZach Atkins } 612b730f8bSJeremy L Thompson CeedCall(vec->HasValidArray(vec, has_valid_array)); 629c774eddSJeremy L Thompson return CEED_ERROR_SUCCESS; 639c774eddSJeremy L Thompson } 649c774eddSJeremy L Thompson 659c774eddSJeremy L Thompson /** 66ca94c3ddSJeremy L Thompson @brief Check for borrowed array of a specific @ref CeedMemType in a `CeedVector` 679c774eddSJeremy L Thompson 68ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to check 69ea61e9acSJeremy L Thompson @param[in] mem_type Memory type to check 709c774eddSJeremy L Thompson @param[out] has_borrowed_array_of_type Variable to store result 719c774eddSJeremy L Thompson 729c774eddSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 739c774eddSJeremy L Thompson 749c774eddSJeremy L Thompson @ref Backend 759c774eddSJeremy L Thompson **/ 762b730f8bSJeremy L Thompson int CeedVectorHasBorrowedArrayOfType(CeedVector vec, CeedMemType mem_type, bool *has_borrowed_array_of_type) { 776e536b99SJeremy L Thompson CeedCheck(vec->HasBorrowedArrayOfType, CeedVectorReturnCeed(vec), CEED_ERROR_UNSUPPORTED, 786e536b99SJeremy L Thompson "Backend does not support CeedVectorHasBorrowedArrayOfType"); 792b730f8bSJeremy L Thompson CeedCall(vec->HasBorrowedArrayOfType(vec, mem_type, has_borrowed_array_of_type)); 809c774eddSJeremy L Thompson return CEED_ERROR_SUCCESS; 819c774eddSJeremy L Thompson } 829c774eddSJeremy L Thompson 839c774eddSJeremy L Thompson /** 84ca94c3ddSJeremy L Thompson @brief Get the state of a `CeedVector` 857a982d89SJeremy L. Thompson 86ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to retrieve state 877a982d89SJeremy L. Thompson @param[out] state Variable to store state 887a982d89SJeremy L. Thompson 897a982d89SJeremy L. Thompson @return An error code: 0 - success, otherwise - failure 907a982d89SJeremy L. Thompson 917a982d89SJeremy L. Thompson @ref Backend 927a982d89SJeremy L. Thompson **/ 937a982d89SJeremy L. Thompson int CeedVectorGetState(CeedVector vec, uint64_t *state) { 947a982d89SJeremy L. Thompson *state = vec->state; 95e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 967a982d89SJeremy L. Thompson } 977a982d89SJeremy L. Thompson 987a982d89SJeremy L. Thompson /** 99ca94c3ddSJeremy L Thompson @brief Get the backend data of a `CeedVector` 1007a982d89SJeremy L. Thompson 101ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to retrieve state 1027a982d89SJeremy L. Thompson @param[out] data Variable to store data 1037a982d89SJeremy L. Thompson 1047a982d89SJeremy L. Thompson @return An error code: 0 - success, otherwise - failure 1057a982d89SJeremy L. Thompson 1067a982d89SJeremy L. Thompson @ref Backend 1077a982d89SJeremy L. Thompson **/ 108777ff853SJeremy L Thompson int CeedVectorGetData(CeedVector vec, void *data) { 109777ff853SJeremy L Thompson *(void **)data = vec->data; 110e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 1117a982d89SJeremy L. Thompson } 1127a982d89SJeremy L. Thompson 1137a982d89SJeremy L. Thompson /** 114ca94c3ddSJeremy L Thompson @brief Set the backend data of a `CeedVector` 1157a982d89SJeremy L. Thompson 116ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to retrieve state 117ea61e9acSJeremy L Thompson @param[in] data Data to set 1187a982d89SJeremy L. Thompson 1197a982d89SJeremy L. Thompson @return An error code: 0 - success, otherwise - failure 1207a982d89SJeremy L. Thompson 1217a982d89SJeremy L. Thompson @ref Backend 1227a982d89SJeremy L. Thompson **/ 123777ff853SJeremy L Thompson int CeedVectorSetData(CeedVector vec, void *data) { 124777ff853SJeremy L Thompson vec->data = data; 125e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 1267a982d89SJeremy L. Thompson } 1277a982d89SJeremy L. Thompson 12834359f16Sjeremylt /** 129ca94c3ddSJeremy L Thompson @brief Increment the reference counter for a `CeedVector` 13034359f16Sjeremylt 131ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to increment the reference counter 13234359f16Sjeremylt 13334359f16Sjeremylt @return An error code: 0 - success, otherwise - failure 13434359f16Sjeremylt 13534359f16Sjeremylt @ref Backend 13634359f16Sjeremylt **/ 1379560d06aSjeremylt int CeedVectorReference(CeedVector vec) { 13834359f16Sjeremylt vec->ref_count++; 13934359f16Sjeremylt return CEED_ERROR_SUCCESS; 14034359f16Sjeremylt } 14134359f16Sjeremylt 1427a982d89SJeremy L. Thompson /// @} 1437a982d89SJeremy L. Thompson 1447a982d89SJeremy L. Thompson /// ---------------------------------------------------------------------------- 1457a982d89SJeremy L. Thompson /// CeedVector Public API 1467a982d89SJeremy L. Thompson /// ---------------------------------------------------------------------------- 1477a982d89SJeremy L. Thompson /// @addtogroup CeedVectorUser 1480436c2adSjeremylt /// @{ 1490436c2adSjeremylt 1500436c2adSjeremylt /** 151ca94c3ddSJeremy L Thompson @brief Create a `CeedVector` of the specified length (does not allocate memory) 1520436c2adSjeremylt 153ca94c3ddSJeremy L Thompson @param[in] ceed `Ceed` object used to create the `CeedVector` 154ea61e9acSJeremy L Thompson @param[in] length Length of vector 155ca94c3ddSJeremy L Thompson @param[out] vec Address of the variable where the newly created `CeedVector` will be stored 1560436c2adSjeremylt 1570436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 1580436c2adSjeremylt 1597a982d89SJeremy L. Thompson @ref User 1600436c2adSjeremylt **/ 1611f9221feSJeremy L Thompson int CeedVectorCreate(Ceed ceed, CeedSize length, CeedVector *vec) { 1620436c2adSjeremylt if (!ceed->VectorCreate) { 1630436c2adSjeremylt Ceed delegate; 1646574a04fSJeremy L Thompson 1652b730f8bSJeremy L Thompson CeedCall(CeedGetObjectDelegate(ceed, &delegate, "Vector")); 1661ef3a2a9SJeremy L Thompson CeedCheck(delegate, ceed, CEED_ERROR_UNSUPPORTED, "Backend does not implement VectorCreate"); 1672b730f8bSJeremy L Thompson CeedCall(CeedVectorCreate(delegate, length, vec)); 168*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&delegate)); 169e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 1700436c2adSjeremylt } 1710436c2adSjeremylt 1722b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, vec)); 173db002c03SJeremy L Thompson CeedCall(CeedReferenceCopy(ceed, &(*vec)->ceed)); 174d1d35e2fSjeremylt (*vec)->ref_count = 1; 1750436c2adSjeremylt (*vec)->length = length; 1760436c2adSjeremylt (*vec)->state = 0; 1772b730f8bSJeremy L Thompson CeedCall(ceed->VectorCreate(length, *vec)); 178e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 1790436c2adSjeremylt } 1800436c2adSjeremylt 1810436c2adSjeremylt /** 182ca94c3ddSJeremy L Thompson @brief Copy the pointer to a `CeedVector`. 1834385fb7fSSebastian Grimberg 184ca94c3ddSJeremy L Thompson Both pointers should be destroyed with @ref CeedVectorDestroy(). 185512bb800SJeremy L Thompson 186ca94c3ddSJeremy L Thompson Note: If the value of `*vec_copy` passed to this function is non-`NULL`, then it is assumed that `*vec_copy` is a pointer to a `CeedVector`. 187ca94c3ddSJeremy L Thompson This `CeedVector` will be destroyed if `*vec_copy` is the only reference to this `CeedVector`. 1889560d06aSjeremylt 189ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to copy reference to 190ea61e9acSJeremy L Thompson @param[in,out] vec_copy Variable to store copied reference 1919560d06aSjeremylt 1929560d06aSjeremylt @return An error code: 0 - success, otherwise - failure 1939560d06aSjeremylt 1949560d06aSjeremylt @ref User 1959560d06aSjeremylt **/ 1969560d06aSjeremylt int CeedVectorReferenceCopy(CeedVector vec, CeedVector *vec_copy) { 197393ac2cdSJeremy L Thompson if (vec != CEED_VECTOR_ACTIVE && vec != CEED_VECTOR_NONE) CeedCall(CeedVectorReference(vec)); 1982b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(vec_copy)); 1999560d06aSjeremylt *vec_copy = vec; 2009560d06aSjeremylt return CEED_ERROR_SUCCESS; 2019560d06aSjeremylt } 2029560d06aSjeremylt 2039560d06aSjeremylt /** 204ca94c3ddSJeremy L Thompson @brief Copy a `CeedVector` into a different `CeedVector`. 2054385fb7fSSebastian Grimberg 206ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to copy 207e706ae07SJeremy L Thompson @param[in,out] vec_copy `CeedVector` to copy array into 2085fb68f37SKaren (Ren) Stengel 2095fb68f37SKaren (Ren) Stengel @return An error code: 0 - success, otherwise - failure 2105fb68f37SKaren (Ren) Stengel 2115fb68f37SKaren (Ren) Stengel @ref User 2125fb68f37SKaren (Ren) Stengel **/ 2135fb68f37SKaren (Ren) Stengel int CeedVectorCopy(CeedVector vec, CeedVector vec_copy) { 2145fb68f37SKaren (Ren) Stengel CeedMemType mem_type, mem_type_copy; 2155fb68f37SKaren (Ren) Stengel CeedScalar *array; 2165fb68f37SKaren (Ren) Stengel 217*9bc66399SJeremy L Thompson // Get the preferred memory types 218*9bc66399SJeremy L Thompson { 219*9bc66399SJeremy L Thompson Ceed ceed; 220*9bc66399SJeremy L Thompson 221d77c2f5dSJeremy L Thompson CeedCall(CeedVectorGetCeed(vec, &ceed)); 222d77c2f5dSJeremy L Thompson CeedCall(CeedGetPreferredMemType(ceed, &mem_type)); 223*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed)); 2245fb68f37SKaren (Ren) Stengel 225d77c2f5dSJeremy L Thompson CeedCall(CeedVectorGetCeed(vec_copy, &ceed)); 226d77c2f5dSJeremy L Thompson CeedCall(CeedGetPreferredMemType(ceed, &mem_type_copy)); 227*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed)); 228*9bc66399SJeremy L Thompson } 2295fb68f37SKaren (Ren) Stengel 2305fb68f37SKaren (Ren) Stengel // Check that both have same memory type 2315fb68f37SKaren (Ren) Stengel if (mem_type != mem_type_copy) mem_type = CEED_MEM_HOST; 2325fb68f37SKaren (Ren) Stengel 233e706ae07SJeremy L Thompson // Check compatible lengths 234e706ae07SJeremy L Thompson { 235e706ae07SJeremy L Thompson CeedSize length_vec, length_copy; 236e706ae07SJeremy L Thompson 237e706ae07SJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length_vec)); 238e706ae07SJeremy L Thompson CeedCall(CeedVectorGetLength(vec_copy, &length_copy)); 239*9bc66399SJeremy L Thompson CeedCheck(length_vec == length_copy, CeedVectorReturnCeed(vec), CEED_ERROR_INCOMPATIBLE, "CeedVectors must have the same length to copy"); 240e706ae07SJeremy L Thompson } 241e706ae07SJeremy L Thompson 2425fb68f37SKaren (Ren) Stengel // Copy the values from vec to vec_copy 2435fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorGetArray(vec, mem_type, &array)); 2445fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorSetArray(vec_copy, mem_type, CEED_COPY_VALUES, array)); 2455fb68f37SKaren (Ren) Stengel 2465fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorRestoreArray(vec, &array)); 2475fb68f37SKaren (Ren) Stengel return CEED_ERROR_SUCCESS; 2485fb68f37SKaren (Ren) Stengel } 2495fb68f37SKaren (Ren) Stengel 2505fb68f37SKaren (Ren) Stengel /** 2510b8f3c4eSJeremy L Thompson @brief Copy a strided portion of `CeedVector` contents into a different `CeedVector` 2520b8f3c4eSJeremy L Thompson 2530b8f3c4eSJeremy L Thompson @param[in] vec `CeedVector` to copy 2540b8f3c4eSJeremy L Thompson @param[in] start First index to copy 2550b8f3c4eSJeremy L Thompson @param[in] step Stride between indices to copy 2560b8f3c4eSJeremy L Thompson @param[in,out] vec_copy `CeedVector` to copy values to 2570b8f3c4eSJeremy L Thompson 2580b8f3c4eSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 2590b8f3c4eSJeremy L Thompson 2600b8f3c4eSJeremy L Thompson @ref User 2610b8f3c4eSJeremy L Thompson **/ 2620b8f3c4eSJeremy L Thompson int CeedVectorCopyStrided(CeedVector vec, CeedSize start, CeedInt step, CeedVector vec_copy) { 2630b8f3c4eSJeremy L Thompson CeedSize length; 264bb03490dSJeremy L Thompson const CeedScalar *array = NULL; 265bb03490dSJeremy L Thompson CeedScalar *array_copy = NULL; 2660b8f3c4eSJeremy L Thompson 2670b8f3c4eSJeremy L Thompson // Backend version 2680b8f3c4eSJeremy L Thompson if (vec->CopyStrided && vec_copy->CopyStrided) { 2690b8f3c4eSJeremy L Thompson CeedCall(vec->CopyStrided(vec, start, step, vec_copy)); 2700b8f3c4eSJeremy L Thompson vec_copy->state += 2; 2710b8f3c4eSJeremy L Thompson return CEED_ERROR_SUCCESS; 2720b8f3c4eSJeremy L Thompson } 2730b8f3c4eSJeremy L Thompson 2740b8f3c4eSJeremy L Thompson // Get length 2750b8f3c4eSJeremy L Thompson { 2760b8f3c4eSJeremy L Thompson CeedSize length_vec, length_copy; 2770b8f3c4eSJeremy L Thompson 2780b8f3c4eSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length_vec)); 2790b8f3c4eSJeremy L Thompson CeedCall(CeedVectorGetLength(vec_copy, &length_copy)); 280bb03490dSJeremy L Thompson if (length_vec <= 0 || length_copy <= 0) return CEED_ERROR_SUCCESS; 281a7efc114SJeremy L Thompson length = length_vec < length_copy ? length_vec : length_copy; 2820b8f3c4eSJeremy L Thompson } 2830b8f3c4eSJeremy L Thompson 2840b8f3c4eSJeremy L Thompson // Copy 2850b8f3c4eSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(vec, CEED_MEM_HOST, &array)); 2860b8f3c4eSJeremy L Thompson CeedCall(CeedVectorGetArray(vec_copy, CEED_MEM_HOST, &array_copy)); 2870b8f3c4eSJeremy L Thompson for (CeedSize i = start; i < length; i += step) array_copy[i] = array[i]; 2880b8f3c4eSJeremy L Thompson 2890b8f3c4eSJeremy L Thompson // Cleanup 2900b8f3c4eSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(vec, &array)); 2910b8f3c4eSJeremy L Thompson CeedCall(CeedVectorRestoreArray(vec_copy, &array_copy)); 2920b8f3c4eSJeremy L Thompson return CEED_ERROR_SUCCESS; 2930b8f3c4eSJeremy L Thompson } 2940b8f3c4eSJeremy L Thompson 2950b8f3c4eSJeremy L Thompson /** 296ca94c3ddSJeremy L Thompson @brief Set the array used by a `CeedVector`, freeing any previously allocated array if applicable. 2974385fb7fSSebastian Grimberg 298ca94c3ddSJeremy L Thompson The backend may copy values to a different @ref CeedMemType, such as during @ref CeedOperatorApply(). 2996a6c615bSJeremy L Thompson See also @ref CeedVectorSyncArray() and @ref CeedVectorTakeArray(). 3000436c2adSjeremylt 301ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` 302ea61e9acSJeremy L Thompson @param[in] mem_type Memory type of the array being passed 303ea61e9acSJeremy L Thompson @param[in] copy_mode Copy mode for the array 304ca94c3ddSJeremy L Thompson @param[in] array Array to be used, or `NULL` with @ref CEED_COPY_VALUES to have the library allocate 3050436c2adSjeremylt 3060436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 3070436c2adSjeremylt 3087a982d89SJeremy L. Thompson @ref User 3090436c2adSjeremylt **/ 3102b730f8bSJeremy L Thompson int CeedVectorSetArray(CeedVector vec, CeedMemType mem_type, CeedCopyMode copy_mode, CeedScalar *array) { 3111203703bSJeremy L Thompson CeedSize length; 3120436c2adSjeremylt 313*9bc66399SJeremy L Thompson CeedCheck(vec->SetArray, CeedVectorReturnCeed(vec), CEED_ERROR_UNSUPPORTED, "Backend does not support VectorSetArray"); 314*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 315*9bc66399SJeremy L Thompson "Cannot grant CeedVector array access, the access lock is already in use"); 316*9bc66399SJeremy L Thompson CeedCheck(vec->num_readers == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot grant CeedVector array access, a process has read access"); 3171203703bSJeremy L Thompson 3181203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 3191203703bSJeremy L Thompson if (length > 0) CeedCall(vec->SetArray(vec, mem_type, copy_mode, array)); 3200436c2adSjeremylt vec->state += 2; 321e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 3220436c2adSjeremylt } 3230436c2adSjeremylt 3240436c2adSjeremylt /** 325ca94c3ddSJeremy L Thompson @brief Set the `CeedVector` to a constant value 3260436c2adSjeremylt 327ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` 3280436c2adSjeremylt @param[in] value Value to be used 3290436c2adSjeremylt 3300436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 3310436c2adSjeremylt 3327a982d89SJeremy L. Thompson @ref User 3330436c2adSjeremylt **/ 3340436c2adSjeremylt int CeedVectorSetValue(CeedVector vec, CeedScalar value) { 335*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 336*9bc66399SJeremy L Thompson "Cannot grant CeedVector array access, the access lock is already in use"); 337*9bc66399SJeremy L Thompson CeedCheck(vec->num_readers == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot grant CeedVector array access, a process has read access"); 3380436c2adSjeremylt 3390436c2adSjeremylt if (vec->SetValue) { 3402b730f8bSJeremy L Thompson CeedCall(vec->SetValue(vec, value)); 3412d4e0605SJeremy L Thompson vec->state += 2; 3420436c2adSjeremylt } else { 3431203703bSJeremy L Thompson CeedSize length; 3440436c2adSjeremylt CeedScalar *array; 3451203703bSJeremy L Thompson 3462b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayWrite(vec, CEED_MEM_HOST, &array)); 3471203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 3481203703bSJeremy L Thompson for (CeedSize i = 0; i < length; i++) array[i] = value; 3492b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(vec, &array)); 3500436c2adSjeremylt } 351e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 3520436c2adSjeremylt } 3530436c2adSjeremylt 3540436c2adSjeremylt /** 3550b8f3c4eSJeremy L Thompson @brief Set a portion of a `CeedVector` to a constant value. 3560b8f3c4eSJeremy L Thompson 3570b8f3c4eSJeremy L Thompson Note: The `CeedVector` must already have valid data set via @ref CeedVectorSetArray() or similar. 3580b8f3c4eSJeremy L Thompson 3590b8f3c4eSJeremy L Thompson @param[in,out] vec `CeedVector` 3600b8f3c4eSJeremy L Thompson @param[in] start First index to set 3610b8f3c4eSJeremy L Thompson @param[in] step Stride between indices to set 3620b8f3c4eSJeremy L Thompson @param[in] value Value to be used 3630b8f3c4eSJeremy L Thompson 3640b8f3c4eSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 3650b8f3c4eSJeremy L Thompson 3660b8f3c4eSJeremy L Thompson @ref User 3670b8f3c4eSJeremy L Thompson **/ 3680b8f3c4eSJeremy L Thompson int CeedVectorSetValueStrided(CeedVector vec, CeedSize start, CeedInt step, CeedScalar value) { 369*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 370*9bc66399SJeremy L Thompson "Cannot grant CeedVector array access, the access lock is already in use"); 371*9bc66399SJeremy L Thompson CeedCheck(vec->num_readers == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot grant CeedVector array access, a process has read access"); 3720b8f3c4eSJeremy L Thompson 3730b8f3c4eSJeremy L Thompson if (vec->SetValueStrided) { 3740b8f3c4eSJeremy L Thompson CeedCall(vec->SetValueStrided(vec, start, step, value)); 3752d4e0605SJeremy L Thompson vec->state += 2; 3760b8f3c4eSJeremy L Thompson } else { 3770b8f3c4eSJeremy L Thompson CeedSize length; 3780b8f3c4eSJeremy L Thompson CeedScalar *array; 3790b8f3c4eSJeremy L Thompson 3800b8f3c4eSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 381bb03490dSJeremy L Thompson if (length <= 0) return CEED_ERROR_SUCCESS; 382bb03490dSJeremy L Thompson CeedCall(CeedVectorGetArray(vec, CEED_MEM_HOST, &array)); 3830b8f3c4eSJeremy L Thompson for (CeedSize i = start; i < length; i += step) array[i] = value; 3840b8f3c4eSJeremy L Thompson CeedCall(CeedVectorRestoreArray(vec, &array)); 3850b8f3c4eSJeremy L Thompson } 3860b8f3c4eSJeremy L Thompson return CEED_ERROR_SUCCESS; 3870b8f3c4eSJeremy L Thompson } 3880b8f3c4eSJeremy L Thompson 3890b8f3c4eSJeremy L Thompson /** 390ca94c3ddSJeremy L Thompson @brief Sync the `CeedVector` to a specified `mem_type`. 3914385fb7fSSebastian Grimberg 392ea61e9acSJeremy L Thompson This function is used to force synchronization of arrays set with @ref CeedVectorSetArray(). 393ca94c3ddSJeremy L Thompson If the requested `mem_type` is already synchronized, this function results in a no-op. 3940436c2adSjeremylt 395ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` 396ca94c3ddSJeremy L Thompson @param[in] mem_type @ref CeedMemType to be synced 3970436c2adSjeremylt 3980436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 3990436c2adSjeremylt 4007a982d89SJeremy L. Thompson @ref User 4010436c2adSjeremylt **/ 402d1d35e2fSjeremylt int CeedVectorSyncArray(CeedVector vec, CeedMemType mem_type) { 4031203703bSJeremy L Thompson CeedSize length; 4041203703bSJeremy L Thompson 4056e536b99SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot sync CeedVector, the access lock is already in use"); 4060436c2adSjeremylt 407b0976d5aSZach Atkins // Don't sync empty array 4081203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 4091203703bSJeremy L Thompson if (length == 0) return CEED_ERROR_SUCCESS; 410b0976d5aSZach Atkins 4110436c2adSjeremylt if (vec->SyncArray) { 4122b730f8bSJeremy L Thompson CeedCall(vec->SyncArray(vec, mem_type)); 4130436c2adSjeremylt } else { 4140436c2adSjeremylt const CeedScalar *array; 4151203703bSJeremy L Thompson 4162b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(vec, mem_type, &array)); 4172b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(vec, &array)); 4180436c2adSjeremylt } 419e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 4200436c2adSjeremylt } 4210436c2adSjeremylt 4220436c2adSjeremylt /** 423ca94c3ddSJeremy L Thompson @brief Take ownership of the `CeedVector` array set by @ref CeedVectorSetArray() with @ref CEED_USE_POINTER and remove the array from the `CeedVector`. 4244385fb7fSSebastian Grimberg 4259c774eddSJeremy L Thompson The caller is responsible for managing and freeing the array. 426ea61e9acSJeremy L Thompson This function will error if @ref CeedVectorSetArray() was not previously called with @ref CEED_USE_POINTER for the corresponding mem_type. 4276a6c615bSJeremy L Thompson 428ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` 429ea61e9acSJeremy L Thompson @param[in] mem_type Memory type on which to take the array. 430ea61e9acSJeremy L Thompson If the backend uses a different memory type, this will perform a copy. 431ca94c3ddSJeremy L Thompson @param[out] array Array on memory type `mem_type`, or `NULL` if array pointer is not required 4326a6c615bSJeremy L Thompson 4336a6c615bSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 4346a6c615bSJeremy L Thompson 4356a6c615bSJeremy L Thompson @ref User 4366a6c615bSJeremy L Thompson **/ 4372b730f8bSJeremy L Thompson int CeedVectorTakeArray(CeedVector vec, CeedMemType mem_type, CeedScalar **array) { 4381203703bSJeremy L Thompson CeedSize length; 4391c66c397SJeremy L Thompson CeedScalar *temp_array = NULL; 4401c66c397SJeremy L Thompson 441*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot take CeedVector array, the access lock is already in use"); 442*9bc66399SJeremy L Thompson CeedCheck(vec->num_readers == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot take CeedVector array, a process has read access"); 4436a6c615bSJeremy L Thompson 4441203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 4451203703bSJeremy L Thompson if (length > 0) { 4461203703bSJeremy L Thompson bool has_borrowed_array_of_type = true, has_valid_array = true; 4471203703bSJeremy L Thompson 4482b730f8bSJeremy L Thompson CeedCall(CeedVectorHasBorrowedArrayOfType(vec, mem_type, &has_borrowed_array_of_type)); 449*9bc66399SJeremy L Thompson CeedCheck(has_borrowed_array_of_type, CeedVectorReturnCeed(vec), CEED_ERROR_BACKEND, 450*9bc66399SJeremy L Thompson "CeedVector has no borrowed %s array, must set array with CeedVectorSetArray", CeedMemTypes[mem_type]); 4519c774eddSJeremy L Thompson 4522b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(vec, &has_valid_array)); 453*9bc66399SJeremy L Thompson CeedCheck(has_valid_array, CeedVectorReturnCeed(vec), CEED_ERROR_BACKEND, 4542b730f8bSJeremy L Thompson "CeedVector has no valid data to take, must set data with CeedVectorSetValue or CeedVectorSetArray"); 4559c774eddSJeremy L Thompson 4562b730f8bSJeremy L Thompson CeedCall(vec->TakeArray(vec, mem_type, &temp_array)); 45750c643e1SJed Brown } 458d1d35e2fSjeremylt if (array) (*array) = temp_array; 459e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 4606a6c615bSJeremy L Thompson } 4616a6c615bSJeremy L Thompson 4626a6c615bSJeremy L Thompson /** 463ca94c3ddSJeremy L Thompson @brief Get read/write access to a `CeedVector` via the specified memory type. 4644385fb7fSSebastian Grimberg 465b3cf021fSjeremylt Restore access with @ref CeedVectorRestoreArray(). 4660436c2adSjeremylt 467ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to access 468ea61e9acSJeremy L Thompson @param[in] mem_type Memory type on which to access the array. 469ea61e9acSJeremy L Thompson If the backend uses a different memory type, this will perform a copy. 470ca94c3ddSJeremy L Thompson @param[out] array Array on memory type `mem_type` 4710436c2adSjeremylt 472ca94c3ddSJeremy L Thompson @note The @ref CeedVectorGetArray() and @ref CeedVectorRestoreArray() functions provide access to array pointers in the desired memory space. 473ca94c3ddSJeremy L Thompson Pairing get/restore allows the `CeedVector` to track access, thus knowing if norms or other operations may need to be recomputed. 4740436c2adSjeremylt 4750436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 4760436c2adSjeremylt 4777a982d89SJeremy L. Thompson @ref User 4780436c2adSjeremylt **/ 4792b730f8bSJeremy L Thompson int CeedVectorGetArray(CeedVector vec, CeedMemType mem_type, CeedScalar **array) { 4801203703bSJeremy L Thompson CeedSize length; 4810436c2adSjeremylt 482*9bc66399SJeremy L Thompson CeedCheck(vec->GetArray, CeedVectorReturnCeed(vec), CEED_ERROR_UNSUPPORTED, "Backend does not support GetArray"); 483*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 484*9bc66399SJeremy L Thompson "Cannot grant CeedVector array access, the access lock is already in use"); 485*9bc66399SJeremy L Thompson CeedCheck(vec->num_readers == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot grant CeedVector array access, a process has read access"); 4861203703bSJeremy L Thompson 4871203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 4881203703bSJeremy L Thompson if (length > 0) { 4899c774eddSJeremy L Thompson bool has_valid_array = true; 490b0976d5aSZach Atkins 4912b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(vec, &has_valid_array)); 492*9bc66399SJeremy L Thompson CeedCheck(has_valid_array, CeedVectorReturnCeed(vec), CEED_ERROR_BACKEND, 4932b730f8bSJeremy L Thompson "CeedVector has no valid data to read, must set data with CeedVectorSetValue or CeedVectorSetArray"); 4949c774eddSJeremy L Thompson 4952b730f8bSJeremy L Thompson CeedCall(vec->GetArray(vec, mem_type, array)); 496b0976d5aSZach Atkins } else { 497b0976d5aSZach Atkins *array = NULL; 498b0976d5aSZach Atkins } 49928bfd0b7SJeremy L Thompson vec->state++; 500e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 5010436c2adSjeremylt } 5020436c2adSjeremylt 5030436c2adSjeremylt /** 504ca94c3ddSJeremy L Thompson @brief Get read-only access to a `CeedVector` via the specified memory type. 5054385fb7fSSebastian Grimberg 506b3cf021fSjeremylt Restore access with @ref CeedVectorRestoreArrayRead(). 5070436c2adSjeremylt 508ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to access 509ca94c3ddSJeremy L Thompson @param[in] mem_type Memory type on which to access the array. 510ca94c3ddSJeremy L Thompson If the backend uses a different memory type, this will perform a copy (possibly cached). 511ca94c3ddSJeremy L Thompson @param[out] array Array on memory type `mem_type` 5120436c2adSjeremylt 5130436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 5140436c2adSjeremylt 5157a982d89SJeremy L. Thompson @ref User 5160436c2adSjeremylt **/ 5172b730f8bSJeremy L Thompson int CeedVectorGetArrayRead(CeedVector vec, CeedMemType mem_type, const CeedScalar **array) { 5181203703bSJeremy L Thompson CeedSize length; 5190436c2adSjeremylt 520*9bc66399SJeremy L Thompson CeedCheck(vec->GetArrayRead, CeedVectorReturnCeed(vec), CEED_ERROR_UNSUPPORTED, "Backend does not support GetArrayRead"); 521*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 522*9bc66399SJeremy L Thompson "Cannot grant CeedVector read-only array access, the access lock is already in use"); 5231203703bSJeremy L Thompson 5241203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 5251203703bSJeremy L Thompson if (length > 0) { 5269c774eddSJeremy L Thompson bool has_valid_array = true; 527b0976d5aSZach Atkins 5282b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(vec, &has_valid_array)); 529*9bc66399SJeremy L Thompson CeedCheck(has_valid_array, CeedVectorReturnCeed(vec), CEED_ERROR_BACKEND, 5302b730f8bSJeremy L Thompson "CeedVector has no valid data to read, must set data with CeedVectorSetValue or CeedVectorSetArray"); 5319c774eddSJeremy L Thompson 5322b730f8bSJeremy L Thompson CeedCall(vec->GetArrayRead(vec, mem_type, array)); 53350c643e1SJed Brown } else { 53450c643e1SJed Brown *array = NULL; 53550c643e1SJed Brown } 536d1d35e2fSjeremylt vec->num_readers++; 537e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 5380436c2adSjeremylt } 5390436c2adSjeremylt 5400436c2adSjeremylt /** 541ca94c3ddSJeremy L Thompson @brief Get write access to a `CeedVector` via the specified memory type. 5424385fb7fSSebastian Grimberg 543ea61e9acSJeremy L Thompson Restore access with @ref CeedVectorRestoreArray(). 544ea61e9acSJeremy L Thompson All old values should be assumed to be invalid. 5459c774eddSJeremy L Thompson 546ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to access 547ea61e9acSJeremy L Thompson @param[in] mem_type Memory type on which to access the array. 548ca94c3ddSJeremy L Thompson @param[out] array Array on memory type `mem_type` 5499c774eddSJeremy L Thompson 5509c774eddSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 5519c774eddSJeremy L Thompson 5529c774eddSJeremy L Thompson @ref User 5539c774eddSJeremy L Thompson **/ 5542b730f8bSJeremy L Thompson int CeedVectorGetArrayWrite(CeedVector vec, CeedMemType mem_type, CeedScalar **array) { 5551203703bSJeremy L Thompson CeedSize length; 5569c774eddSJeremy L Thompson 557*9bc66399SJeremy L Thompson CeedCheck(vec->GetArrayWrite, CeedVectorReturnCeed(vec), CEED_ERROR_UNSUPPORTED, "Backend does not support CeedVectorGetArrayWrite"); 558*9bc66399SJeremy L Thompson CeedCheck(vec->state % 2 == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 559*9bc66399SJeremy L Thompson "Cannot grant CeedVector array access, the access lock is already in use"); 560*9bc66399SJeremy L Thompson CeedCheck(vec->num_readers == 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot grant CeedVector array access, a process has read access"); 5611203703bSJeremy L Thompson 5621203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 5631203703bSJeremy L Thompson if (length > 0) { 5642b730f8bSJeremy L Thompson CeedCall(vec->GetArrayWrite(vec, mem_type, array)); 565b0976d5aSZach Atkins } else { 566b0976d5aSZach Atkins *array = NULL; 567b0976d5aSZach Atkins } 56828bfd0b7SJeremy L Thompson vec->state++; 5699c774eddSJeremy L Thompson return CEED_ERROR_SUCCESS; 5709c774eddSJeremy L Thompson } 5719c774eddSJeremy L Thompson 5729c774eddSJeremy L Thompson /** 573ea61e9acSJeremy L Thompson @brief Restore an array obtained using @ref CeedVectorGetArray() or @ref CeedVectorGetArrayWrite() 5740436c2adSjeremylt 575ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to restore 576ea61e9acSJeremy L Thompson @param[in,out] array Array of vector data 5770436c2adSjeremylt 5780436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 5790436c2adSjeremylt 5807a982d89SJeremy L. Thompson @ref User 5810436c2adSjeremylt **/ 5820436c2adSjeremylt int CeedVectorRestoreArray(CeedVector vec, CeedScalar **array) { 5831203703bSJeremy L Thompson CeedSize length; 5841203703bSJeremy L Thompson 5856e536b99SJeremy L Thompson CeedCheck(vec->state % 2 == 1, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, "Cannot restore CeedVector array access, access was not granted"); 5861203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 5871203703bSJeremy L Thompson if (length > 0 && vec->RestoreArray) CeedCall(vec->RestoreArray(vec)); 5880436c2adSjeremylt *array = NULL; 58928bfd0b7SJeremy L Thompson vec->state++; 590e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 5910436c2adSjeremylt } 5920436c2adSjeremylt 5930436c2adSjeremylt /** 594b3cf021fSjeremylt @brief Restore an array obtained using @ref CeedVectorGetArrayRead() 5950436c2adSjeremylt 596ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to restore 597ea61e9acSJeremy L Thompson @param[in,out] array Array of vector data 5980436c2adSjeremylt 5990436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 6000436c2adSjeremylt 6017a982d89SJeremy L. Thompson @ref User 6020436c2adSjeremylt **/ 6030436c2adSjeremylt int CeedVectorRestoreArrayRead(CeedVector vec, const CeedScalar **array) { 6041203703bSJeremy L Thompson CeedSize length; 6051203703bSJeremy L Thompson 6066e536b99SJeremy L Thompson CeedCheck(vec->num_readers > 0, CeedVectorReturnCeed(vec), CEED_ERROR_ACCESS, 6076e536b99SJeremy L Thompson "Cannot restore CeedVector array read access, access was not granted"); 60875a19770SJeremy L Thompson vec->num_readers--; 6091203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 6101203703bSJeremy L Thompson if (length > 0 && vec->num_readers == 0 && vec->RestoreArrayRead) CeedCall(vec->RestoreArrayRead(vec)); 6110436c2adSjeremylt *array = NULL; 612e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 6130436c2adSjeremylt } 6140436c2adSjeremylt 6150436c2adSjeremylt /** 616ca94c3ddSJeremy L Thompson @brief Get the norm of a `CeedVector`. 617171f8ca9Sjeremylt 618ca94c3ddSJeremy L Thompson Note: This operation is local to the `CeedVector`. 619ca94c3ddSJeremy L Thompson This function will likely not provide the desired results for the norm of the libCEED portion of a parallel vector or a `CeedVector` with duplicated or hanging nodes. 620547d9b97Sjeremylt 621ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to retrieve maximum value 622ea61e9acSJeremy L Thompson @param[in] norm_type Norm type @ref CEED_NORM_1, @ref CEED_NORM_2, or @ref CEED_NORM_MAX 623547d9b97Sjeremylt @param[out] norm Variable to store norm value 624547d9b97Sjeremylt 625547d9b97Sjeremylt @return An error code: 0 - success, otherwise - failure 626547d9b97Sjeremylt 6277a982d89SJeremy L. Thompson @ref User 628547d9b97Sjeremylt **/ 629d1d35e2fSjeremylt int CeedVectorNorm(CeedVector vec, CeedNormType norm_type, CeedScalar *norm) { 6309c774eddSJeremy L Thompson bool has_valid_array = true; 6311203703bSJeremy L Thompson CeedSize length; 6321203703bSJeremy L Thompson 6332b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(vec, &has_valid_array)); 6346e536b99SJeremy L Thompson CeedCheck(has_valid_array, CeedVectorReturnCeed(vec), CEED_ERROR_BACKEND, 6352b730f8bSJeremy L Thompson "CeedVector has no valid data to compute norm, must set data with CeedVectorSetValue or CeedVectorSetArray"); 6369c774eddSJeremy L Thompson 6371203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 6381203703bSJeremy L Thompson if (length == 0) { 639b0976d5aSZach Atkins *norm = 0; 640b0976d5aSZach Atkins return CEED_ERROR_SUCCESS; 641b0976d5aSZach Atkins } 642b0976d5aSZach Atkins 643547d9b97Sjeremylt // Backend impl for GPU, if added 644547d9b97Sjeremylt if (vec->Norm) { 6452b730f8bSJeremy L Thompson CeedCall(vec->Norm(vec, norm_type, norm)); 646e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 647547d9b97Sjeremylt } 648547d9b97Sjeremylt 649547d9b97Sjeremylt const CeedScalar *array; 6502b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(vec, CEED_MEM_HOST, &array)); 651b0976d5aSZach Atkins assert(array); 652547d9b97Sjeremylt 653547d9b97Sjeremylt *norm = 0.; 654d1d35e2fSjeremylt switch (norm_type) { 655547d9b97Sjeremylt case CEED_NORM_1: 6561203703bSJeremy L Thompson for (CeedSize i = 0; i < length; i++) { 657547d9b97Sjeremylt *norm += fabs(array[i]); 658547d9b97Sjeremylt } 659547d9b97Sjeremylt break; 660547d9b97Sjeremylt case CEED_NORM_2: 6611203703bSJeremy L Thompson for (CeedSize i = 0; i < length; i++) { 662547d9b97Sjeremylt *norm += fabs(array[i]) * fabs(array[i]); 663547d9b97Sjeremylt } 664547d9b97Sjeremylt break; 665547d9b97Sjeremylt case CEED_NORM_MAX: 6661203703bSJeremy L Thompson for (CeedSize i = 0; i < length; i++) { 667d1d35e2fSjeremylt const CeedScalar abs_v_i = fabs(array[i]); 668d1d35e2fSjeremylt *norm = *norm > abs_v_i ? *norm : abs_v_i; 669547d9b97Sjeremylt } 670547d9b97Sjeremylt } 6712b730f8bSJeremy L Thompson if (norm_type == CEED_NORM_2) *norm = sqrt(*norm); 672547d9b97Sjeremylt 6732b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(vec, &array)); 674e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 675547d9b97Sjeremylt } 676547d9b97Sjeremylt 677547d9b97Sjeremylt /** 678ca94c3ddSJeremy L Thompson @brief Compute `x = alpha x` 679e0dd3b27Sjeremylt 680ca94c3ddSJeremy L Thompson @param[in,out] x `CeedVector` for scaling 68196b902e2Sjeremylt @param[in] alpha scaling factor 682e0dd3b27Sjeremylt 683e0dd3b27Sjeremylt @return An error code: 0 - success, otherwise - failure 684e0dd3b27Sjeremylt 685e0dd3b27Sjeremylt @ref User 686e0dd3b27Sjeremylt **/ 687e0dd3b27Sjeremylt int CeedVectorScale(CeedVector x, CeedScalar alpha) { 6889c774eddSJeremy L Thompson bool has_valid_array = true; 6891203703bSJeremy L Thompson CeedSize length; 6901203703bSJeremy L Thompson CeedScalar *x_array = NULL; 6911c66c397SJeremy L Thompson 6922b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(x, &has_valid_array)); 6936e536b99SJeremy L Thompson CeedCheck(has_valid_array, CeedVectorReturnCeed(x), CEED_ERROR_BACKEND, 6942b730f8bSJeremy L Thompson "CeedVector has no valid data to scale, must set data with CeedVectorSetValue or CeedVectorSetArray"); 6959c774eddSJeremy L Thompson 696b0976d5aSZach Atkins // Return early for empty vector 6971203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(x, &length)); 6981203703bSJeremy L Thompson if (length == 0) return CEED_ERROR_SUCCESS; 699b0976d5aSZach Atkins 700e0dd3b27Sjeremylt // Backend implementation 7012b730f8bSJeremy L Thompson if (x->Scale) return x->Scale(x, alpha); 702e0dd3b27Sjeremylt 703e0dd3b27Sjeremylt // Default implementation 704567d69a2SJeremy L Thompson CeedCall(CeedVectorGetArray(x, CEED_MEM_HOST, &x_array)); 705b0976d5aSZach Atkins assert(x_array); 7061203703bSJeremy L Thompson for (CeedSize i = 0; i < length; i++) x_array[i] *= alpha; 7072b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(x, &x_array)); 708e0dd3b27Sjeremylt return CEED_ERROR_SUCCESS; 709e0dd3b27Sjeremylt } 710e0dd3b27Sjeremylt 711e0dd3b27Sjeremylt /** 712ca94c3ddSJeremy L Thompson @brief Compute `y = alpha x + y` 7130f7fd0f8Sjeremylt 714ca94c3ddSJeremy L Thompson @param[in,out] y target `CeedVector` for sum 71596b902e2Sjeremylt @param[in] alpha scaling factor 716ca94c3ddSJeremy L Thompson @param[in] x second `CeedVector`, must be different than ``y` 7170f7fd0f8Sjeremylt 7180f7fd0f8Sjeremylt @return An error code: 0 - success, otherwise - failure 7190f7fd0f8Sjeremylt 7200f7fd0f8Sjeremylt @ref User 7210f7fd0f8Sjeremylt **/ 7220f7fd0f8Sjeremylt int CeedVectorAXPY(CeedVector y, CeedScalar alpha, CeedVector x) { 7231203703bSJeremy L Thompson bool has_valid_array_x = true, has_valid_array_y = true; 7241203703bSJeremy L Thompson CeedSize length_x, length_y; 72573380422SJeremy L Thompson CeedScalar *y_array = NULL; 72673380422SJeremy L Thompson CeedScalar const *x_array = NULL; 7270f7fd0f8Sjeremylt 7281203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(y, &length_y)); 7291203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(x, &length_x)); 730*9bc66399SJeremy L Thompson CeedCheck(length_x == length_y, CeedVectorReturnCeed(y), CEED_ERROR_UNSUPPORTED, 7313f08121cSJeremy L Thompson "Cannot add vector of different lengths." 7323f08121cSJeremy L Thompson " x length: %" CeedSize_FMT " y length: %" CeedSize_FMT, 7333f08121cSJeremy L Thompson length_x, length_y); 734*9bc66399SJeremy L Thompson CeedCheck(x != y, CeedVectorReturnCeed(y), CEED_ERROR_UNSUPPORTED, "Cannot use same vector for x and y in CeedVectorAXPY"); 7350f7fd0f8Sjeremylt 7362b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(x, &has_valid_array_x)); 737*9bc66399SJeremy L Thompson CeedCheck(has_valid_array_x, CeedVectorReturnCeed(y), CEED_ERROR_BACKEND, 7386574a04fSJeremy L Thompson "CeedVector x has no valid data, must set data with CeedVectorSetValue or CeedVectorSetArray"); 7392b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(y, &has_valid_array_y)); 740*9bc66399SJeremy L Thompson CeedCheck(has_valid_array_y, CeedVectorReturnCeed(y), CEED_ERROR_BACKEND, 7416574a04fSJeremy L Thompson "CeedVector y has no valid data, must set data with CeedVectorSetValue or CeedVectorSetArray"); 7429c774eddSJeremy L Thompson 743*9bc66399SJeremy L Thompson { 744*9bc66399SJeremy L Thompson Ceed ceed_x, ceed_y, ceed_parent_x, ceed_parent_y; 745*9bc66399SJeremy L Thompson 746*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(y, &ceed_y)); 747*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(x, &ceed_x)); 748*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_x, &ceed_parent_x)); 749*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_y, &ceed_parent_y)); 750*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_x)); 751*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_y)); 752*9bc66399SJeremy L Thompson CeedCheck(ceed_parent_x == ceed_parent_y, CeedVectorReturnCeed(y), CEED_ERROR_INCOMPATIBLE, 753*9bc66399SJeremy L Thompson "Vectors x and y must be created by the same Ceed context"); 754*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_x)); 755*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_y)); 756*9bc66399SJeremy L Thompson } 7572d04630dSjeremylt 758b0976d5aSZach Atkins // Return early for empty vectors 7591203703bSJeremy L Thompson if (length_y == 0) return CEED_ERROR_SUCCESS; 760b0976d5aSZach Atkins 7610f7fd0f8Sjeremylt // Backend implementation 762eaf62fffSJeremy L Thompson if (y->AXPY) { 7632b730f8bSJeremy L Thompson CeedCall(y->AXPY(y, alpha, x)); 764eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 765eaf62fffSJeremy L Thompson } 7660f7fd0f8Sjeremylt 7670f7fd0f8Sjeremylt // Default implementation 768567d69a2SJeremy L Thompson CeedCall(CeedVectorGetArray(y, CEED_MEM_HOST, &y_array)); 7692b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(x, CEED_MEM_HOST, &x_array)); 7700f7fd0f8Sjeremylt 7712b730f8bSJeremy L Thompson assert(x_array); 7722b730f8bSJeremy L Thompson assert(y_array); 77373380422SJeremy L Thompson 7741203703bSJeremy L Thompson for (CeedSize i = 0; i < length_y; i++) y_array[i] += alpha * x_array[i]; 7750f7fd0f8Sjeremylt 7762b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(y, &y_array)); 7772b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(x, &x_array)); 7780f7fd0f8Sjeremylt return CEED_ERROR_SUCCESS; 7790f7fd0f8Sjeremylt } 7800f7fd0f8Sjeremylt 7810f7fd0f8Sjeremylt /** 782ca94c3ddSJeremy L Thompson @brief Compute `y = alpha x + beta y` 7835fb68f37SKaren (Ren) Stengel 784ca94c3ddSJeremy L Thompson @param[in,out] y target `CeedVector` for sum 7855fb68f37SKaren (Ren) Stengel @param[in] alpha first scaling factor 7865fb68f37SKaren (Ren) Stengel @param[in] beta second scaling factor 787ca94c3ddSJeremy L Thompson @param[in] x second `CeedVector`, must be different than `y` 7885fb68f37SKaren (Ren) Stengel 7895fb68f37SKaren (Ren) Stengel @return An error code: 0 - success, otherwise - failure 7905fb68f37SKaren (Ren) Stengel 7915fb68f37SKaren (Ren) Stengel @ref User 7925fb68f37SKaren (Ren) Stengel **/ 7935fb68f37SKaren (Ren) Stengel int CeedVectorAXPBY(CeedVector y, CeedScalar alpha, CeedScalar beta, CeedVector x) { 7941203703bSJeremy L Thompson bool has_valid_array_x = true, has_valid_array_y = true; 7951203703bSJeremy L Thompson CeedSize length_x, length_y; 7965fb68f37SKaren (Ren) Stengel CeedScalar *y_array = NULL; 7975fb68f37SKaren (Ren) Stengel CeedScalar const *x_array = NULL; 7981203703bSJeremy L Thompson 7991203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(y, &length_y)); 8001203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(x, &length_x)); 801*9bc66399SJeremy L Thompson CeedCheck(length_x == length_y, CeedVectorReturnCeed(y), CEED_ERROR_UNSUPPORTED, 8023f08121cSJeremy L Thompson "Cannot add vector of different lengths." 8033f08121cSJeremy L Thompson " x length: %" CeedSize_FMT " y length: %" CeedSize_FMT, 8043f08121cSJeremy L Thompson length_x, length_y); 805*9bc66399SJeremy L Thompson CeedCheck(x != y, CeedVectorReturnCeed(y), CEED_ERROR_UNSUPPORTED, "Cannot use same vector for x and y in CeedVectorAXPBY"); 8065fb68f37SKaren (Ren) Stengel 8075fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorHasValidArray(x, &has_valid_array_x)); 808*9bc66399SJeremy L Thompson CeedCheck(has_valid_array_x, CeedVectorReturnCeed(y), CEED_ERROR_BACKEND, 8096574a04fSJeremy L Thompson "CeedVector x has no valid data, must set data with CeedVectorSetValue or CeedVectorSetArray"); 8105fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorHasValidArray(y, &has_valid_array_y)); 811*9bc66399SJeremy L Thompson CeedCheck(has_valid_array_y, CeedVectorReturnCeed(y), CEED_ERROR_BACKEND, 8126574a04fSJeremy L Thompson "CeedVector y has no valid data, must set data with CeedVectorSetValue or CeedVectorSetArray"); 8135fb68f37SKaren (Ren) Stengel 814*9bc66399SJeremy L Thompson { 815*9bc66399SJeremy L Thompson Ceed ceed_x, ceed_y, ceed_parent_x, ceed_parent_y; 816*9bc66399SJeremy L Thompson 817*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(y, &ceed_y)); 818*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(x, &ceed_x)); 819*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_x, &ceed_parent_x)); 820*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_y, &ceed_parent_y)); 821*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_x)); 822*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_y)); 823*9bc66399SJeremy L Thompson CeedCheck(ceed_parent_x == ceed_parent_y, CeedVectorReturnCeed(y), CEED_ERROR_INCOMPATIBLE, 824*9bc66399SJeremy L Thompson "Vectors x and y must be created by the same Ceed context"); 825*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_x)); 826*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_y)); 827*9bc66399SJeremy L Thompson } 8285fb68f37SKaren (Ren) Stengel 829b0976d5aSZach Atkins // Return early for empty vectors 8301203703bSJeremy L Thompson if (length_y == 0) return CEED_ERROR_SUCCESS; 831b0976d5aSZach Atkins 8325fb68f37SKaren (Ren) Stengel // Backend implementation 8335fb68f37SKaren (Ren) Stengel if (y->AXPBY) { 8345fb68f37SKaren (Ren) Stengel CeedCall(y->AXPBY(y, alpha, beta, x)); 8355fb68f37SKaren (Ren) Stengel return CEED_ERROR_SUCCESS; 8365fb68f37SKaren (Ren) Stengel } 8375fb68f37SKaren (Ren) Stengel 8385fb68f37SKaren (Ren) Stengel // Default implementation 8395fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorGetArray(y, CEED_MEM_HOST, &y_array)); 8405fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorGetArrayRead(x, CEED_MEM_HOST, &x_array)); 8415fb68f37SKaren (Ren) Stengel 8425fb68f37SKaren (Ren) Stengel assert(x_array); 8435fb68f37SKaren (Ren) Stengel assert(y_array); 8445fb68f37SKaren (Ren) Stengel 8451203703bSJeremy L Thompson for (CeedSize i = 0; i < length_y; i++) y_array[i] = alpha * x_array[i] + beta * y_array[i]; 8465fb68f37SKaren (Ren) Stengel 8475fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorRestoreArray(y, &y_array)); 8485fb68f37SKaren (Ren) Stengel CeedCall(CeedVectorRestoreArrayRead(x, &x_array)); 8495fb68f37SKaren (Ren) Stengel return CEED_ERROR_SUCCESS; 8505fb68f37SKaren (Ren) Stengel } 8515fb68f37SKaren (Ren) Stengel 8525fb68f37SKaren (Ren) Stengel /** 853ca94c3ddSJeremy L Thompson @brief Compute the pointwise multiplication \f$w = x .* y\f$. 8544385fb7fSSebastian Grimberg 855ca94c3ddSJeremy L Thompson Any subset of `x`, `y`, and `w` may be the same `CeedVector`. 8560f7fd0f8Sjeremylt 857ca94c3ddSJeremy L Thompson @param[out] w target `CeedVector` for the product 858ca94c3ddSJeremy L Thompson @param[in] x first `CeedVector` for product 859ca94c3ddSJeremy L Thompson @param[in] y second `CeedVector` for the product 8600f7fd0f8Sjeremylt 8610f7fd0f8Sjeremylt @return An error code: 0 - success, otherwise - failure 8620f7fd0f8Sjeremylt 8630f7fd0f8Sjeremylt @ref User 8640f7fd0f8Sjeremylt **/ 8650f7fd0f8Sjeremylt int CeedVectorPointwiseMult(CeedVector w, CeedVector x, CeedVector y) { 8661203703bSJeremy L Thompson bool has_valid_array_x = true, has_valid_array_y = true; 86773380422SJeremy L Thompson CeedScalar *w_array = NULL; 86873380422SJeremy L Thompson CeedScalar const *x_array = NULL, *y_array = NULL; 8691203703bSJeremy L Thompson CeedSize length_w, length_x, length_y; 8700f7fd0f8Sjeremylt 8711203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(w, &length_w)); 8721203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(x, &length_x)); 8731203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(y, &length_y)); 874*9bc66399SJeremy L Thompson CeedCheck(length_x >= length_w && length_y >= length_w, CeedVectorReturnCeed(w), CEED_ERROR_UNSUPPORTED, 875ccad5cb9SJeremy L Thompson "Cannot pointwise multiply vectors of incompatible lengths." 876ccad5cb9SJeremy L Thompson " w length: %" CeedSize_FMT " x length: %" CeedSize_FMT " y length: %" CeedSize_FMT, 877ccad5cb9SJeremy L Thompson length_w, length_x, length_y); 8780f7fd0f8Sjeremylt 879*9bc66399SJeremy L Thompson { 880*9bc66399SJeremy L Thompson Ceed ceed_w, ceed_x, ceed_y, ceed_parent_w, ceed_parent_x, ceed_parent_y; 881*9bc66399SJeremy L Thompson 882*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(w, &ceed_w)); 883*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(x, &ceed_x)); 884*9bc66399SJeremy L Thompson CeedCall(CeedVectorGetCeed(y, &ceed_y)); 885*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_w, &ceed_parent_w)); 886*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_x, &ceed_parent_x)); 887*9bc66399SJeremy L Thompson CeedCall(CeedGetParent(ceed_y, &ceed_parent_y)); 888*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_w)); 889*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_x)); 890*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_y)); 891*9bc66399SJeremy L Thompson CeedCheck(ceed_parent_w == ceed_parent_x && ceed_parent_w == ceed_parent_y, CeedVectorReturnCeed(w), CEED_ERROR_INCOMPATIBLE, 8926574a04fSJeremy L Thompson "Vectors w, x, and y must be created by the same Ceed context"); 893*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_w)); 894*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_x)); 895*9bc66399SJeremy L Thompson CeedCall(CeedDestroy(&ceed_parent_y)); 896*9bc66399SJeremy L Thompson } 8972d04630dSjeremylt 8982b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(x, &has_valid_array_x)); 899*9bc66399SJeremy L Thompson CeedCheck(has_valid_array_x, CeedVectorReturnCeed(w), CEED_ERROR_BACKEND, 9006574a04fSJeremy L Thompson "CeedVector x has no valid data, must set data with CeedVectorSetValue or CeedVectorSetArray"); 9012b730f8bSJeremy L Thompson CeedCall(CeedVectorHasValidArray(y, &has_valid_array_y)); 902*9bc66399SJeremy L Thompson CeedCheck(has_valid_array_y, CeedVectorReturnCeed(w), CEED_ERROR_BACKEND, 9036574a04fSJeremy L Thompson "CeedVector y has no valid data, must set data with CeedVectorSetValue or CeedVectorSetArray"); 9049c774eddSJeremy L Thompson 905b0976d5aSZach Atkins // Return early for empty vectors 9061203703bSJeremy L Thompson if (length_w == 0) return CEED_ERROR_SUCCESS; 907b0976d5aSZach Atkins 9080f7fd0f8Sjeremylt // Backend implementation 909eaf62fffSJeremy L Thompson if (w->PointwiseMult) { 9102b730f8bSJeremy L Thompson CeedCall(w->PointwiseMult(w, x, y)); 911eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 912eaf62fffSJeremy L Thompson } 9130f7fd0f8Sjeremylt 9140f7fd0f8Sjeremylt // Default implementation 915b0976d5aSZach Atkins if (x == w || y == w) { 916b0976d5aSZach Atkins CeedCall(CeedVectorGetArray(w, CEED_MEM_HOST, &w_array)); 917b0976d5aSZach Atkins } else { 918b0976d5aSZach Atkins CeedCall(CeedVectorGetArrayWrite(w, CEED_MEM_HOST, &w_array)); 919b0976d5aSZach Atkins } 9200f7fd0f8Sjeremylt if (x != w) { 9212b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(x, CEED_MEM_HOST, &x_array)); 9220f7fd0f8Sjeremylt } else { 9230f7fd0f8Sjeremylt x_array = w_array; 9240f7fd0f8Sjeremylt } 9250f7fd0f8Sjeremylt if (y != w && y != x) { 9262b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(y, CEED_MEM_HOST, &y_array)); 927c6d796c6SJeremy L Thompson } else if (y == x) { 9280f7fd0f8Sjeremylt y_array = x_array; 929b0976d5aSZach Atkins } else if (y == w) { 930c6d796c6SJeremy L Thompson y_array = w_array; 9310f7fd0f8Sjeremylt } 9320f7fd0f8Sjeremylt 9332b730f8bSJeremy L Thompson assert(w_array); 9342b730f8bSJeremy L Thompson assert(x_array); 9352b730f8bSJeremy L Thompson assert(y_array); 93673380422SJeremy L Thompson 9371203703bSJeremy L Thompson for (CeedSize i = 0; i < length_w; i++) w_array[i] = x_array[i] * y_array[i]; 9380f7fd0f8Sjeremylt 9392b730f8bSJeremy L Thompson if (y != w && y != x) CeedCall(CeedVectorRestoreArrayRead(y, &y_array)); 9402b730f8bSJeremy L Thompson if (x != w) CeedCall(CeedVectorRestoreArrayRead(x, &x_array)); 9412b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(w, &w_array)); 9420f7fd0f8Sjeremylt return CEED_ERROR_SUCCESS; 9430f7fd0f8Sjeremylt } 9440f7fd0f8Sjeremylt 9450f7fd0f8Sjeremylt /** 946ca94c3ddSJeremy L Thompson @brief Take the reciprocal of a `CeedVector`. 947d99fa3c5SJeremy L Thompson 948ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to take reciprocal 949d99fa3c5SJeremy L Thompson 950d99fa3c5SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 951d99fa3c5SJeremy L Thompson 952d99fa3c5SJeremy L Thompson @ref User 953d99fa3c5SJeremy L Thompson **/ 954d99fa3c5SJeremy L Thompson int CeedVectorReciprocal(CeedVector vec) { 9559c774eddSJeremy L Thompson bool has_valid_array = true; 9561203703bSJeremy L Thompson CeedSize length; 9571203703bSJeremy L Thompson CeedScalar *array; 9582b730f8bSJeremy L Thompson 9591c66c397SJeremy L Thompson CeedCall(CeedVectorHasValidArray(vec, &has_valid_array)); 960*9bc66399SJeremy L Thompson CeedCheck(has_valid_array, CeedVectorReturnCeed(vec), CEED_ERROR_BACKEND, 9612b730f8bSJeremy L Thompson "CeedVector has no valid data to compute reciprocal, must set data with CeedVectorSetValue or CeedVectorSetArray"); 9629c774eddSJeremy L Thompson 963d99fa3c5SJeremy L Thompson // Check if vector data set 964*9bc66399SJeremy L Thompson CeedCheck(vec->state > 0, CeedVectorReturnCeed(vec), CEED_ERROR_INCOMPLETE, "CeedVector must have data set to take reciprocal"); 965d99fa3c5SJeremy L Thompson 966b0976d5aSZach Atkins // Return early for empty vector 9671203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 9681203703bSJeremy L Thompson if (length == 0) return CEED_ERROR_SUCCESS; 969b0976d5aSZach Atkins 970d99fa3c5SJeremy L Thompson // Backend impl for GPU, if added 971d99fa3c5SJeremy L Thompson if (vec->Reciprocal) { 9722b730f8bSJeremy L Thompson CeedCall(vec->Reciprocal(vec)); 973e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 974d99fa3c5SJeremy L Thompson } 975d99fa3c5SJeremy L Thompson 976567d69a2SJeremy L Thompson CeedCall(CeedVectorGetArray(vec, CEED_MEM_HOST, &array)); 9771203703bSJeremy L Thompson for (CeedSize i = 0; i < length; i++) { 9782b730f8bSJeremy L Thompson if (fabs(array[i]) > CEED_EPSILON) array[i] = 1. / array[i]; 9792b730f8bSJeremy L Thompson } 980d99fa3c5SJeremy L Thompson 9812b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(vec, &array)); 982e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 983d99fa3c5SJeremy L Thompson } 984d99fa3c5SJeremy L Thompson 985d99fa3c5SJeremy L Thompson /** 986ca94c3ddSJeremy L Thompson @brief View a `CeedVector` 9870436c2adSjeremylt 988acb2c48cSJeremy L Thompson Note: It is safe to use any unsigned values for `start` or `stop` and any nonzero integer for `step`. 989ca94c3ddSJeremy L Thompson Any portion of the provided range that is outside the range of valid indices for the `CeedVector` will be ignored. 990acb2c48cSJeremy L Thompson 991ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to view 992ca94c3ddSJeremy L Thompson @param[in] start Index of first `CeedVector` entry to view 993ca94c3ddSJeremy L Thompson @param[in] stop Index of last `CeedVector` entry to view 994ca94c3ddSJeremy L Thompson @param[in] step Step between `CeedVector` entries to view 995acb2c48cSJeremy L Thompson @param[in] fp_fmt Printing format 996acb2c48cSJeremy L Thompson @param[in] stream Filestream to write to 997acb2c48cSJeremy L Thompson 998acb2c48cSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 999acb2c48cSJeremy L Thompson 1000acb2c48cSJeremy L Thompson @ref User 1001acb2c48cSJeremy L Thompson **/ 1002acb2c48cSJeremy L Thompson int CeedVectorViewRange(CeedVector vec, CeedSize start, CeedSize stop, CeedInt step, const char *fp_fmt, FILE *stream) { 1003acb2c48cSJeremy L Thompson char fmt[1024]; 10041203703bSJeremy L Thompson CeedSize length; 10051203703bSJeremy L Thompson const CeedScalar *x; 1006acb2c48cSJeremy L Thompson 10076e536b99SJeremy L Thompson CeedCheck(step != 0, CeedVectorReturnCeed(vec), CEED_ERROR_MINOR, "View range 'step' must be nonzero"); 1008acb2c48cSJeremy L Thompson 10091203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 10101203703bSJeremy L Thompson fprintf(stream, "CeedVector length %" CeedSize_FMT "\n", length); 10111203703bSJeremy L Thompson if (start != 0 || stop != length || step != 1) { 10121203703bSJeremy L Thompson fprintf(stream, " start: %" CeedSize_FMT "\n stop: %" CeedSize_FMT "\n step: %" CeedInt_FMT "\n", start, stop, step); 1013acb2c48cSJeremy L Thompson } 10141203703bSJeremy L Thompson if (start > length) start = length; 10151203703bSJeremy L Thompson if (stop > length) stop = length; 1016acb2c48cSJeremy L Thompson 1017acb2c48cSJeremy L Thompson snprintf(fmt, sizeof fmt, " %s\n", fp_fmt ? fp_fmt : "%g"); 1018acb2c48cSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(vec, CEED_MEM_HOST, &x)); 1019b94338b9SJed Brown for (CeedSize i = start; step > 0 ? (i < stop) : (i > stop); i += step) fprintf(stream, fmt, x[i]); 1020acb2c48cSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(vec, &x)); 10211203703bSJeremy L Thompson if (stop != length) fprintf(stream, " ...\n"); 1022acb2c48cSJeremy L Thompson return CEED_ERROR_SUCCESS; 1023acb2c48cSJeremy L Thompson } 1024acb2c48cSJeremy L Thompson 1025acb2c48cSJeremy L Thompson /** 1026ca94c3ddSJeremy L Thompson @brief View a `CeedVector` 1027acb2c48cSJeremy L Thompson 1028ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to view 1029d1d35e2fSjeremylt @param[in] fp_fmt Printing format 10300a0da059Sjeremylt @param[in] stream Filestream to write to 10310a0da059Sjeremylt 10320436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 10330436c2adSjeremylt 10347a982d89SJeremy L. Thompson @ref User 10350436c2adSjeremylt **/ 1036d1d35e2fSjeremylt int CeedVectorView(CeedVector vec, const char *fp_fmt, FILE *stream) { 10371203703bSJeremy L Thompson CeedSize length; 10381203703bSJeremy L Thompson 10391203703bSJeremy L Thompson CeedCall(CeedVectorGetLength(vec, &length)); 10401203703bSJeremy L Thompson CeedCall(CeedVectorViewRange(vec, 0, length, 1, fp_fmt, stream)); 1041e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 10420436c2adSjeremylt } 10430436c2adSjeremylt 10440436c2adSjeremylt /** 1045ca94c3ddSJeremy L Thompson @brief Get the `Ceed` associated with a `CeedVector` 1046b7c9bbdaSJeremy L Thompson 1047ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to retrieve state 1048ca94c3ddSJeremy L Thompson @param[out] ceed Variable to store `Ceed` 1049b7c9bbdaSJeremy L Thompson 1050b7c9bbdaSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1051b7c9bbdaSJeremy L Thompson 1052b7c9bbdaSJeremy L Thompson @ref Advanced 1053b7c9bbdaSJeremy L Thompson **/ 1054b7c9bbdaSJeremy L Thompson int CeedVectorGetCeed(CeedVector vec, Ceed *ceed) { 1055*9bc66399SJeremy L Thompson *ceed = NULL; 1056*9bc66399SJeremy L Thompson CeedCall(CeedReferenceCopy(CeedVectorReturnCeed(vec), ceed)); 1057b7c9bbdaSJeremy L Thompson return CEED_ERROR_SUCCESS; 1058b7c9bbdaSJeremy L Thompson } 1059b7c9bbdaSJeremy L Thompson 1060b7c9bbdaSJeremy L Thompson /** 10616e536b99SJeremy L Thompson @brief Return the `Ceed` associated with a `CeedVector` 10626e536b99SJeremy L Thompson 10636e536b99SJeremy L Thompson @param[in] vec `CeedVector` to retrieve state 10646e536b99SJeremy L Thompson 10656e536b99SJeremy L Thompson @return `Ceed` associated with the `vec` 10666e536b99SJeremy L Thompson 10676e536b99SJeremy L Thompson @ref Advanced 10686e536b99SJeremy L Thompson **/ 10696e536b99SJeremy L Thompson Ceed CeedVectorReturnCeed(CeedVector vec) { return vec->ceed; } 10706e536b99SJeremy L Thompson 10716e536b99SJeremy L Thompson /** 1072ca94c3ddSJeremy L Thompson @brief Get the length of a `CeedVector` 10730436c2adSjeremylt 1074ca94c3ddSJeremy L Thompson @param[in] vec `CeedVector` to retrieve length 10757a982d89SJeremy L. Thompson @param[out] length Variable to store length 10760436c2adSjeremylt 10770436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 10780436c2adSjeremylt 10797a982d89SJeremy L. Thompson @ref User 10800436c2adSjeremylt **/ 10811f9221feSJeremy L Thompson int CeedVectorGetLength(CeedVector vec, CeedSize *length) { 10827a982d89SJeremy L. Thompson *length = vec->length; 1083e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 10840436c2adSjeremylt } 10850436c2adSjeremylt 10860436c2adSjeremylt /** 1087ca94c3ddSJeremy L Thompson @brief Destroy a `CeedVector` 10880436c2adSjeremylt 1089ca94c3ddSJeremy L Thompson @param[in,out] vec `CeedVector` to destroy 10900436c2adSjeremylt 10910436c2adSjeremylt @return An error code: 0 - success, otherwise - failure 10920436c2adSjeremylt 10937a982d89SJeremy L. Thompson @ref User 10940436c2adSjeremylt **/ 10950436c2adSjeremylt int CeedVectorDestroy(CeedVector *vec) { 10967425e127SJeremy L Thompson if (!*vec || *vec == CEED_VECTOR_ACTIVE || *vec == CEED_VECTOR_NONE || --(*vec)->ref_count > 0) { 1097ad6481ceSJeremy L Thompson *vec = NULL; 1098ad6481ceSJeremy L Thompson return CEED_ERROR_SUCCESS; 1099ad6481ceSJeremy L Thompson } 11006574a04fSJeremy L Thompson CeedCheck((*vec)->state % 2 == 0, (*vec)->ceed, CEED_ERROR_ACCESS, "Cannot destroy CeedVector, the writable access lock is in use"); 11016574a04fSJeremy L Thompson CeedCheck((*vec)->num_readers == 0, (*vec)->ceed, CEED_ERROR_ACCESS, "Cannot destroy CeedVector, a process has read access"); 11020436c2adSjeremylt 11032b730f8bSJeremy L Thompson if ((*vec)->Destroy) CeedCall((*vec)->Destroy(*vec)); 11042b730f8bSJeremy L Thompson 11052b730f8bSJeremy L Thompson CeedCall(CeedDestroy(&(*vec)->ceed)); 11062b730f8bSJeremy L Thompson CeedCall(CeedFree(vec)); 1107e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 11080436c2adSjeremylt } 11090436c2adSjeremylt 11100436c2adSjeremylt /// @} 1111