Loading acorn-lib/assets/constants/accept.txt +2 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,8 @@ geotag(ged)? glovebox(es)? graphene HPC HPE IBM INSET IOTA IPs? Loading acorn-lib/assets/constants/acronyms.csv 0 → 100644 +47 −0 Original line number Diff line number Diff line ACORN,Accessible Content Optimization for Research Needs AMD,Advanced Micro Devices AOCL ASCR,Advanced Scientific Computing Research BLAS,Basic Linear Algebra Subprograms CBI CPU,Computer Processing Unit DOE,Department of Energy FAIR,Findable Accessible Interoperable and Reusable GEARS,Global Evaluation Analysis Research and Security GIS,Geographic Information System GPS,Global Positioning System GSHS,Geospatial Science and Human Security GPU,Graphics Processing Unit HPC,High Performance Computing HPE,Hewlett Packard Enterprise IBM,International Business Machines INSET,In-Pile Steady State Extreme Temperature IOTA,Iodine Off-gas Testing and Abatement IP,Internet Protocol IRI ISO,In Support Of JACC,Julia for ACCelerators LLM,Large Language Model LLVM,Low Level Virtual Machine MDNorm,Multi-Dimensional Normalization MKL,Math Kernel Library MPI,Message Passing Interface MRI,Magnetic Resonance Imaging NERSC,National Energy Research Scientific Computing Center NOx,Nitric Oxide and Nitrogen Dioxide OLCF,Oak Ridge Leadership Computing Facility ORNL,Oak Ridge National Laboratory PIPE,Parallel Integration and Processing Engine POI,Point of Interest RAJA REDC,Radiochemical Engineering Development Center SANSR,Situational Awareness of Network System Roles EDS,Energy Dispersive X-ray Spectroscopy SEM,Scanning Electron Microscopy SNS,Spallation Neutron Source STAR TSEA,Transport Security and Analysis UAS,Unmanned Aerial System USA,United States of America XLOOP,Extreme-Scale Experiment-in-the-Loop XPS,X-ray Photoelectron Spectroscopy No newline at end of file acorn-lib/src/analyzer/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -228,7 +228,7 @@ impl StaticAnalyzer for Vale { } match File::create(format!("{}/accept.txt", parent)) { | Ok(mut file) => { // TODO: Concatenate sponsor acronyms to accept file // TODO: Concatenate acronyms (acronyms, sponsors, partners, organizations) to accept file let content = Constant::read_lines("accept.txt").join("\n"); file.write_all(content.as_bytes()).expect("Unable to write to accept.txt"); } Loading Loading
acorn-lib/assets/constants/accept.txt +2 −0 Original line number Diff line number Diff line Loading @@ -37,6 +37,8 @@ geotag(ged)? glovebox(es)? graphene HPC HPE IBM INSET IOTA IPs? Loading
acorn-lib/assets/constants/acronyms.csv 0 → 100644 +47 −0 Original line number Diff line number Diff line ACORN,Accessible Content Optimization for Research Needs AMD,Advanced Micro Devices AOCL ASCR,Advanced Scientific Computing Research BLAS,Basic Linear Algebra Subprograms CBI CPU,Computer Processing Unit DOE,Department of Energy FAIR,Findable Accessible Interoperable and Reusable GEARS,Global Evaluation Analysis Research and Security GIS,Geographic Information System GPS,Global Positioning System GSHS,Geospatial Science and Human Security GPU,Graphics Processing Unit HPC,High Performance Computing HPE,Hewlett Packard Enterprise IBM,International Business Machines INSET,In-Pile Steady State Extreme Temperature IOTA,Iodine Off-gas Testing and Abatement IP,Internet Protocol IRI ISO,In Support Of JACC,Julia for ACCelerators LLM,Large Language Model LLVM,Low Level Virtual Machine MDNorm,Multi-Dimensional Normalization MKL,Math Kernel Library MPI,Message Passing Interface MRI,Magnetic Resonance Imaging NERSC,National Energy Research Scientific Computing Center NOx,Nitric Oxide and Nitrogen Dioxide OLCF,Oak Ridge Leadership Computing Facility ORNL,Oak Ridge National Laboratory PIPE,Parallel Integration and Processing Engine POI,Point of Interest RAJA REDC,Radiochemical Engineering Development Center SANSR,Situational Awareness of Network System Roles EDS,Energy Dispersive X-ray Spectroscopy SEM,Scanning Electron Microscopy SNS,Spallation Neutron Source STAR TSEA,Transport Security and Analysis UAS,Unmanned Aerial System USA,United States of America XLOOP,Extreme-Scale Experiment-in-the-Loop XPS,X-ray Photoelectron Spectroscopy No newline at end of file
acorn-lib/src/analyzer/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -228,7 +228,7 @@ impl StaticAnalyzer for Vale { } match File::create(format!("{}/accept.txt", parent)) { | Ok(mut file) => { // TODO: Concatenate sponsor acronyms to accept file // TODO: Concatenate acronyms (acronyms, sponsors, partners, organizations) to accept file let content = Constant::read_lines("accept.txt").join("\n"); file.write_all(content.as_bytes()).expect("Unable to write to accept.txt"); } Loading