-
Updated
Dec 12, 2021 - QML
plasma
Here are 297 public repositories matching this topic...
-
Updated
Oct 12, 2021 - JavaScript
Summary
I find that often that windows do not resize correctly in response to windows being moved to another workspace or closed, or sometimes that newly opened windows do not snap into the existing layout and the current master remains as taking up the full screen with the new window appearing correctly tiled. This can be fixed by moving the master to a different workspace and back, but is a
-
Updated
Dec 9, 2021 - C++
-
Updated
Jul 8, 2018 - JavaScript
-
Updated
Oct 24, 2021 - Python
I want to check that the solar calculations are working but I can't find any logs. Where are they located? Can I run this via a terminal and see the logs there?
-
Updated
Aug 19, 2021
-
Updated
Dec 19, 2021 - C++
-
Updated
Nov 4, 2021
-
Updated
Nov 21, 2020 - C++
-
Updated
Dec 20, 2021 - Mercury
The boosted-frame example script (in the documentation) uses the direct laser injection.
However, when modifying parameters, users can easily be in a situation where the laser does not fit in the box.
For this reason, it might be better to use the laser antenna in the default example.
🎯 Todo
For the parsers in io.hitran, only groups 1-2 and classes 1, 4-6 are implemented.
Notably, group 6 and class 3 are missing which are needed for linear diatomic molecules.
But this is surprising to me as I never had issues with this... am I missing something?
How they should be parsed can be found in the HITRAN2004 paper:
https://hitran.org/media/refs/HITRAN-2004.pdf
tables 3 & 4
FFTW Cleanup
We should consider here and in HiPACE (Hi-PACE/hipace#542) to use:
fftw_cleanupfftw_cleanup_threads(with OpenMP)
When shutting down the simulation with FFTW.
Refs.:
-
Updated
Dec 16, 2021 - C++
Is your feature request related to a problem? Please describe.
It can be necessary to pull out the instrument sampling rate from data. In principle this should be easy but data gaps, instrument turn on/off, etc. can potentially frustrate this determination.
Describe the solution you'd like
It may be necessary for calc_res in utils.time to support different averaging methods for da
-
Updated
Feb 18, 2019
-
Updated
Jul 4, 2020 - Dart
-
Updated
Dec 17, 2021 - Julia
FAIL src/generation.test.ts
● Test suite failed to run
src/generation.test.ts:173:53 - error TS2345: Argument of type '{ white: string; whitePrimary: string; whiteSecondary: string; whiteTertiary: string; black: string; blackPrimary: string; blackSecondary: string; blackTertiary: string; transparent: string; ... 23 more ...; buttonFocused: string; }' is not assignable to paramet
Improve this page
Add a description, image, and links to the plasma topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the plasma topic, visit your repo's landing page and select "manage topics."
Hi,
one could and should experiment with Interprocedural optimization (IPO) also known as link-time optimization (LTO), especially on the host side for smaller binaries and potentially faster code. It's supported by GCC, Clang, and ICC, among others, which are our typical go-to compilers in HPC.
It's very easy to implement as well