Skip to content

Instantly share code, notes, and snippets.

View dpo's full-sized avatar
💭
Hacking

Dominique dpo

💭
Hacking
View GitHub Profile
fileExtensionPreference:
.tex: 1
.sty: 2
.cls: 3
.bib: 4
# default file extension of backup file (if -w switch is active)
# for example, if your .tex file is called
# myfile.tex
# and you specify the backupExtension as BACKUP.bak then your
[99/365] Compiling Fortran object libgalahad_lapack.dylib.p/src_lapack_lapack.f.o
../src/lapack/lapack.f:60380:68:
60380 | INTEGER FUNCTION IPARMQ( ISPEC, NAME, OPTS, N, ILO, IHI, LWORK )
| 1
Warning: Unused dummy argument 'lwork' at (1) [-Wunused-dummy-argument]
../src/lapack/lapack.f:60380:51:
60380 | INTEGER FUNCTION IPARMQ( ISPEC, NAME, OPTS, N, ILO, IHI, LWORK )
| 1
Compiling NumericSubtree icpc: remark #10441: The Intel(R) C++ Compiler Classic (ICC) is deprecated and will be removed from product release in the second half of 2023. The Intel(R) oneAPI DPC++/C++ Compiler (ICX) is the recommended compiler moving forward. Please transition to use this compiler. Use '-diag-disable=10441' to disable this message.
In file included from ./ssids/cpu/factor.hxx(24),
from ssids/cpu/NumericSubtree.hxx(10),
from NumericSubtree.cxx(6):
./ssids/cpu/kernels/assemble.hxx(207): warning #3180: unrecognized OpenMP #pragma
#pragma omp taskgroup
^
In file included from ./ssids/cpu/factor.hxx(24),
from ssids/cpu/NumericSubtree.hxx(10),
~/dev/ralna/GALAHAD/src/ssids gh-action *1 ?10 ❯ make -f $GALAHAD/makefiles/mac64.osx.ifr NumericSubtree.o 09:53:29
Compiling NumericSubtree /bin/mkdir -p /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/ssids
/bin/ln -fs /Users/dpo/dev/ralna/GALAHAD/src/ssids/cpu /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/ssids/.
/bin/mkdir -p /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/hw_topology
/bin/cp ../spral/guess_topology.hxx /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/hw_topology/
/usr/bin/sed -f /Users/dpo/dev/ralna/GALAHAD/seds/have_hwloc_undef.sed ../spral/config.h > /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/config1.h
/usr/bin/sed -f /Users/dpo/dev/ralna/GALAHAD/seds/have_getcpu_undef.sed /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/config1.h > /Users/dpo/dev/ralna/GALAHAD/objects/mac64.osx.ifr/double/config.h
/bin/cp ../spral/compat.hxx /Users/dpo/dev/ralna/GALAHAD/obj
# Architecture dependent makefile
# (automatically generated by install_galahad)
VERSION = mac64.osx.ifr
CUTESTVERSION =
# Basic system commands
CP = /bin/cp
@dpo
dpo / README.md
Last active September 30, 2022 05:22
Artifacts

Hello World from GitHub

@dpo
dpo / LimitedLDLFactorizations_Benchmarks
Created September 24, 2022 16:01
LimitedLDLFactorizations.jl Benchmarks
empty initial commit
dpo:tmp $ julia +rc
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.8.0-rc4 (2022-08-08)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
@dpo
dpo / svd.jl
Last active June 20, 2022 14:52
# Extensions of LinearAlgebra's svd functionality
# with U, S and VT preallocated.
#
# D. Orban, based on Julia's stdlib
# 6/19/22
# Example use:
# julia> A = rand(8, 10)
# julia> F = psvd_workspace(A, full=false, alg=LinearAlgebra.QRIteration()) # preallocates
# julia> B = copy(A); # optional; the next line destroys B
class GccAT7 < Formula
desc "GNU compiler collection"
homepage "https://gcc.gnu.org/"
url "https://ftp.gnu.org/gnu/gcc/gcc-7.5.0/gcc-7.5.0.tar.xz"
mirror "https://ftpmirror.gnu.org/gcc/gcc-7.5.0/gcc-7.5.0.tar.xz"
sha256 "b81946e7f01f90528a1f7352ab08cc602b9ccc05d4e44da4bd501c5a189ee661"
license all_of: [
"LGPL-2.1-or-later",
"GPL-3.0-or-later" => { with: "GCC-exception-3.1" },
]