Screen
is a terminal multiplexer program.
Screen allows programs to continue running after a remote user disconnects.
If a remote connection is lost unintentionally, screen may not allow reconnection by default by the usual
screen -list
screen -r <id>
normally allows reconnecting to a remote session after logging off.
When a connection is lost before disconnecting from screen, you may need the “-x” option:
screen -x <id>
A downside of screen is the difficulty scrolling back in history.
Screen is a terminal multiplexer, and some prefer
tmux
over screen.
Another option is using
nohup.
CMake FetchContent and ExternalProject can download subprojects, or the subproject can be included in the top-level project via
Git submodule
or
monorepo approach.
This subproject hierarchy works like any other CMake project from the command line or IDEs like Visual Studio.
Meson subproject and CMake ExternalProject keep project namespaces separate.
Meson subproject and CMake FetchContent download and configure all projects at configure time.
CMake FetchContent comingles the CMake project namespaces.
FetchContent can be easier to use than ExternalProject if you control both software projects’ CMake scripts.
If you don’t control the “child” project, it may be better to use ExternalProject instead of FetchContent.
For these examples, suppose we have a top-level project “parent” and a “child” project containing a library that is desired in parent.
Suppose the child project can be built standalone (by itself) but also may be used directly from other CMake projects.
project
CMAKE_SOURCE_DIR
CMAKE_BINARY_DIR
PROJECT_SOURCE_DIR
parent
~/foo
~/foo/build
~/foo
child: standalone
~/bar
~/bar/build
~/bar
child: CMake ExternalProject
~/foo/build/child-prefix/src/child
~/foo/build/child-prefix/src/child-build
~/foo/build/child-prefix/src/child
child: CMake FetchContent
~/foo
~/foo/build
~/foo/build/_deps/child-src
FetchContent populates content from the other project at configure time.
FetchContent populates the “child” project with default values from the “parent” project.
Varibles set in the “child” project generally do not affect the “parent” project unless specifically used from the “parent” project.
CMAKE_ARGS and CMAKE_CACHE_ARGS have no effect with FetchContent_Declare.
To set a value in the child project from the parent project, set variables in the parent project.
From “parent” project CMakeLists.txt:
cmake_minimum_required(VERSION3.14)project(parentFortran)include(FetchContent)FetchContent_Declare(childURLhttps://github.invalid/username/archive.tar.bz2)# it's much better to use a specific Git revision or Git tag for reproducibility
FetchContent_MakeAvailable(child)# your program
add_executable(myprogmain.f90)target_link_libraries(myprogmylib) #mylibisfrom"child"
FetchContent_MakeAvailable
make “child” code configure, populating variables and targets as if it were part of “parent” CMake project.
The child project CMAKE_BINARY_DIR and CMAKE_SOURCE_DIR will be those of parent project.
That is, if the parent project is in ~/foo and the build directory is ~/foo/build, then the child project in ~/childcode called by FetchContent will also have CMAKE_SOURCE_DIR of ~/foo and CMAKE_BINARY_DIR of ~/foo/build.
So be careful in the child project when using such variables that may be defined by parent projects.
This is why projects that aren’t specifically designed to work together may be better joined by ExternalProject.
A typical technique within the child project that can operate standalone is to refer to CMAKE_CURRENT_SOURCE_DIR instead of CMAKE_SOURCE_DIR as the latter will break when used from FetchContent.
IMPORTANT:
When using if() clauses to determine execution of FetchContent, ensure that the FetchContent stanzas are executed each time CMake is run. Otherwise, the FetchContent targets may fail to be available or may have missing target properties on CMake rebuild.
ExternalProject populates content from the other project at build time.
This means the other project’s libraries are not visible until the parent project is built.
Since ExternalProject does not combine the project namespaces, ExternalProject may be necessary if you don’t control the other projects.
ExternalProject may not activate without the add_dependencies() statement.
Upon cmake --build of the parent project, ExternalProject downloads, configures and builds.
From “parent” project CMakeLists.txt:
project(parentLANGUAGESFortran)include(GNUInstallDirs)include(ExternalProject)set(mylist"a;b;c")# passing a list to external project is best done via CMAKE_CACHE_ARGS
# CMAKE_ARGS doesn't work correctly for lists
set_property(DIRECTORYPROPERTYEP_UPDATE_DISCONNECTEDtrue)# don't repeatedly build ExternalProjects.
# dir prop scope: CMake_current_source_dir and subdirectories
ExternalProject_Add(CHILDGIT_REPOSITORYhttps://github.com/scivision/cmake-externalprojectGIT_TAGmainCMAKE_ARGS--install-prefix=${CMAKE_INSTALL_PREFIX}
CMAKE_CACHE_ARGS-Dmyvar:STRING=${mylist} # need variable type e.g. STRING for this
CONFIGURE_HANDLED_BY_BUILDONBUILD_BYPRODUCTS ${CMAKE_INSTALL_FULL_LIBDIR}/${CMAKE_STATIC_LIBRARY_PREFIX}timestwo${CMAKE_STATIC_LIBRARY_SUFFIX}
)add_library(timestwoSTATICIMPORTEDGLOBAL)set_property(TARGETtimestwoPROPERTYIMPORTED_LOCATION ${CMAKE_INSTALL_FULL_LIBDIR}/${CMAKE_STATIC_LIBRARY_PREFIX}timestwo${CMAKE_STATIC_LIBRARY_SUFFIX})set_property(TARGETtimestwoPROPERTYINTERFACE_INCLUDE_DIRECTORIES ${CMAKE_INSTALL_FULL_INCLUDEDIR})add_executable(test_timestwotest_timestwo.f90) # your program
add_dependencies(test_timestwoCHILD) # externalproject won't download without this
target_link_libraries(test_timestwoPRIVATEtimestwo)
make ExternalProject always update and build first
CONFIGURE_HANDLED_BY_BUILD ON
tells CMake not to reconfigure each build, unless the build system requests configure
BUILD_BYPRODUCTS
necessary for Ninja to avoid “ninja: error: “lib” needed by “target”, missing and no known rule to make it”. Note how we can’t use BINARY_DIR since it’s populated by ExternalProject_Get_Property()
The imported library ext is used in the “parent” project just like any other library.
WSJT-X puts QSO ADIF files in its log directory.
Once a Trusted QSL (TSQL) profile is created and authenticated by ARRL LoTW, and the TQSL application is installed, our
LoTW upload
Python script can be used to upload the QSO ADIF files to LoTW via TQSL in a second or two.
The ARRL Logbook of the World (LoTW) provides a weekly list of recent users in
CSV format.
This list is used by other services such as PSK Reporter to show recent users of LoTW with an “L” icon.
Note that the callsign is for the current holder of the LoTW account, not necessarily the original licensee.
If you have a test failure and want to diagnose, first copy this file somewhere else to work with it, in case it gets overwritten.
This file is usually quite useful with nice formatting even when running many tests in parallel.
A simple list of all “failed” and “not run” tests are in:
“Not run” tests are those that have FIXTURES_REQUIRED that itself failed or did not run.
At the time of running CTest, one can also use the -O option like:
ctest -O test.log
“ctest -O” only logs what is printed to the screen during the CTest run.
If the “ctest -V” option wasn’t used, the extra useful information as in LastTest.log such as the command line run will be missing in “test.log”.
Rename Python conda environment “old” to “new” by copying the environment and deleting the original environment:
conda create --name new --clone old
conda remove --name old --all
Each Miniconda/Anaconda environment consumes disk space.
One may wish to delete old, unused conda environments to free disk space.
Conda environment disk size can be checked by listing all environment paths
Linux
control groups
can limit any user’s CPU, memory or other resource usage.
Control groups can be used to test program behavior under constrained resources.
Control groups v2 are recommended in general with a new architecture and better performance.
By default with
RHEL 8,
we need to enable cgroups-v2.
Although setting up persistent control groups is straightforward, it’s possible to create a transient commend line initiated control group using
systemd-run.
This use can be good for diagnosing program behavior–for example, does a program’s memory use blow up then come down faster than “top” might show.
An example use constraining a program to 2 GB of RAM is like:
The flag --user did not work–we needed to type the sudo password despite running as the standard user.
Another way to set hardware/firmware-based limits for more intensive benchmarks is to simply use a device with less RAM, edit BIOS/UEFI to only enable a limited amount of RAM, or on Linux use
GRUBkernel mem= parameter to constrain the available RAM.
Ensure the swap/paging file is turned off.
Sometimes files are accidentally spilled into a Git repo.
Before the files are git add, they are “untracked”.
If the files match a pattern in “.gitignore” they will not appear in Git operations generally.
Untracked, non-ignored files show with:
git status --porcelain
like
?? oops.txt
where the question marks indicate the file is untracked.
These files may be interactively removed (deleted) by:
git clean -id
When there are files spilled in multiple directories, the “filter by pattern” options lets you select files to retain.
The updated display shows files to be deleted.
When satisfied, select “Clean”–there’s no recovering those files trivially, so be sure of your choices.
To clean files matching patterns in .gitignore, add the “-x” option like:
git clean -xid
That’s useful for cleaning up in source builds, perhaps from Makefile or LaTeX.
Variables that are larger than a few kilobytes often should be put into heap memory instead of stack memory.
In Fortran, compilers typically put variables with parameter property into stack memory.
A good practice in Fortran is to put non-trivial arrays intended to be static/unchanged memory into an
allocatable,
protected
array.
Example:
modulefooimplicitnone(type,external)integer,allocatable,protected::x(:,:)containssubroutineinit()allocate(x(1024,256))!! in real life, this would be some constant data array or
!! expression filling the "constant" array x.
x=1endsubroutineinitendmoduleprogrambarusefoo,only:init,xcallinit()if(any(x/=1))error stop"did not init"endprogram
In this example, x is approximately a one megabyte variable, assuming kind=int32.
Even though the compiler may not warn if we instead declare this variable as parameter, it can cause segfaults and other seemingly random runtime errors.
Normally we would use a derived type instead of a bare module, but we did it here for simplicity.
If the variable to be allocated is about one gigabyte or larger, sometimes special techniques are needed, even on systems with very large amounts of RAM including HPC.
This is especially the case on Windows systems.
The error messages one may get upon allocating large variables in Fortran include:
Error allocating <N> bytes: Not enough space
Segmentation fault (core dumped)
For Windows, a peculiar limitation is that each variable (including allocatable) cannot exceed the virtual paging file size, even if the Windows computer has large amount of RAM that isn’t being exceeded.
The paging file size may be inspected and set under: Control Panel | System and Security | System | Advanced system settings | Advanced | Performance | Settings | Advanced | Virtual memory
In general, the compiler may need to have the memory model flag set for the situation.
This flag has a set of implications.
As noted by Hector Martin and others, early macOS 11 appeared to have a possible kernel bug causing excessive SSD write wear whenever the SSD was in the “on” state.
One can use “smartmontools” to check SSD write history:
Note that SSD on state time can be much less than powered-on time.
This is especially the case for the Mac mini, which may sit powered on but unused for the majority of the time by some users.
Thankfully as noted by Jonas Ribe, Hector Martin and others, macOS 11.4 appears to have fixed this SSD write bug.
Thankfully we haven’t see the 100+ TB of excess SSD wear pre-11.4 as Jonas did.
We saw less than 5TB of excess wear on mostly idle, continuously powered on Minis.