Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker #7

Closed
wants to merge 123 commits into from
Closed

Docker #7

wants to merge 123 commits into from

Commits on Aug 18, 2022

  1. [infra] docker images automatically using gh (kaldi-asr#4782)

    * [infra] docker images automatically using gh
    * minor change
    jtrmal committed Aug 18, 2022
    Configuration menu
    Copy the full SHA
    3dd259b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4592c54 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2022

  1. Fix: ali-to-post piping in post-to-tacc example (kaldi-asr#4788)

    The example for the post-to-tacc fails , but with the correct of `ark:- |`  there is no piping error
    Agrover112 committed Aug 28, 2022
    Configuration menu
    Copy the full SHA
    0fb502d View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

  1. [scripts] Copy utt2lang in copy_data_dir.sh (kaldi-asr#4789)

    Coauthored-By: Jonghwan Hyeon <hyeon0145@gmail.com>
    jonghwanhyeon committed Aug 31, 2022
    Configuration menu
    Copy the full SHA
    a754c18 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. Configuration menu
    Copy the full SHA
    7bc53ef View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Insert build system changes.

    sfantao committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    de3632d View commit details
    Browse the repository at this point in the history
  2. Remove extra quote.

    sfantao committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    64c2754 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

  1. Add hipify header.

    sfantao committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    ee18146 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fd48017 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    07f2f36 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. Configuration menu
    Copy the full SHA
    fde6f7f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21ca60d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1040234 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    801115d View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Configuration menu
    Copy the full SHA
    081de1e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    00098bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9b8dffb View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Configuration menu
    Copy the full SHA
    e84d8f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aed0ce5 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Configuration menu
    Copy the full SHA
    727e454 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. change [utter] to [utterance.] in data_prep.dox (kaldi-asr#4795)

    Co-authored-by: npovey <you@example.com>
    npovey and npovey committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    299dadc View commit details
    Browse the repository at this point in the history
  2. Provide provision to pass subword separator as argument to make_posit…

    …ion_dependent_subword_lexicon.py (kaldi-asr#4794)
    kavyamanohar committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    716f558 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Update run_blstm.sh (kaldi-asr#4790)

    * Update run_blstm.sh
    
    fix bug aspire run_blstm.sh
    
    * Update egs/aspire/s5/local/nnet3/run_blstm.sh
    
    Co-authored-by: Cy 'kkm' Katsnelson <kkm@pobox.com>
    
    Co-authored-by: Cy 'kkm' Katsnelson <kkm@pobox.com>
    xu-gaopeng and kkm000 committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    f6f4cca View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2022

  1. Configuration menu
    Copy the full SHA
    99101e8 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2022

  1. Configuration menu
    Copy the full SHA
    a023f3f View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2022

  1. [src] Make word alignment optional (kaldi-asr#4802)

    * Remove unused variable.
    
    * cudadecoder: Make word alignment optional.
    
    For CTC models using word pieces or graphemes, there is not enough
    positional information to use the word alignment.
    
    I tried marking every unit as "singleton" word_boundary.txt, but this
    explodes the state space very, very often. See:
    
    nvidia-riva/riva-asrlib-decoder#3
    
    With the "_" character in CTC models predicting word pieces, we at the
    very least know which word pieces begin a word and which ones are
    either in the middle of the word or the end of a word, but the
    algorithm would still need to be rewritten, especially since "blank"
    is not a silence phoneme (it can appear between).
    
    I did look into using the lexicon-based word alignment. I don't have a
    specific complaint about it, but I did get a weird error where it
    couldn't create a final state at all in the output lattice, which
    caused Connect() to output an empty lattice. This may be because I
    wasn't quite sure how to handle the blank token. I treat it as its own
    phoneme, bcause of limitations in TransitionInformation, but this
    doesn't really make any sense.
    
    Needless to say, while the CTM outputs of the cuda decoder will be
    correct from a WER point of view, their time stamps won't be correct,
    but they probably never were in the first place, for CTC models.
    galv committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    be22248 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2022

  1. Fix variable name (kaldi-asr#4815)

    Fix "glossaries_opt" variable name at line number 39. It's misspelled due to which words in the glossaries weren't reserved while creating BPE.
    csetanmayjain committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    aa17817 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2023

  1. Configuration menu
    Copy the full SHA
    0785b66 View commit details
    Browse the repository at this point in the history
  2. [misc] Install python2.7

    This is to fix a CI error.
    
    It appears that this is from using "ubuntu-latest" in the CI
    workflow. It got upgraded to ubuntu 22.04 automatically, and this
    doesn't have python2.7 by default.
    galv committed Jan 6, 2023
    Configuration menu
    Copy the full SHA
    ae8cbe8 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2023

  1. Update install_srilm.sh

    Neimhin committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    8c3c0bc View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. egs/ami: Fix BUT path to wavs in AMI scripts, add beamformer config (k…

    …aldi-asr#4820)
    
    - the audio data no longer exist in that path
    - the beamformer config was missing in 'ami/s5b', it's taken from 'ami/s5'
    KarelVesely84 committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    e4eb4f6 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2023

  1. Merge pull request kaldi-asr#4809 from georgthegreat/patch-1

    Do not use ADL to invoke std::binary_search
    danpovey committed Feb 18, 2023
    Configuration menu
    Copy the full SHA
    561d8c2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kaldi-asr#4810 from daanzu/pr/srilm

    SRILM: allow bypassing download/extraction during automated installation
    danpovey committed Feb 18, 2023
    Configuration menu
    Copy the full SHA
    ab6c168 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ed910d6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kaldi-asr#4825 from georgthegreat/patch-2

    Fix -Wdeprecated-copy from c++11
    danpovey committed Feb 18, 2023
    Configuration menu
    Copy the full SHA
    362ecc2 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Configuration menu
    Copy the full SHA
    59299d1 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. Configuration menu
    Copy the full SHA
    ab8fa9e View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. More fixes of unwanted ADL usage of std algos (kaldi-asr#4828)

    This continues the work started in kaldi-asr#4809.
    georgthegreat committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    9a8588a View commit details
    Browse the repository at this point in the history
  2. Fix matrix data offset for large matrices (kaldi-asr#4823)

    * Fix matrix data offset for large matrices
    
    * Fix overflow in cudamatrix too
    nshmyrev committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    1918508 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. Configuration menu
    Copy the full SHA
    40fa148 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3947a4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cbc7284 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

  1. Configuration menu
    Copy the full SHA
    0d7f17f View commit details
    Browse the repository at this point in the history
  2. Merge

    danpovey committed May 2, 2023
    Configuration menu
    Copy the full SHA
    5ef3962 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kaldi-asr#4850 from danpovey/fix_liblbfgs

    Fix download location in install_liblbfgs.sh
    danpovey committed May 2, 2023
    Configuration menu
    Copy the full SHA
    71f38e6 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Configuration menu
    Copy the full SHA
    039ccbf View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Create Dockerfile

    Creates a Dockerfile in support of Ubuntu 22.04.
    wshilton committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    f5805db View commit details
    Browse the repository at this point in the history
  2. Update Dockerfile

    Reduces image size and re-organizes install list for clarity.
    wshilton committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    745c6e1 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2023

  1. Update Dockerfile

    Using apt-get instead of apt
    wshilton committed Aug 12, 2023
    Configuration menu
    Copy the full SHA
    ebf6245 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2023

  1. Update install_mkl.sh

    Update Intel APT key to mitigate installation error
    culhatsker committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    aef1d98 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kaldi-asr#4875 from culhatsker/mkl_install_update

    Update install_mkl.sh
    danpovey committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    1b07b59 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Configuration menu
    Copy the full SHA
    be4ace5 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. Configuration menu
    Copy the full SHA
    6d8dd4c View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Fix LatticeSimpleDecoder

    csukuangfj committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    3a8896c View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Fixes to work with CUDA 12 toolkit

    Ubuntu committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    cdbc05b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kaldi-asr#4880 from danpovey/cuda_fixes

    Fixes to work with CUDA 12 toolkit
    danpovey committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    a670447 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Openblas repo was renamed

    nshmyrev committed Nov 4, 2023
    Configuration menu
    Copy the full SHA
    fe12720 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Configuration menu
    Copy the full SHA
    f584420 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7dc4dd1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ba4e18f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dac0b27 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0018fec View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Configuration menu
    Copy the full SHA
    3aaa326 View commit details
    Browse the repository at this point in the history
  2. Fix header ordering.

    sfantao committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    6ebab70 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7efdeae View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. [tools] Replace uses of Python distutils

    The `distutils` packages has been removed in Python 3.12:
    https://docs.python.org/3.11/distutils/index.html
    
    The `sysconfig` package is available since Python 3.2 and provides the necessary
    replacement functionality:
    https://docs.python.org/3/library/sysconfig.html
    eginhard committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    700bf93 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Fix kaldi-asr#4870, spurious error in ProcessNonemitting; queue can v…

    …alidly be empty.
    
    # Conflicts:
    #	src/cudamatrix/cu-kernels.cu
    danpovey committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    cd2b835 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kaldi-asr#4885 from danpovey/fix_simple_decoder2

    Fix kaldi-asr#4870, spurious error in ProcessNonemitting; queue can validly be empty.
    danpovey committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    e187518 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    829e8d6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kaldi-asr#4879 from csukuangfj/fix-lattice-simple-…

    …decoder
    
    Fix LatticeSimpleDecoder
    danpovey committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    49faa67 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kaldi-asr#4882 from sfantao/amd-dev

    Add support for AMD GPUs using HIP/ROCm
    danpovey committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    e8ed610 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Update fix_data_dir.sh

    teinhonglo committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    e97d353 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kaldi-asr#4881 from alphacep/openblas-repo-rename

    Openblas repo was renamed
    danpovey committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    0d12885 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kaldi-asr#4886 from teinhonglo/master

    Sorted $utt_extra_files and $spk_extra_files of extra_fix_data_dir.sh
    danpovey committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    b488400 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kaldi-asr#4866 from wshilton/wshilton-add-dockerfi…

    …le-for-ubuntu22.04
    
    Wshilton add dockerfile for ubuntu22.04
    danpovey committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    bf248aa View commit details
    Browse the repository at this point in the history
  5. Merge pull request kaldi-asr#4883 from eginhard/distutils

    [tools] Replace uses of Python distutils for 3.12 compatibility
    danpovey committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    a611d7b View commit details
    Browse the repository at this point in the history
  6. Merge pull request kaldi-asr#4851 from BaffinLee/fix/fix-gop-visualiz…

    …e-error
    
    [egs] convert tuple to NDArray before call sklearn.manifold.TSNE
    danpovey committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    545b1f1 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kaldi-asr#4847 from sendream/master

    Add recipe of Tibetan Amdo dialect
    danpovey committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    21ae411 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3675219 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Update COPYING

    The list of Individual Contributors wasn't really in alphabetical order
    Omerdan03 committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    b7e886c View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2024

  1. Fix unused but set variable

    dzen03 committed Jan 21, 2024
    Configuration menu
    Copy the full SHA
    77ffb55 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Configuration menu
    Copy the full SHA
    f785fa0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kaldi-asr#4905 from Q-Leap-Networks/master

    configure: Fix gcc version check for cuda
    danpovey committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    8c451e2 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Workaround for macOS bug with strdup (fixes kaldi-asr#4855)

    Signed-off-by: Paul Guyot <pguyot@kallisys.net>
    pguyot committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    a74256f View commit details
    Browse the repository at this point in the history
  2. Patch sctk for macOS picky compiler

    Signed-off-by: Paul Guyot <pguyot@kallisys.net>
    pguyot committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    a979f2a View commit details
    Browse the repository at this point in the history
  3. Merge pull request kaldi-asr#4902 from dzen03/fix-unused-variable

    Fix unused but set variable
    danpovey committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    f495ac7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kaldi-asr#4891 from Omerdan03/patch-1

    Update COPYING
    danpovey committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    02558cc View commit details
    Browse the repository at this point in the history
  5. Merge pull request kaldi-asr#4911 from pguyot/w18/fix-macos-sctk-strdup

    Workaround for macOS bug with strdup (fixes kaldi-asr#4855)
    danpovey committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    e57be0d View commit details
    Browse the repository at this point in the history
  6. Merge pull request kaldi-asr#4912 from pguyot/w18/fix-stck-includes-a…

    …nd-definition
    
    Patch sctk for macOS picky compiler
    danpovey committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    ad88b3b View commit details
    Browse the repository at this point in the history
  7. Merge pull request kaldi-asr#4818 from Neimhin/patch-1

    Update install_srilm.sh
    danpovey committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    51744d3 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. Configuration menu
    Copy the full SHA
    f328393 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Merge pull request kaldi-asr#4917 from danijel3/master

    Fix missing FLT_MAX in some CUDA installation scenarios.
    danpovey committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    67548a3 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Configuration menu
    Copy the full SHA
    c4515b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed29e16 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. fix tests and address comments

    jtrmal committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    4145e17 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38ea2b1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3cf3c1a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    770daa2 View commit details
    Browse the repository at this point in the history
  5. make codefactor happier

    jtrmal committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    816d438 View commit details
    Browse the repository at this point in the history
  6. Merge pull request kaldi-asr#4924 from jtrmal/python_and_apple

    Fix reported issues w.r.t python2.7 and some apple silicone quirks
    danpovey committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    6f61393 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. Support openfst-1.7.6

    georgthegreat authored and jtrmal committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    3f170d4 View commit details
    Browse the repository at this point in the history
  2. Support openfst-1.8.0

    georgthegreat authored and jtrmal committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    e460d8a View commit details
    Browse the repository at this point in the history
  3. Support openfst-1.8.1

    georgthegreat authored and jtrmal committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    5ccce55 View commit details
    Browse the repository at this point in the history
  4. Support openfst-1.8.2

    georgthegreat authored and jtrmal committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    9a213be View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Configuration menu
    Copy the full SHA
    122a3f2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    57efb6b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7fcc2d View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2024

  1. Merge pull request kaldi-asr#4927 from jtrmal/openfst-1.8.2

    Support for both OpenFST 1.7.3 and 1.8.2
    danpovey committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    13441d0 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Configuration menu
    Copy the full SHA
    967be48 View commit details
    Browse the repository at this point in the history
  2. modify the gh action triggers

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    b5ed933 View commit details
    Browse the repository at this point in the history
  3. modify the gh action triggers

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    42d40c6 View commit details
    Browse the repository at this point in the history
  4. test

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    f43be33 View commit details
    Browse the repository at this point in the history
  5. fix error

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    9cbe2f9 View commit details
    Browse the repository at this point in the history
  6. upgrade actions

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    6556085 View commit details
    Browse the repository at this point in the history
  7. fix build flag

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    b194fd0 View commit details
    Browse the repository at this point in the history
  8. fix build flag

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    11b25c3 View commit details
    Browse the repository at this point in the history
  9. fix issues

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    505ae59 View commit details
    Browse the repository at this point in the history
  10. fix issues

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    17599b7 View commit details
    Browse the repository at this point in the history
  11. add mkl

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    407cd50 View commit details
    Browse the repository at this point in the history
  12. fix cuda builds

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    b55e546 View commit details
    Browse the repository at this point in the history
  13. fix cuda builds

    jtrmal committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    f4112d7 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2024

  1. Configuration menu
    Copy the full SHA
    e31abf0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    961c06b View commit details
    Browse the repository at this point in the history