Skip to content

Commit

Permalink
wrokflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
peekxc committed Dec 4, 2023
1 parent befd396 commit 8289858
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
export PATH="/usr/local/opt/llvm/bin:$PATH"
export LDFLAGS="-L/usr/local/opt/llvm/lib"
export CPPFLAGS="-I/usr/local/opt/llvm/include"
clang --version
echo 'export PATH="/usr/local/opt/llvm/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
clang --version
- name: Install OpenBLAS
run: |
Expand Down
12 changes: 1 addition & 11 deletions include/_random_generator/_engines/split_mix64.h
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
/*
* SPDX-FileCopyrightText: Copyright 2021, Siavash Ameli <[email protected]>
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-FileType: SOURCE
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the license found in the LICENSE.txt file in the root
* directory of this source tree.
*/


#ifndef _RANDOM_GENERATOR_SPLIT_MIX_64_H_
#define _RANDOM_GENERATOR_SPLIT_MIX_64_H_

#include <stdint.h> // uint64_t
#include <cassert> // assert
#include <ctime> // std::time
#include <random> // std::seed_seq
#include <array> // array

/// \class SplitMix64
///
Expand Down
1 change: 1 addition & 0 deletions src/primate/_lanczos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "_random_generator/vector_generator.h"
#include "_lanczos/lanczos.h"
#include "eigen_operators.h"
#include <cmath> // constants
#include <iostream>
#include <stdio.h>
#include <any>
Expand Down

0 comments on commit 8289858

Please sign in to comment.