| d23a61d1 | 19-Sep-2023 |
James Wright <james@jameswright.xyz> |
Merge pull request #1338 from CEED/jrwrigh/sycl_sgs_dd
fluids: Use explicit array size for `new_bounds` |
| 0382e78d | 18-Sep-2023 |
James Wright <james@jameswright.xyz> |
fluids: Use explicit array size for new_bounds
- `new_bounds` was previously changed to remove the explicit array size declaration because Sycl's online compiler didn't like it. - Trying to do
fluids: Use explicit array size for new_bounds
- `new_bounds` was previously changed to remove the explicit array size declaration because Sycl's online compiler didn't like it. - Trying to do a direct cast results in: ``` /home/jrwrigh/software/libCEED/examples/fluids/problems/../qfunctions/sgs_dd_model.h:67:39: error: used type 'const CeedScalar[6][2]' (aka 'const double[6][2]') where arithmetic or pointer type is required const CeedScalar new_bounds[6][2] = (const CeedScalar[6][2]) & sgsdd_ctx->data[sgsdd_ctx->offsets.out_scaling]; ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` - This represents the best compromise; can't do a direct pointer cast (requiring more compiler work to be efficient and obfuscating what's happening), but can at least keep the explicit array sizes for `new_bounds`
show more ...
|
| 0dab8ee6 | 16-Sep-2023 |
James Wright <james@jameswright.xyz> |
Merge pull request #1337 from CEED/jrwrigh/sycl_local_name
fluids: Change variable name "local" to appease ocloc |
| 4e5897fc | 15-Sep-2023 |
James Wright <james@jameswright.xyz> |
fluids: Change variable name "local" to appease ocloc
- For reasons only God knows, ocloc (online compiler for OpenCL for Intel hardware) doesn't approve of the variable name `local`. It returns
fluids: Change variable name "local" to appease ocloc
- For reasons only God knows, ocloc (online compiler for OpenCL for Intel hardware) doesn't approve of the variable name `local`. It returns: ``` $ build/fluids-navierstokes -ceed /gpu/sycl/ref -options_file examples/fluids/tests-output/stats_test.yaml -test_type solver -compare_final_state_atol 1e-11 -compare_final_state_filename examples/fluids/tests-output/fluids-navierstokes-turb-spanstats-stats.bin Command was: ocloc -q -spv_only -device pvc -64 -options "-cl-std=CL3.0 -Dint32_t=int" -file main.cl [0]PETSC ERROR: --------------------- Error Message -------------------------------------------------------------- [0]PETSC ERROR: Error in external library [0]PETSC ERROR: /home/jczhang/libCEED/backends/sycl/ceed-sycl-compile.sycl.cpp:73 in CeedJitCompileSource_Sycl(): ocloc reported compilation errors: { Build failed with error code: -11 } ```
show more ...
|
| fa42c6fe | 15-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - add transpose AtPoints test |
| 0930e4e7 | 14-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - add tests for AtPoints |
| 05fa913c | 13-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - allow restriction to ordered points evec |
| 2c7e7413 | 12-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - intial CPU implimentation |
| 3ac8f562 | 12-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
rstr - add interface functions for CEED_RESTRICTION_POINTS |
| c7697240 | 15-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1335 from CEED/sjg/backend-consistency-continued
Fix some missing backend consistency from #1315 |
| bd83916c | 15-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix missed is_pointblock -> is_point_block |
| 397164e9 | 15-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Small update for cuda-shared/hip-shared consistency |
| 311fcb10 | 15-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Continue empty line removal before return CEED_ERROR_SUCCESS |
| 7758292f | 14-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix another unintended change from #1315 |
| 363aefef | 14-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Revert typo from #1315 |
| cfa13e89 | 14-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Enforce consistent pointer alignment with clang-format |
| 672b0f2a | 14-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix some missing consistency issues from #1315 |
| 67ee7fbf | 14-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1336 from CEED/sjg/minor-test-include
Tiny fix to include order for test `t406` |
| e38d11ba | 07-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix include order for test |
| e585a77d | 13-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1334 from CEED/jeremy/missing-call
Add Missing CeedCallBackends |
| 1cc2c60d | 13-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
ref - variable name consistency |
| 5d10938b | 13-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
ref - add missing CeedCallBackend |
| 21f16bf6 | 13-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1315 from CEED/jeremy/queep
Backend Consistency Fixes |
| 09b5d125 | 13-Sep-2023 |
James Wright <james@jameswright.xyz> |
fluids: Fix Sycl related arguments
- These arguments work fine in CUDA and HIP, but OpenCL (specifically, the online compiler used for Sunspot) isn't happy with these minor changes in pointer de
fluids: Fix Sycl related arguments
- These arguments work fine in CUDA and HIP, but OpenCL (specifically, the online compiler used for Sunspot) isn't happy with these minor changes in pointer definitions.
show more ...
|
| edb2538e | 01-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
style - spell rstr consistently |