Hello World from GitHub
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Architecture dependent makefile | |
| # (automatically generated by install_galahad) | |
| VERSION = mac64.osx.ifr | |
| CUTESTVERSION = | |
| # Basic system commands | |
| CP = /bin/cp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| empty initial commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| |__/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" }, | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| coin-or-tools/coinor/symphony | |
| βββ coin-or-tools/coinor/cgl | |
| β βββ coin-or-tools/coinor/clp | |
| β βββ ampl-mp | |
| β βββ coin-or-tools/coinor/coinutils | |
| β β βββ coin-or-tools/coinor/coin_data_netlib | |
| β β βββ coin-or-tools/coinor/coin_data_sample | |
| β β βββ coin-or-tools/coinor/glpk@448 | |
| β β β βββ gmp | |
| β β βββ doxygen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ljemai@Mitacs.ca |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| julia> jprod_rev(F, rand(5), rand(5)) | |
| ERROR: DimensionMismatch("arrays could not be broadcast to a common size; got a dimension with lengths 5 and 6") | |
| Stacktrace: | |
| [1] _bcs1 | |
| @ ./broadcast.jl:501 [inlined] | |
| [2] _bcs | |
| @ ./broadcast.jl:495 [inlined] | |
| [3] broadcast_shape(::Tuple{Base.OneTo{Int64}}, ::Tuple{Base.OneTo{Int64}}) | |
| @ Base.Broadcast ./broadcast.jl:489 | |
| [4] combine_axes |