diff --git a/.version b/.version index b5021469..94ff29cc 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.0.2 +3.1.1 diff --git a/Config/Delta_Config.py b/Config/Delta_Config.py index 249d9ce9..c0c59673 100644 --- a/Config/Delta_Config.py +++ b/Config/Delta_Config.py @@ -220,9 +220,9 @@ # Note that sys, os, re, and subprocess can not be tracked due to the way that python tracking works. # TODO modify these paths python_pkg_patterns = [ - { 'k_s' : 'SKIP', 'kind' : 'path', 'patt' : r"^[^/]" }, # SKIP all built-in packages { 'k_s' : 'SKIP', 'kind' : 'name', 'patt' : r"^_" }, # SKIP names that start with a underscore { 'k_s' : 'SKIP', 'kind' : 'name', 'patt' : r".*\." }, # SKIP all names that are divided with periods: a.b. + { 'k_s' : 'SKIP', 'kind' : 'name', 'patt' : r"\/sw\/external\/python\/anaconda3_[^/]*\/.*"}, # Skip anaconda3 builtins { 'k_s' : 'KEEP', 'kind' : 'path', 'patt' : r".*conda\/.*" }, # KEEP all packages installed by users { 'k_s' : 'KEEP', 'kind' : 'path', 'patt' : r".*\/site-packages\/.*" }, # KEEP all site-packages { 'k_s' : 'KEEP', 'kind' : 'path', 'patt' : r"^\/delta/scratch\/.*" }, # KEEP all packages the system project directories @@ -232,4 +232,9 @@ { 'k_s' : 'SKIP', 'kind' : 'path', 'patt' : r"^\/opt" }, # SKIP all python packages in /opt except for ones in .*/site-packages/ { 'k_s' : 'SKIP', 'kind' : 'path', 'patt' : r"^\/home" }, # SKIP all other packages in user locations { 'k_s' : 'SKIP', 'kind' : 'path', 'patt' : r"^\/work" }, # SKIP all other packages in user locations + { 'k_s' : 'SKIP', 'kind' : 'path', 'patt' : r"^[^/]" } # SKIP all built-in packages + ] + + + diff --git a/README.md b/README.md index c9ccbaf8..9bd60375 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,15 @@ effective, and systematic way. ## Original Documentation -Installation and Use of XALT is provided at https://xalt.readthedocs.io website. +* Documentation: https://xalt.readthedocs.org +* GitHub: https://github.com/xalt/xalt + + +## XALT Mailing list + +* mailto:xalt-users@lists.sourceforge.net. + +Please go to https://sourceforge.net/projects/xalt/lists/xalt-users to join. # NCSA SPIN Summer 2024 Documentation @@ -55,6 +63,7 @@ If you want the XALT module to be always available, simply include the changes t XALT is located in `/sw/workload/` on Delta. The source (this repository) is in `/sw/workload/xalt2/xalt_src` and the executables are in `/sw/workload/xalt2/xalt`. Each build of XALT requires a configuration file. The configuration file is in [Delta_config.py](https://github.com/ScreamingPigeon/xalt/blob/main/Config/Delta_Config.py). +Note: XALT tracks linking on all hostnames, so both compute and login nodes. Relevant information on configuring XALT can be found here - [Downloading XALT and Configuring it for your site](https://xalt.readthedocs.io/en/latest/020_site_configuration.html) @@ -146,13 +155,39 @@ A condensed explanation of the key idea behind XALT is available [here](https:// The main changes in this fork are 1. XALT was segfaulting when wrapped around `lsof` with debugging on. This was fixed in XALT 3.0.3, but this was forked from 3.0.2 and had a near-identical fix. -2. This fork of XALT supports creating start records for ALL PROCESSES as opposed to just MPI jobs. This can be achieved by setting `XALT_ALWAYS_CREATE_START=yes` in your environment. This has been included in the modulefile +2. (No longer available) This fork of XALT supports creating start records for ALL PROCESSES as opposed to just MPI jobs. This can be achieved by setting `XALT_ALWAYS_CREATE_START=yes` in your environment. This has been included in the modulefile 3. Comments around signal handling in [`src/libxalt/xalt_initialize.c`](https://github.com/ScreamingPigeon/xalt/blob/main/src/libxalt/xalt_initialize.c). 4. Inclusion of a custom config, build script, modulefile, epilog script, and a python cli-tool ### Miscellaneous Notes +#### Symlinks +##### Pre-Execution Filtering + +The XALT filters uses the path of the target used to build the symlink, as opposed to the path of the link itself. For example, if you have the rules + - KEEP, `/usr/bin/gcc` + - SKIP, `/sw/*` + +and the following file in `/sw/workload/xalt/` +``` +lrwxrwxrwx 1 prakhar7 root 12 Jul 23 11:38 gcc -> /usr/bin/gcc + +``` +XALT uses the `/usr/bin/gcc` path while filtering. + +##### Record Generation +Run Records contain references to the symlink's path +``` + "cmdlineA": ["/sw/workload/xalt2/gcc"], +``` + +However, in the `UserT` key, we see +``` + "exec_path": "/usr/bin/gcc", +``` +Therefore run records capture both paths + #### Profiling XALT comes with a special build flag `--with-tmpdir=` which allows the user to specify the directory for intermediate logs, as opposed to the default which is `/dev/shm`. Attempting to use $HOME in this flag leads to signifcant slowdowns @@ -262,4 +297,5 @@ trap sighandler TERM ### Existing Issues - The generation of link records is not consistent among different compilers. Possibly due to the order in which $PATH is set. Seems to work with the `/bin/gcc` and the aocc module. Link records do not generate with the gcc module -- Need to turn on tracking for compilers on login nodes. +- Need to turn on tracking for compilers on login nodes. +- The `$APPTAINER_BINDPATH` variable set in the modulefile interferes with building containers. Builds fail due to lack of a mount point for these directories. diff --git a/README.new b/README.new new file mode 100644 index 00000000..dbdfdd66 --- /dev/null +++ b/README.new @@ -0,0 +1,19 @@ +XALT 3.0+ + (3.0.1) * PR60: allow --with-primeNumber=0 to not generated numbered sub-directories + (3.0.2) * Add icx, ifx and icpx to list of otherCmplrA[] + * Avoid generating extra end records when a process forks. + Only generate an end record when the pid is the same as in myinit(). + * Issue #63: Wrap the pre_ingest_filter and pkgFilter libraries in XALTdb.py + * Issue #63: Test that the pre_ingest_filter and pkgFilter libraries as late as possible + * Issue #63: Make *.in.py files produce a msg that they should not be run. Instead + run the installed version. + (3.0.3) * Force shells like bash, csh, etc be ignored + (3.0.4) * Change configure.ac to run all tests before erroring out + * SKIP all shells in src/tmpl/xalt_config.py +XALT 3.1+ + (3.1) * Using UUID Version 7 when the routine getentropy() is available. + (3.1.1) * Add support for TACC's vista compute node names. (i123-456) + * using -e flag to check for .git not -d + + + diff --git a/TAGS b/TAGS index 38684f6f..ff1f26b6 100644 --- a/TAGS +++ b/TAGS @@ -1,576 +1,877 @@ -aclocal.m4,26 -dnl AX_PYTHON_MODULE(1,0 +contrib/TACC/build_default_user_2_account_str.in,148 +import os,60,1900 +import os, sys,60,1900 +import os, sys, re,60,1900 +def read_project_map_file(62,1926 + with open(69,2086 + with open(83,2383 -configure.ac,100 -AC_INIT(1,0 -AC_SUBST(30,467 - XALT_GPU_TRACKING_STYLE=86,3242 - XALT_GPU_TRACKING=98,3763 +contrib/TACC/build_XALT_report.in,106 +export PATH=4,36 + sendTo=26,726 + XALT_START_DATE=32,796 + last365=39,1008 + fn30=55,1507 -docs/Makefile,1466 -SPHINXOPTS 5,92 -SPHINXBUILD 6,108 -PAPER 7,137 -BUILDDIR 8,153 -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http:$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http12,281 -PAPEROPT_a4 16,654 -PAPEROPT_letter 17,695 -ALLSPHINXOPTS 18,740 -I18NSPHINXOPTS 20,901 -.PHONY:.PHONY22,962 -html:html24,1114 -help:help29,1251 -clean:clean56,2778 -dirhtml:dirhtml60,2809 -singlehtml:singlehtml65,2958 -pickle:pickle70,3117 -json:json75,3258 -htmlhelp:htmlhelp80,3391 -qthelp:qthelp86,3598 -applehelp:applehelp95,3971 -devhelp:devhelp103,4283 -epub:epub112,4563 -latex:latex117,4698 -latexpdf:latexpdf124,4976 -latexpdfja:latexpdfja130,5202 -text:text136,5444 -man:man141,5581 -texinfo:texinfo146,5716 -info:info153,5998 -gettext:gettext159,6225 -changes:changes164,6379 -linkcheck:linkcheck169,6514 -doctest:doctest175,6723 -coverage:coverage180,6918 -xml:xml185,7117 -pseudoxml:pseudoxml190,7249 +contrib/TACC/envReport.in,467 +from __future__ import print_function,18,607 +import os,19,655 +import os, sys,19,655 +import os, sys, re,19,655 +import os, sys, re, time,19,655 +import os, sys, re, time, datetime,19,655 +import os, sys, re, time, datetime, argparse,19,655 +import os, sys, re, time, datetime, argparse, base64,19,655 +import os, sys, re, time, datetime, argparse, base64, MySQLdb,19,655 +dirNm,25,801 +dirNm, execName 25,801 + idx2count 75,2475 + ja 76,2492 + resultA 138,3951 -docs/source/index.rst,27 -function pointers 33,1350 +contrib/TACC/update_module_name.in,124 +class CmdLineOptions(19,470 + def __init__(22,538 + def execute(26,595 +def update_module_name(41,1703 +def main(83,3056 -docs/source/040_reverse_map.rst,25 -Function Tracking22,801 +contrib/TACC/convertCSV2json.py,17 +def main(21,671 -docs/source/120_xalt_json.rst,19 -entry is 172,5380 +contrib/TACC/xalt_export_db.in,144 +class CmdLineOptions(19,560 + def __init__(22,628 + def execute(26,685 +def export_links(42,1686 +def export_runs(82,3485 +def main(140,5843 -docs/source/050_install_and_test.rst,59 -above XALT. In other word,7,280 - prepend_path(100,3513 +contrib/TACC/syslogTest.c,15 +int main(8,84 -docs/source/130_known_problems.rst,135 - #define _GNU_SOURCE40,1469 - int my_copyenv(50,1630 - int main(69,2068 -The problem with this code is that clearenv(74,2150 +contrib/TACC/reportQ.in,60 +PATH=4,36 + startD=16,200 + endD=17,218 + fileNm=19,235 -docs/source/999_faq.rst,32 -Frequently Asked Questions3,16 +contrib/TACC/fix_records.in,339 +import os,19,645 +import os, sys,19,645 +import os, sys, re,19,645 +import os, sys, re, time,19,645 +import os, sys, re, time, datetime,19,645 +import os, sys, re, time, datetime, argparse,19,645 +import os, sys, re, time, datetime, argparse, base64,19,645 + parser 34,996 + endtimeT 116,4535 + fn 118,4552 + f.close(close134,5082 + +contrib/TACC/monthly_report.in,487 +import os,19,645 +import os, sys,19,645 +import os, sys, re,19,645 +import os, sys, re, MySQLdb,19,645 +import os, sys, re, MySQLdb, json,19,645 +import os, sys, re, MySQLdb, json, time,19,645 +import os, sys, re, MySQLdb, json, time, argparse,19,645 +dirNm,22,719 +dirNm, execName 22,719 +compiled_userDirPatternT 253,15757 + self.__host __host286,16622 + query 411,20400 + acctT 427,20759 + query 428,20777 + linkA 490,23449 + runT[runT511,24330 -docs/source/080_loading_json_by_syslog.rst,25 -If you are syslog,5,106 +contrib/TACC/xalt_fos.in,231 +import os,44,2542 +import os, sys,44,2542 +import os, sys, re,44,2542 +import MySQLdb,45,2569 +import time,46,2594 +from datetime import datetime,48,2651 +dirNm,54,2766 +dirNm, execName 54,2766 + execA.append(append128,5878 -docs/source/060_setup_db.rst,57 -Where you have correctly set the **db name*name48,1733 +contrib/TACC/xalt_load_fos.in,239 +import os,19,648 +import os, sys,19,648 +import os, sys, re,19,648 +import os, sys, re, argparse,19,648 +import os, sys, re, argparse, base64,19,648 +import os, sys, re, argparse, base64, json,19,648 +dirNm,26,775 +dirNm, execName 26,775 -docs/source/030_site_filtering.rst,101 - void my_hostname_parser_cleanup(86,3515 -The routines must be called my_hostname_parser(92,3645 +contrib/TACC/xalt_directorate.in,267 +import os,44,2542 +import os, sys,44,2542 +import os, sys, re,44,2542 +import MySQLdb,45,2569 +import time,46,2594 +from datetime import datetime,48,2651 +dirNm,54,2766 +dirNm, execName 54,2766 + execA.append(append127,5618 + execA.append(append186,7738 -docs/source/100_execstack.rst,99 - int main(29,1006 -the assembly code,59,1719 -Normally this is not a problem. However,65,2009 +contrib/TACC/quarter2months.in,58 +import os,19,645 +import os, sys,19,645 +def main(21,665 -docs/source/010_prereqs.rst,67 -library,5,121 -library, and to track the external functions 5,121 +contrib/TACC/system_directorate_rpt.in,93 +SYSHOST=4,36 + quarterA=16,405 + quarterA=33,1045 +for ((i=$num; i >= 0; i--)); do46,1406 -docs/source/115_xalt_internal_design.rst,54 -function tracking 41,1525 -function tracking 42,1591 +contrib/TACC/staff_builds/staff_builds.py,201 +class CmdLineOptions(19,398 + def __init__(22,466 + def execute(26,523 +class StaffBuilds:StaffBuilds37,1323 + def __init__(38,1342 + def build(42,1423 + def report_by(77,2572 +def main(91,3094 -docs/source/020_site_configuration.rst,27 -Function Tracking269,8533 +contrib/TACC/staff_builds/staff.py,28 +def xalt_tacc_staff(27,281 -src/Makefile.in,1964 -COPY_LIBS_TO_XALT 1,0 -FIND_LIBS_TO_XALT 2,70 -THIS_DIR 3,136 -VPATH 4,172 -CC 5,204 -CXX 6,226 -OPTLVL 7,248 -LIB_OPTIONS 8,273 -WARN_FLAGS 9,305 -CF_INIT 10,425 -COMMON_FLGS 11,468 -CXXFLAGS 12,522 -CFLAGS 13,566 - LIBDCGM:LIBDCGM16,669 - LIBNVML:LIBNVML19,715 - HAVE_EXTERNAL_HOSTNAME_PARSER 23,771 - PARSER_TYPE 24,839 - MY_HOSTNAME_PARSER_SRC 26,955 - MY_HOSTNAME_PARSER_OBJ 27,1039 - MY_HOSTNAME_PARSER_OBJ_32 28,1115 - MY_HOSTNAME_PARSER_LIBRARY 31,1234 - MY_HOSTNAME_PARSER_LIB32 32,1317 - MY_HOSTNAME_PARSER_TARGET 33,1400 - MY_HOSTNAME_PARSER_TARGET +=MY_HOSTNAME_PARSER_TARGET +35,1505 - MY_HOSTNAME_PARSER_OBJ 37,1585 - MY_HOSTNAME_PARSER_OBJ_32 38,1661 -programs 45,1863 -c_sources 46,1879 -cxx_sources 47,1895 -libraries 48,1911 -extra_clean 49,1927 -so_libs 50,1943 - HAVE_32BIT 53,1988 - DEP32 54,2007 - OBJ32 55,2024 - DEP32 59,2073 - OBJ32 60,2118 -dependencies 63,2170 -objects 64,2252 -include_dirs 66,2335 -include_dirs 67,2371 -CPPFLAGS +=CPPFLAGS +69,2442 -all:all75,2572 - INCLUDE_DEPS 78,2608 - INCLUDE_DEPS 82,2667 - INCLUDE_DEPS 86,2728 -.PHONY:.PHONY98,2892 -all:all99,2904 -build_all:build_all101,2963 -COPY_ALL_LIBS:COPY_ALL_LIBS104,3071 - baseNM=107,3228 - realNM=115,3724 -%.d:%.d126,4379 - sed 's,\($(notdir $*)\.o\) *:sed 's,\($(notdir $*)\.o\) *129,4531 -%.d32:%.d32132,4629 - sed 's,\($(notdir $*)\)\.o *:sed 's,\($(notdir $*)\)\.o *135,4791 -%.d:%.d138,4893 - sed 's,\($(notdir $*)\.o\) *:sed 's,\($(notdir $*)\.o\) *141,5045 -%.o32:%.o32144,5143 -ECHO:ECHO149,5218 -echo:echo152,5290 -neat:neat158,5454 -clean:clean161,5508 -clobber:clobber167,5798 -$(DESTDIR)$(SITE_PKG_DIR)/xalt_python_pkg_filter.py:$(DESTDIR)$(SITE_PKG_DIR)/xalt_python_pkg_filter.py172,5864 -my_hostname_parser_target:my_hostname_parser_target175,5964 -my_hostname_parser_target_32:my_hostname_parser_target_32178,6069 +contrib/TACC/xalt.spec,375 +package use by R,65,1737 + export MODULEPATH=81,1948 +HOST=88,2116 +SYSHOST=90,2149 +TRANSMISSION=92,2171 + TRANSMISSION=104,2447 + TRANSMISSION=111,2623 + MAKE_OPTS=118,2860 +CXX=/usr/bin/g++ CC=/usr/bin/gcc ./configure CXX=/usr/bin/g++ CC=/usr/bin/gcc --prefix=%{APPS} --with-syshostConfig=syshostConfig122,2968 +whatis(147,3771 +prepend_path(155,4048 + lv=204,5305 -src/tmpl/xalt_python_pkg_filter.template,56 -import os,4,56 -import os, sys,4,56 -def keep_pkg(8,99 +contrib/TACC/process_xalt_file_records.in,115 +myhost=3,35 +SYSHOST=5,91 +SWTOOLS=7,113 + MPATH=15,370 + export PATH=27,606 +XALT_EXECUTABLE_TRACKING=37,944 -src/tmpl/xalt_interval.template,317 -#define XALT_INTERVAL_H2,24 -#define N_ELEMENTS(6,78 - double left;10,146 - double prob;11,161 -} interval;12,176 -const int mpi_always_record 14,189 -interval scalar_rangeA[scalar_rangeA16,245 -interval mpi_rangeA[mpi_rangeA17,293 -const int scalar_rangeSz 18,345 -const int mpi_rangeSz 19,406 +contrib/TACC/correct_num_cores.in,416 +from __future__ import print_function,18,607 +import os,20,693 +import os, sys,20,693 +import os, sys, re,20,693 +import os, sys, re, time,20,693 +import os, sys, re, time, datetime,20,693 +import os, sys, re, time, datetime, argparse,20,693 +import os, sys, re, time, datetime, argparse, base64,20,693 + import os,32,1009 + def ioctl_GWINSZ(33,1029 + endtimeT 302,9676 + fn 304,9693 + f.close(close322,10306 -src/tmpl/xalt_pre_ingest_filter.template,108 -static char * strbuf 5,58 -static unsigned int sz 6,89 -int yywrap(13,150 -double pre_ingest_filter(18,181 +contrib/TACC/README.vm,124 + mysql> grant all on xalt.* to 'xaltuser'@'@15,517 + mysql> quit;16,575 + $ ./build_hello_executables.sh sh33,887 -src/tmpl/xalt_hostname_parser.template,191 -#define HERE 6,93 -static char * strbuf 8,152 -static unsigned int sz 9,183 - KEEP 11,218 - SKIP 12,230 -int yywrap(20,275 -int hostname_parser(25,306 -void hostname_parser_cleanup(47,729 +contrib/TACC/store_xalt_data.in,68 +MCLAY=3,35 +manager 35,1301 +store_log=52,1716 +percentage=65,2026 -src/tmpl/xalt_regex.template,445 -#define XALT_REGEX_H2,21 -#define N_ELEMENTS(6,72 -const char* pathPatternA[pathPatternA7,121 -const char* hostnameA[hostnameA8,179 -const char* envPatternA[envPatternA9,237 -const char* pyPkgPatternA[pyPkgPatternA10,295 -const char* ingestPatternA[ingestPatternA11,353 -const int pathPatternSz 13,412 -const int hostnameSz 14,469 -const int envPatternSz 15,523 -const int pyPkgPatternSz 16,579 -const int ingestPatternSz 17,637 +contrib/TACC/load_xalt_db,24 +export MODULEPATH=2,12 -src/tmpl/xalt_env_parser.template,180 -static char * strbuf 6,93 -static unsigned int sz 7,124 - KEEP 9,159 - SKIP 10,171 - IGNORE 11,183 -int yywrap(19,225 -int keep_env_name(24,256 -void env_parser_cleanup(46,692 +contrib/TACC/kill_dups.in,353 +from __future__ import print_function,18,607 +import os,20,693 +import os, sys,20,693 +import os, sys, re,20,693 +import os, sys, re, time,20,693 +import os, sys, re, time, datetime,20,693 +import os, sys, re, time, datetime, argparse,20,693 +import os, sys, re, time, datetime, argparse, base64,20,693 + import os,32,1009 + def ioctl_GWINSZ(33,1029 -src/tmpl/xalt_path_parser.template,191 -static char * strbuf 7,94 -static unsigned int sz 8,125 - SPSR 10,160 - PKGS 11,172 - KEEP 12,184 - SKIP 13,196 -int yywrap(21,237 -int keep_path(26,268 -void path_parser_cleanup(48,673 +contrib/upgradeDB_From0.7.1.py,95 +class CmdLineOptions(36,1394 + def __init__(39,1462 + def execute(43,1519 +def main(50,1804 -src/linker/my_uuidgen.c,15 -int main(6,84 +contrib/getent/constants.py,25 + def c_char_p(17,460 -src/linker/jsmn.h,508 -#define __JSMN_H_2,18 -#define JSMN_PARENT_LINKS 10,98 - JSMN_UNDEFINED 20,290 - JSMN_OBJECT 21,311 - JSMN_ARRAY 22,329 - JSMN_STRING 23,346 - JSMN_PRIMITIVE 24,364 -} jsmntype_t;25,384 -enum jsmnerr 27,399 - JSMN_ERROR_NOMEM 29,453 - JSMN_ERROR_INVAL 31,521 - JSMN_ERROR_PART 33,610 - jsmntype_t type;43,839 - int start;44,857 - int end;45,869 - int size;46,879 - int parent;48,915 -} jsmntok_t;50,935 - unsigned int pos;57,1114 - unsigned int toknext;58,1165 - int toksuper;59,1217 -} jsmn_parser;60,1286 +contrib/getent/headers.py,324 +class AliasStruct(4,40 +class InAddrStruct(13,236 +class InAddr6Union(20,354 +class InAddr6Struct(28,534 +class HostStruct(36,685 +class NetworkStruct(46,926 +class ProtoStruct(56,1259 +class RPCStruct(65,1533 +class ServiceStruct(74,1820 +class GroupStruct(84,2161 +class PasswdStruct(94,2386 +class ShadowStruct(106,2670 -src/linker/xalt_strip_linklib.C,18 -int main(16,1062 - -src/linker/parseLDTrace.h,30 -#define PARSE_LD_TRACE_H2,25 +contrib/getent/__init__.py,814 + def convert23(11,197 + def convert23(15,251 +class StructMap(19,362 + def __init__(21,388 + def __dict__(33,693 + def __iter__(36,750 + def _map(45,949 +def _resolve(54,1114 +class Host(68,1670 + def __init__(69,1693 +class Proto(76,1928 + def __init__(77,1952 +class RPC(82,2070 + def __init__(83,2092 +class Service(88,2208 + def __init__(89,2234 +class Network(94,2354 + def __init__(95,2380 +class Alias(100,2500 + def __init__(101,2524 +class Group(106,2642 + def __init__(107,2666 +class Passwd(112,2784 +class Shadow(116,2820 + def __init__(117,2845 +def alias(123,3042 +def host(150,3538 + def lookup(179,4099 +def proto(207,5038 +def rpc(244,5774 +def service(284,6572 +def network(338,7779 +def group(369,8348 +def passwd(414,9204 +def shadow(459,10073 -src/linker/xalt_realpath.c,41 -#define _GNU_SOURCE 1,0 -int main(5,120 +contrib/build_reverseMapT_cray/cray_build_rmapT.sh,154 + BASE_MODULE_PATH=32,1346 + RmapDir=33,1379 +SCRIPT_DIR=57,2108 + sn=63,2295 + c_major=73,2499 + GCCPrev=86,2922 +OLD=98,3145 -src/linker/xalt_utils.C,83 -#define DATESZ 19,329 -bool path2module(21,349 -FILE* xalt_json_file_open(49,1025 +contrib/build_reverseMapT_cray/merge_json_files.py,16 +def main(6,103 -src/linker/buildRmapT.C,24 -void buildRmapT(16,319 +contrib/fix_module_name.py,144 +class CmdLineOptions(16,268 + def __init__(19,336 + def execute(23,393 +def dbConfigFn(33,957 +def fix_module_name(41,1087 +def main(71,2032 -src/linker/buildRmapT.h,26 -#define BUILDRMAPT_H2,21 +contrib/argparse/argparse.py,5073 + def sorted(108,3670 +def _callable(116,3838 +class _AttributeHolder(133,4183 + def __repr__(142,4507 + def _get_kwargs(151,4841 + def _get_args(154,4914 +def _ensure_value(158,4959 +class HelpFormatter(168,5182 + def __init__(175,5438 + def _indent(207,6408 + def _dedent(211,6512 + class _Section(216,6686 + def __init__(218,6715 + def format_help(224,6912 + def _add_item(249,7899 + def start_section(255,8087 + def end_section(261,8307 + def add_text(265,8419 + def add_usage(269,8558 + def add_argument(274,8758 + def add_arguments(292,9517 + def format_help(299,9715 + def _join_parts(306,9933 + def _format_usage(311,10112 + def get_lines(355,11872 + def _format_actions_usage(403,13950 + def _format_text(499,17610 + def _format_action(506,17889 + def _format_action_invocation(553,19817 + def _metavar_formatter(576,20613 + def format(585,20961 + def _format_args(592,21153 + def _expand_help(611,21941 + def _iter_indented_subactions(624,22493 + def _split_lines(635,22808 + def _fill_text(639,22956 + def _get_help_string(644,23202 +class RawDescriptionHelpFormatter(648,23271 + def _fill_text(655,23550 +class RawTextHelpFormatter(659,23673 + def _split_lines(666,23956 +class ArgumentDefaultsHelpFormatter(670,24032 + def _get_help_string(677,24311 +def _get_action_name(691,24756 +class ArgumentError(704,25109 + def __init__(711,25349 + def __str__(715,25480 +class ArgumentTypeError(724,25770 +class Action(733,25944 + def __init__(784,28392 + def _get_kwargs(806,29013 + def __call__(820,29333 +class _StoreAction(824,29470 + def __init__(826,29499 + def __call__(855,30524 +class _StoreConstAction(859,30643 + def __init__(861,30677 + def __call__(878,31149 +class _StoreTrueAction(882,31272 + def __init__(884,31316 +class _StoreFalseAction(899,31712 + def __init__(901,31757 +class _AppendAction(916,32154 + def __init__(918,32184 + def __call__(947,33217 +class _AppendConstAction(953,33432 + def __init__(955,33467 + def __call__(973,33969 +class _CountAction(979,34188 + def __init__(981,34217 + def __call__(995,34604 +class _HelpAction(1000,34789 + def __init__(1002,34817 + def __call__(1014,35152 +class _VersionAction(1019,35275 + def __init__(1021,35306 + def __call__(1035,35742 +class _SubParsersAction(1044,36044 + class _ChoicesPseudoAction(1046,36078 + def __init__(1048,36119 + def __init__(1052,36296 + def add_parser(1073,36882 + def _get_subactions(1089,37484 + def __call__(1092,37553 +class FileType(1121,38612 + def __init__(1134,39088 + def __call__(1138,39195 + def __repr__(1155,39769 +class Namespace(1164,40067 + def __init__(1171,40261 + def __eq__(1177,40391 + def __ne__(1180,40462 + def __contains__(1183,40527 +class _ActionsContainer(1187,40598 + def __init__(1189,40632 + def register(1241,42514 + def _registry_get(1245,42668 + def set_defaults(1251,42924 + def get_default(1260,43258 + def add_argument(1270,43571 + def add_argument_group(1310,45229 + def add_mutually_exclusive_group(1315,45398 + def _add_action(1320,45584 + def _remove_action(1341,46342 + def _add_container_actions(1344,46418 + def _get_positional_kwargs(1384,48148 + def _get_optional_kwargs(1400,48819 + def _pop_action_class(1435,50385 + def _get_handler(1439,50548 + def _check_conflict(1448,50929 + def _handle_conflict_error(1462,51484 + def _handle_conflict_resolve(1469,51847 +class _ArgumentGroup(1484,52391 + def __init__(1486,52433 + def _add_action(1507,53356 + def _remove_action(1512,53522 +class _MutuallyExclusiveGroup(1517,53664 + def __init__(1519,53712 + def _add_action(1524,53898 + def _remove_action(1532,54183 +class ArgumentParser(1537,54313 + def __init__(1555,55249 + def identity(1601,56874 + def _get_kwargs(1636,58131 + def add_subparsers(1651,58551 + def _add_action(1682,59904 + def _get_optional_actions(1689,60108 + def _get_positional_actions(1694,60255 + def parse_args(1702,60540 + def parse_known_args(1709,60786 + def _parse_known_args(1744,62246 + def take_action(1791,64314 + def consume_optional(1812,65442 + def consume_positionals(1889,69117 + def _read_args_from_files(1979,73056 + def convert_arg_line_to_args(2008,74252 + def _match_argument(2011,74329 + def _match_arguments_partial(2030,75137 + def _parse_optional(2046,75811 + def _get_option_tuples(2103,78232 + def _get_nargs_pattern(2147,80156 + def _get_values(2191,81573 + def _get_value(2240,83582 + def _check_value(2265,84534 + def format_usage(2275,84979 + def format_help(2281,85205 + def format_version(2304,85938 + def _get_formatter(2314,86308 + def print_usage(2320,86475 + def print_help(2325,86625 + def print_version(2330,86773 + def _print_message(2338,87087 + def exit(2347,87320 + def error(2352,87465 -src/linker/xalt_generate_linkdata.C,114 -static const char* blank0 20,381 -static const char* comma 21,413 -double convert_double(23,447 -int main(37,692 +contrib/supporting_clang/README.txt,105 + $ cd /usr/bin; rm ld;24,842 + $ cd /usr/bin; rm ld; ln -s ld.bfd ld.x;x24,842 + setenv(28,913 -src/linker/parseLDTrace.C,82 -void addPath2Set(10,185 -void parseLDTrace(20,420 -void readFunctionList(78,2006 +contrib/upgradeDB_0.7.5-1.1.3.py,95 +class CmdLineOptions(36,1394 + def __init__(39,1462 + def execute(43,1519 +def main(50,1804 -src/linker/xalt_generate_watermark.C,17 -int main(14,255 +contrib/queries/LinkRunCountByPeriod.py,24 +def add_months(27,1323 -src/linker/parseJsonStr.h,28 -#define PARSEJSONSTR_H2,23 +contrib/cuda_example/sample_output.txt,14 +Memory 8,254 -src/linker/xalt_utils.h,26 -#define XALT_UTILS_H2,21 +contrib/cuda_example/Makefile,55 +NVCC 1,0 +CFLAGS 3,13 +hw2:hw25,27 +clean:clean8,68 -src/linker/Module.mk.in,15 -local_dir 1,0 +contrib/cuda_example/hw2.cu,345 +class Timer13,246 + Timer(16,268 + void start(17,290 + void stop(23,512 + void reset(24,571 + std::string labels[labels27,624 + timeval times[times28,652 + int n;29,675 +void Timer::print(print32,690 +void initialize(46,1219 +void smooth(54,1394 +__global__ void smooth_gpu(64,1790 +void count(77,2268 +int main(88,2477 -src/linker/jsmn.c,223 -static jsmntok_t *jsmn_alloc_token(jsmn_alloc_token6,82 -static void jsmn_fill_token(24,528 -static int jsmn_parse_primitive(35,812 -static int jsmn_parse_string(84,2367 -int jsmn_parse(151,5477 -void jsmn_init(306,13339 +contrib/clear_stack_execute_bit/migration_for_execstack_issue.txt,67 +If we have cleared this execstack bit,8,212 + int main(84,3022 -src/linker/xalt_cxx_types.h,352 -#define XALT_CXX_TYPES_H2,25 -typedef std::unordered_map Table;11,168 -typedef std::unordered_set Set;12,227 -typedef std::vector Vstring;13,284 -typedef unsigned int uint;14,345 +contrib/clear_stack_execute_bit/example.c,40 +void sort_bytes(8,218 +int main(21,511 -src/linker/xalt_rmap_exists.C,15 -int main(5,69 +contrib/clear_stack_execute_bit/monthly_clear_bits.sh,49 + left=7,114 + rght=8,141 + strt=10,169 -src/linker/xalt_extract_linker.C,113 -static const char* blank0 11,171 -static const char* comma 12,208 -void extract_linker(14,247 -int main(63,1591 +contrib/clear_stack_execute_bit/xalt_db_clear_bit_link.py,171 +class CmdLineOptions(17,461 + def __init__(20,529 + def execute(24,586 +def find_link_files(36,1375 +def capture(50,1748 +def clear_stack_bit(66,2153 +def main(72,2352 -src/linker/parseJsonStr.C,114 -void processTable(11,182 -void processArray(43,1234 -void processValue(109,3143 -void parseCompTJsonStr(123,3654 +contrib/clear_stack_execute_bit/report_bit_execs.sh,51 +syshost=4,21 + result=11,134 + host=13,214 -src/util/capture.h,23 -#define CAPTURE_H2,18 +contrib/clear_stack_execute_bit/xalt_db_clear_bit_run.py,170 +class CmdLineOptions(16,460 + def __init__(19,528 + def execute(23,585 +def find_run_files(35,1374 +def capture(53,1835 +def clear_stack_bit(69,2240 +def main(73,2357 -src/util/xalt_tmpdir.h,27 -#define XALT_TMPDIR_H2,22 +contrib/clear_stack_execute_bit/clear_bit.sh,51 +syshost=4,37 + result=13,223 + host=15,304 -src/util/zstring.c,104 +contrib/build_exec_in_tmp.patch,16 + status=13,428 + +src/xalt.model.mwb,3321 +^r `- yޙubؒ%3 /hKΣŅwN OC шFrF15,5015 +ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1bh32,7610 +ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%ZZ32,7610 +ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;PP32,7610 +ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;P럪bc]7u}˒sp)D1t/AOCuWfML@@D!jj32,7610 +ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;P럪bc]7u}˒sp)D1t/AOCuWfML@@D!jG]dsm@dsm32,7610 +ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;P럪bc]7u}˒sp)D1t/AOCuWfML@@D!jG]dsm@e, ԁ)@M@M32,7610 +model-schemas: mydb,35,8943 + +src/addRpath.sh,30 +ansA=4,36 + path=9,85 + +src/util/xalt_vendor_note.c,526 +#define _GNU_SOURCE 1,0 +static int xalt_tracing 17,406 +struct elf_note 20,458 + int32_t name_size;21,476 + int32_t desc_size;22,497 + int32_t type;23,518 + uint8_t data[data24,534 +typedef struct elf_note elf_note;26,580 +struct vendor_note 28,615 + char name[name29,636 + uint8_t version;30,722 + char note[note31,741 +typedef struct vendor_note vendor_note;33,787 +static int read_watermark(58,1598 +static int handle_program_header(87,2433 +bool xalt_vendor_note(126,3571 +bool xalt_vendor_note(137,3810 + +src/util/zcmprss.c,71 #define BUFFSZ 8,125 #define MAX(9,146 char* compress_string(11,188 -char* uncompress_string(63,1193 -src/util/uthash.h,5076 -#define UTHASH_H25,1165 -#define UTHASH_VERSION 27,1183 -#define DECLTYPE(40,1792 -#define NO_DECLTYPE42,1894 -#define NO_DECLTYPE45,2016 -#define DECLTYPE(47,2095 -#define DECLTYPE(52,2163 -#define DECLTYPE_ASSIGN(53,2183 -#define DECLTYPE_ASSIGN(59,2533 -typedef unsigned int uint32_t;72,3067 -typedef unsigned char uint8_t;73,3098 -typedef unsigned int uint32_t;78,3211 -typedef unsigned char uint8_t;79,3242 -#define uthash_malloc(83,3303 -#define uthash_free(86,3391 -#define uthash_bzero(89,3479 -#define uthash_strlen(92,3551 -#define uthash_memcmp(99,3787 -#define HASH_KEYCMP(103,3858 -#define uthash_noexpand_fyi(107,3942 -#define uthash_expand_fyi(110,4055 -#define HASH_NONFATAL_OOM 114,4169 -#define uthash_nonfatal_oom(121,4300 -#define HASH_RECORD_OOM(124,4386 -#define IF_HASH_NONFATAL_OOM(125,4447 -#define uthash_fatal(131,4580 -#define HASH_RECORD_OOM(134,4652 -#define IF_HASH_NONFATAL_OOM(135,4713 -#define HASH_INITIAL_NUM_BUCKETS 140,4786 -#define HASH_INITIAL_NUM_BUCKETS_LOG2 141,4866 -#define HASH_BKT_CAPACITY_THRESH 142,4946 -#define ELMT_FROM_HH(145,5088 -#define HH_FROM_ELMT(147,5216 -#define HASH_ROLLBACK_BKT(149,5305 -#define HASH_VALUE(159,5982 -#define HASH_FIND_BYHASHVALUE(164,6244 -#define HASH_FIND(176,7116 -#define HASH_BLOOM_BITLEN 187,7811 -#define HASH_BLOOM_BYTELEN 188,7857 -#define HASH_BLOOM_MAKE(189,7955 -#define HASH_BLOOM_FREE(201,8798 -#define HASH_BLOOM_BITSET(206,9060 -#define HASH_BLOOM_BITTEST(207,9131 -#define HASH_BLOOM_ADD(209,9203 -#define HASH_BLOOM_TEST(212,9382 -#define HASH_BLOOM_MAKE(216,9568 -#define HASH_BLOOM_FREE(217,9603 -#define HASH_BLOOM_ADD(218,9632 -#define HASH_BLOOM_TEST(219,9666 -#define HASH_BLOOM_BYTELEN 220,9705 -#define HASH_MAKE_TABLE(223,9743 -#define HASH_REPLACE_BYHASHVALUE_INORDER(255,12246 -#define HASH_REPLACE_BYHASHVALUE(265,12967 -#define HASH_REPLACE(275,13657 -#define HASH_REPLACE_INORDER(282,14090 -#define HASH_APPEND_LIST(289,14539 -#define HASH_AKBI_INNER_LOOP(297,15050 -#undef HASH_AKBI_INNER_LOOP307,15663 -#define HASH_AKBI_INNER_LOOP(308,15691 -#define HASH_ADD_TO_TABLE(324,16647 -#define HASH_ADD_TO_TABLE(348,18327 -#define HASH_ADD_KEYPTR_BYHASHVALUE_INORDER(361,19013 -#define HASH_ADD_KEYPTR_INORDER(394,21607 -#define HASH_ADD_BYHASHVALUE_INORDER(401,22046 -#define HASH_ADD_INORDER(404,22236 -#define HASH_ADD_KEYPTR_BYHASHVALUE(407,22401 -#define HASH_ADD_KEYPTR(428,23991 -#define HASH_ADD_BYHASHVALUE(435,24419 -#define HASH_ADD(438,24589 -#define HASH_TO_BKT(441,24738 -#define HASH_DELETE(458,25676 -#define HASH_DELETE_HH(461,25804 -#define HASH_FIND_STR(491,28113 -#define HASH_ADD_STR(496,28457 -#define HASH_REPLACE_STR(501,28801 -#define HASH_FIND_INT(506,29145 -#define HASH_ADD_INT(508,29275 -#define HASH_REPLACE_INT(510,29405 -#define HASH_FIND_PTR(512,29548 -#define HASH_ADD_PTR(514,29681 -#define HASH_REPLACE_PTR(516,29814 -#define HASH_DEL(518,29960 -#define HASH_OOPS(526,30308 -#define HASH_FSCK(527,30388 -#define HASH_FSCK(576,34307 -#define HASH_EMIT_KEY(583,34598 -#define HASH_EMIT_KEY(590,35031 -#define HASH_FCN 595,35185 -#define HASH_FCN 597,35222 -#define HASH_BER(601,35339 -#define HASH_SAX(614,36163 -#define HASH_FNV(624,36862 -#define HASH_OAT(635,37622 -#define HASH_JEN_MIX(650,38714 -#define HASH_JEN(663,39640 -#undef get16bits704,42842 -#define get16bits(707,43015 -#define get16bits(711,43097 -#define HASH_SFH(714,43251 -#define HASH_FIND_IN_BKT(758,46731 -#define HASH_ADD_TO_BKT(780,48348 -#define HASH_DEL_IN_BKT(802,49983 -#define HASH_EXPAND_BUCKETS(846,52515 -#define HASH_SORT(902,56893 -#define HASH_SRT(903,56949 -#define HASH_SELECT(992,64076 -#define HASH_CLEAR(1050,68744 -#define HASH_OVERHEAD(1061,69504 -#define HASH_ITER(1069,69979 -#define HASH_ITER(1073,70249 -#define HASH_COUNT(1079,70550 -#define HASH_CNT(1080,70593 -typedef struct UT_hash_bucket 1082,70668 - struct UT_hash_handle *hh_head;hh_head1083,70700 - unsigned count;1084,70735 - unsigned expand_mult;1098,71594 -} UT_hash_bucket;1100,71620 -#define HASH_SIGNATURE 1103,71713 -#define HASH_BLOOM_SIGNATURE 1104,71748 -typedef struct UT_hash_table 1106,71790 - UT_hash_bucket *buckets;buckets1107,71821 - unsigned num_buckets,1108,71849 - unsigned num_buckets, log2_num_buckets;1108,71849 - unsigned num_items;1109,71892 - struct UT_hash_handle *tail;tail1110,71915 - ptrdiff_t hho;1111,71994 - unsigned ideal_chain_maxlen;1115,72230 - unsigned nonideal_items;1120,72502 - unsigned ineff_expands,1128,72979 - unsigned ineff_expands, noexpand;1128,72979 - uint32_t signature;1130,73017 - uint32_t bloom_sig;1132,73115 - uint8_t *bloom_bv;bloom_bv1133,73196 - uint8_t bloom_nbits;1134,73218 -} UT_hash_table;1137,73250 -typedef struct UT_hash_handle 1139,73268 - struct UT_hash_table *tbl;tbl1140,73300 - void *prev;prev1141,73330 - void *next;next1142,73404 - struct UT_hash_handle *hh_prev;hh_prev1143,73478 - struct UT_hash_handle *hh_next;hh_next1144,73552 - void *key;key1145,73626 - unsigned keylen;1146,73700 - unsigned hashv;1147,73774 -} UT_hash_handle;1148,73848 +src/util/process.c,98 +void init_proc(14,256 +void build_proc(22,398 +void free_proc(74,1591 +void proc_cmdline(80,1689 -src/util/zstring.h,23 -#define ZSTRING_H2,18 +src/util/xalt_syshost.h,28 +#define XALT_SYSHOST_H2,23 + +src/util/transmit.h,24 +#define TRANSMIT_H2,19 + +src/util/xalt_configuration_report.C,182 +#define RESET 23,482 +#define BOLDRED 24,512 +static const char* blank0 26,571 +static const char* comma 27,608 +const int dateSZ=28,646 +void displayArray(30,669 +int main(50,1304 + +src/util/extern_hack_end.h,35 +#undef EXTERN1,0 +#undef INIT2,14 + +src/util/compute_sha1.h,28 +#define COMPUTE_SHA1_H2,23 + +src/util/xalt_timer.h,115 +#define XALT_TIMERS_H2,22 + double init;7,63 + double fini;8,78 + double gpu_setup;9,93 +} xalt_timer_t;10,113 src/util/base64.c,148 const static char* b64=37,1191 const static unsigned char unb64[unb6440,1304 char* base64_encode(72,2968 -unsigned char* base64_decode(122,4374 +unsigned char* base64_decode(122,4375 -src/util/xalt_c_utils.h,28 -#define XALT_C_UTILS_H2,23 +src/util/xalt_quotestring.h,27 +#define QUOTESTRING_H2,22 -src/util/build_uuid.h,26 -#define BUILD_UUID_H2,21 +src/util/xalt_config.h.in,1241 +#define XALT_CONFIG_H2,22 +#define SITE_CONTROLLED_PREFIX 8,147 +#define CRYPTO_STR 9,209 +#define CURL_STR 10,259 +#define CXX_LD_LIBRARY_PATH 11,307 +#define GPU_STR 12,366 +#define HAVE_32BIT 13,413 +#define HAVE_DCGM 14,463 +#define HAVE_NVML 15,512 +#define HAVE_WORKING_LIBUUID 16,561 +#define MY_HOSTNAME_PARSER 17,621 +#define SYSHOST_CONFIG 18,679 +#define SYSLOG_MSG_SZ 19,733 +#define TRANSMISSION 20,785 +#define UUID_STR 21,837 +#define XALT_CMDLINE_RECORD 22,885 +#define XALT_COMPUTE_SHA1 23,944 +#define XALT_CONFIG_PY 24,999 +#define XALT_DEFAULT_DIR 25,1053 +#define XALT_ETC_DIR 26,1109 +#define XALT_FILE_PREFIX 27,1156 +#define XALT_FUNCTION_TRACKING 28,1212 +#define XALT_GIT_VERSION 29,1274 +#define XALT_GPU_TRACKING 30,1330 +#define XALT_GPU_TRACKING_STYLE 31,1387 +#define XALT_INSTALL_OS 32,1450 +#define XALT_INTERFACE_VERSION 33,1505 +#define XALT_LD_LIBRARY_PATH 34,1567 +#define XALT_LOGGING_URL 35,1627 +#define XALT_MPI_TRACKING 36,1683 +#define XALT_PRELOAD_ONLY 37,1740 +#define XALT_PRIME_FMT 38,1792 +#define XALT_PRIME_NUMBER 39,1846 +#define XALT_SIGNAL_HANDLER 40,1902 +#define XALT_SCALAR_TRACKING 41,1961 +#define XALT_SYSTEM_PATH 42,2021 +#define XALT_TMPDIR 43,2072 +#define XALT_VERSION 44,2123 -src/util/xalt_vendor_note.c,526 -#define _GNU_SOURCE 1,0 -static int xalt_tracing 16,378 -struct elf_note 19,430 - int32_t name_size;20,448 - int32_t desc_size;21,469 - int32_t type;22,490 - uint8_t data[data23,506 -typedef struct elf_note elf_note;25,552 -struct vendor_note 27,587 - char name[name28,608 - uint8_t version;29,694 - char note[note30,713 -typedef struct vendor_note vendor_note;32,759 -static int read_watermark(57,1570 -static int handle_program_header(86,2404 -bool xalt_vendor_note(125,3542 -bool xalt_vendor_note(136,3781 +src/util/capture.c,43 +#define DATA_SIZE 4,61 +void capture(6,85 -src/util/compute_sha1.h,28 -#define COMPUTE_SHA1_H2,23 +src/util/epoch.c,28 +volatile double epoch(4,42 -src/util/transmit.c,342 -#define _GNU_SOURCE1,0 -#define XALT_LOGGING_LBL 19,370 -#define KIND_LBL 20,411 -#define NB_LBL 21,444 -#define SYSHOST_LBL 22,475 -#define KEY_LBL 23,511 -#define CRC_LBL 24,543 -#define IDX_LBL 25,578 -#define VALUE_LBL 26,610 -#define V_LBL 27,644 -#define INTERFACE_Version 28,674 -const int syslog_msg_sz 29,703 -void transmit(31,745 +src/util/xalt_epoch.c,15 +int main(4,58 -src/util/xalt_syshost.h,28 -#define XALT_SYSHOST_H2,23 +src/util/xalt_debug_macros.h,52 +#define XALT_DEBUG_MACROS2,27 +#define DEBUG(6,82 -src/util/xalt_dir.c,48 -#define _GNU_SOURCE2,20 -char* xalt_dir(12,175 +src/util/build_uuid.c,110 +#define BAD_UUID 11,226 +static void* handle 13,283 +void build_uuid(17,467 +void build_uuid_cleanup(62,1613 + +src/util/debug_macros.h,290 +#define DEBUG_MACROS2,22 +#define STRINGIFY_base(4,45 +#define STRINGIFY(5,74 +#define HERE_fp(7,119 +#define HERE 8,233 +#define ARGS_FIRST(10,270 +#define ARGS_FIRST0(11,328 +#define ARGS_REST(13,362 +#define ARGS_REST0(14,418 +#define MAIN_DEBUG(16,460 +#define MAIN_DEBUG_base(18,583 + +src/util/xalt_vendor_note.h,108 +#define XALT_VENDOR_NOTE_H2,27 +#define XALT_ELF_NOTE_TYPE 4,55 +#define XALT_STAMP_SUPPORTED_VERSION 5,98 + +src/util/build_uuid.h,26 +#define BUILD_UUID_H2,21 + +src/util/utlist.h,4044 +#define UTLIST_H25,1163 +#define UTLIST_VERSION 27,1181 +#define LDECLTYPE(70,2744 +#define NO_DECLTYPE72,2845 +#define NO_DECLTYPE75,2967 +#define LDECLTYPE(77,3046 +#define IF_NO_DECLTYPE(85,3338 +#define LDECLTYPE(86,3366 +#define UTLIST_SV(87,3393 +#define UTLIST_NEXT(88,3496 +#define UTLIST_NEXTASGN(89,3555 +#define UTLIST_PREVASGN(91,3728 +#define UTLIST_RS(92,3836 +#define UTLIST_CASTASGN(93,3911 +#define IF_NO_DECLTYPE(95,4000 +#define UTLIST_SV(96,4026 +#define UTLIST_NEXT(97,4054 +#define UTLIST_NEXTASGN(98,4103 +#define UTLIST_PREVASGN(100,4219 +#define UTLIST_RS(101,4280 +#define UTLIST_CASTASGN(102,4304 +#define LL_SORT(109,4669 +#define LL_SORT2(112,4797 +#define DL_SORT(173,10440 +#define DL_SORT2(176,10574 +#define CDL_SORT(236,16216 +#define CDL_SORT2(239,16351 +#define LL_PREPEND(315,23494 +#define LL_PREPEND2(318,23623 +#define LL_CONCAT(324,24024 +#define LL_CONCAT2(327,24155 +#define LL_APPEND(339,25138 +#define LL_APPEND2(342,25266 +#define LL_INSERT_INORDER(355,26346 +#define LL_INSERT_INORDER2(358,26486 +#define LL_LOWER_BOUND(370,27469 +#define LL_LOWER_BOUND2(373,27611 +#define LL_DELETE(386,28693 +#define LL_DELETE2(389,28821 +#define LL_COUNT(405,30192 +#define LL_COUNT2(408,30387 +#define LL_FOREACH(414,30788 +#define LL_FOREACH2(417,30916 +#define LL_FOREACH_SAFE(420,31061 +#define LL_FOREACH_SAFE2(423,31198 +#define LL_SEARCH_SCALAR(426,31365 +#define LL_SEARCH_SCALAR2(429,31510 +#define LL_SEARCH(436,32008 +#define LL_SEARCH2(439,32144 +#define LL_REPLACE_ELEM2(446,32642 +#define LL_REPLACE_ELEM(466,34401 +#define LL_PREPEND_ELEM2(469,34541 +#define LL_PREPEND_ELEM(492,36676 +#define LL_APPEND_ELEM2(495,36816 +#define LL_APPEND_ELEM(507,37884 +#undef LL_CONCAT2513,38112 +#define LL_CONCAT2(514,38130 +#undef LL_APPEND2527,39210 +#define LL_APPEND2(528,39228 +#undef LL_INSERT_INORDER2540,40211 +#define LL_INSERT_INORDER2(541,40237 +#undef LL_DELETE2557,41608 +#define LL_DELETE2(558,41626 +#undef LL_REPLACE_ELEM2574,42997 +#define LL_REPLACE_ELEM2(575,43021 +#undef LL_PREPEND_ELEM2594,44683 +#define LL_PREPEND_ELEM2(595,44707 +#define DL_PREPEND(622,47011 +#define DL_PREPEND2(625,47145 +#define DL_APPEND(637,48128 +#define DL_APPEND2(640,48261 +#define DL_INSERT_INORDER(654,49438 +#define DL_INSERT_INORDER2(657,49583 +#define DL_LOWER_BOUND(670,50663 +#define DL_LOWER_BOUND2(673,50805 +#define DL_CONCAT(686,51885 +#define DL_CONCAT2(689,52021 +#define DL_DELETE(704,53295 +#define DL_DELETE2(707,53428 +#define DL_COUNT(726,55090 +#define DL_COUNT2(729,55285 +#define DL_FOREACH(735,55686 +#define DL_FOREACH2(738,55814 +#define DL_FOREACH_SAFE(742,56029 +#define DL_FOREACH_SAFE2(745,56166 +#define DL_SEARCH_SCALAR 749,56400 +#define DL_SEARCH 750,56442 +#define DL_SEARCH_SCALAR2 751,56470 +#define DL_SEARCH2 752,56514 +#define DL_REPLACE_ELEM2(754,56545 +#define DL_REPLACE_ELEM(780,58886 +#define DL_PREPEND_ELEM2(783,59032 +#define DL_PREPEND_ELEM(801,60682 +#define DL_APPEND_ELEM2(804,60828 +#define DL_APPEND_ELEM(822,62478 +#undef DL_INSERT_INORDER2828,62711 +#define DL_INSERT_INORDER2(829,62737 +#define CDL_APPEND(861,65537 +#define CDL_APPEND2(864,65671 +#define CDL_PREPEND(878,66848 +#define CDL_PREPEND2(881,66983 +#define CDL_INSERT_INORDER(895,68160 +#define CDL_INSERT_INORDER2(898,68306 +#define CDL_LOWER_BOUND(911,69386 +#define CDL_LOWER_BOUND2(914,69529 +#define CDL_DELETE(927,70609 +#define CDL_DELETE2(930,70743 +#define CDL_COUNT(941,71629 +#define CDL_COUNT2(944,71824 +#define CDL_FOREACH(950,72225 +#define CDL_FOREACH2(953,72354 +#define CDL_FOREACH_SAFE(956,72525 +#define CDL_FOREACH_SAFE2(959,72674 +#define CDL_SEARCH_SCALAR(964,73014 +#define CDL_SEARCH_SCALAR2(967,73160 +#define CDL_SEARCH(974,73658 +#define CDL_SEARCH2(977,73795 +#define CDL_REPLACE_ELEM2(984,74293 +#define CDL_REPLACE_ELEM(1004,76052 +#define CDL_PREPEND_ELEM2(1007,76199 +#define CDL_PREPEND_ELEM(1024,77667 +#define CDL_APPEND_ELEM2(1027,77814 +#define CDL_APPEND_ELEM(1041,78991 +#undef CDL_INSERT_INORDER21047,79226 +#define CDL_INSERT_INORDER2(1048,79253 src/util/test_record_pkg.C,15 int main(5,58 -src/util/xalt_version.h,30 -#define XALT_VERSION_STR 1,0 +src/util/xalt_types.h,574 +#define XALT_TYPES_H2,21 + UT_string* key;11,181 + UT_string* value;12,203 + UT_hash_handle hh;13,227 +} S2S_t;14,248 + UT_string* key;17,275 + double value;18,297 + UT_hash_handle hh;19,321 +} S2D_t;20,342 + UT_string* key;23,369 + UT_hash_handle hh;24,391 +} SET_t;25,412 +typedef struct processTree_t 27,422 + UT_string* m_path;28,453 + UT_string* m_name;29,474 + UT_array* m_cmdlineA;30,495 + pid_t m_pid;31,520 + struct processTree_t *next,next33,541 + struct processTree_t *next, *prev;prev33,541 +} processTree_t;34,578 -src/util/insert.c,157 -void insert_key_double(3,21 -void insert_key_string(14,344 -void insert_key_SET(26,731 -void free_SET(35,1008 -void free_S2D(47,1225 -void free_S2S(59,1450 +src/util/xalt_tmpdir.h,27 +#define XALT_TMPDIR_H2,22 -src/util/buildXALTRecordT.h,34 -#define BUILD_XALT_RECORDT_H2,29 +src/util/xalt_pkg_filter.h,31 +#define XALT_PKG_PARSER_H2,26 + +src/util/xalt_parser.h,547 +#define XALT_PARSER_H2,24 +typedef enum { PKGS=6,108 +typedef enum { PKGS=1, KEEP=6,108 +typedef enum { PKGS=1, KEEP=2, SKIP=6,108 +typedef enum { PKGS=1, KEEP=2, SKIP=3, CUSTOM 6,108 +typedef enum { PKGS=1, KEEP=2, SKIP=3, CUSTOM = 4, CONTINUE 6,108 + JUMP_1 7,174 + JUMP_1 = 6, JUMP_2 7,174 + JUMP_1 = 6, JUMP_2 = 7,JUMP_3 7,174 + JUMP_1 = 6, JUMP_2 = 7,JUMP_3 = 8, JUMP_4 7,174 + JUMP_1 = 6, JUMP_2 = 7,JUMP_3 = 8, JUMP_4 = 9 } xalt_parser;7,174 +EXTERN const char * xalt_parserA[xalt_parserA9,238 +EXTERN int jumpArgA[jumpArgA26,428 -src/util/capture.c,43 -#define DATA_SIZE 4,61 -void capture(6,85 +src/util/extractMain.c,42 +int ascending_sort(6,90 +int main(13,246 + +src/util/xalt_record_pkg.c,87 +#define _GNU_SOURCE1,0 +#define DATESZ 19,388 +void saveValue(23,451 +int main(32,624 src/util/crcFast.c,351 #define WIDTH 23,845 @@ -586,127 +887,454 @@ src/util/crcFast.c,351 crc crcTable[crcTable43,1339 crc crcFast(78,3445 -src/util/base64.h,22 -#define BASE64_H2,17 +src/util/uthash.h,5077 +#define UTHASH_H25,1165 +#define UTHASH_VERSION 27,1183 +#define DECLTYPE(41,1832 +#define NO_DECLTYPE43,1934 +#define NO_DECLTYPE46,2056 +#define DECLTYPE(48,2135 +#define DECLTYPE(53,2203 +#define DECLTYPE_ASSIGN(54,2223 +#define DECLTYPE_ASSIGN(60,2573 +typedef unsigned int uint32_t;73,3107 +typedef unsigned char uint8_t;74,3138 +typedef unsigned int uint32_t;79,3251 +typedef unsigned char uint8_t;80,3282 +#define uthash_malloc(84,3343 +#define uthash_free(87,3432 +#define uthash_bzero(90,3520 +#define uthash_strlen(93,3592 +#define uthash_memcmp(100,3828 +#define HASH_KEYCMP(104,3899 +#define uthash_noexpand_fyi(108,3983 +#define uthash_expand_fyi(111,4096 +#define HASH_NONFATAL_OOM 115,4210 +#define uthash_nonfatal_oom(122,4341 +#define HASH_RECORD_OOM(125,4427 +#define IF_HASH_NONFATAL_OOM(126,4488 +#define uthash_fatal(132,4621 +#define HASH_RECORD_OOM(135,4693 +#define IF_HASH_NONFATAL_OOM(136,4754 +#define HASH_INITIAL_NUM_BUCKETS 141,4827 +#define HASH_INITIAL_NUM_BUCKETS_LOG2 142,4907 +#define HASH_BKT_CAPACITY_THRESH 143,4987 +#define ELMT_FROM_HH(146,5129 +#define HH_FROM_ELMT(148,5257 +#define HASH_ROLLBACK_BKT(150,5346 +#define HASH_VALUE(160,6023 +#define HASH_FIND_BYHASHVALUE(165,6285 +#define HASH_FIND(177,7157 +#define HASH_BLOOM_BITLEN 188,7852 +#define HASH_BLOOM_BYTELEN 189,7898 +#define HASH_BLOOM_MAKE(190,7996 +#define HASH_BLOOM_FREE(202,8839 +#define HASH_BLOOM_BITSET(207,9101 +#define HASH_BLOOM_BITTEST(208,9172 +#define HASH_BLOOM_ADD(210,9244 +#define HASH_BLOOM_TEST(213,9423 +#define HASH_BLOOM_MAKE(217,9609 +#define HASH_BLOOM_FREE(218,9644 +#define HASH_BLOOM_ADD(219,9673 +#define HASH_BLOOM_TEST(220,9707 +#define HASH_BLOOM_BYTELEN 221,9746 +#define HASH_MAKE_TABLE(224,9784 +#define HASH_REPLACE_BYHASHVALUE_INORDER(256,12287 +#define HASH_REPLACE_BYHASHVALUE(266,13008 +#define HASH_REPLACE(276,13698 +#define HASH_REPLACE_INORDER(283,14131 +#define HASH_APPEND_LIST(290,14580 +#define HASH_AKBI_INNER_LOOP(298,15091 +#undef HASH_AKBI_INNER_LOOP308,15704 +#define HASH_AKBI_INNER_LOOP(309,15732 +#define HASH_ADD_TO_TABLE(325,16688 +#define HASH_ADD_TO_TABLE(349,18368 +#define HASH_ADD_KEYPTR_BYHASHVALUE_INORDER(362,19054 +#define HASH_ADD_KEYPTR_INORDER(395,21648 +#define HASH_ADD_BYHASHVALUE_INORDER(402,22087 +#define HASH_ADD_INORDER(405,22277 +#define HASH_ADD_KEYPTR_BYHASHVALUE(408,22442 +#define HASH_ADD_KEYPTR(429,24032 +#define HASH_ADD_BYHASHVALUE(436,24460 +#define HASH_ADD(439,24630 +#define HASH_TO_BKT(442,24779 +#define HASH_DELETE(459,25717 +#define HASH_DELETE_HH(462,25845 +#define HASH_FIND_STR(492,28154 +#define HASH_ADD_STR(497,28498 +#define HASH_REPLACE_STR(502,28842 +#define HASH_FIND_INT(507,29186 +#define HASH_ADD_INT(509,29316 +#define HASH_REPLACE_INT(511,29446 +#define HASH_FIND_PTR(513,29589 +#define HASH_ADD_PTR(515,29722 +#define HASH_REPLACE_PTR(517,29855 +#define HASH_DEL(519,30001 +#define HASH_OOPS(527,30349 +#define HASH_FSCK(528,30429 +#define HASH_FSCK(577,34348 +#define HASH_EMIT_KEY(584,34639 +#define HASH_EMIT_KEY(591,35072 +#define HASH_FCN 596,35226 +#define HASH_FCN 598,35263 +#define HASH_BER(602,35380 +#define HASH_SAX(615,36204 +#define HASH_FNV(625,36903 +#define HASH_OAT(636,37663 +#define HASH_JEN_MIX(651,38755 +#define HASH_JEN(664,39681 +#undef get16bits705,42883 +#define get16bits(708,43056 +#define get16bits(712,43138 +#define HASH_SFH(715,43292 +#define HASH_FIND_IN_BKT(759,46772 +#define HASH_ADD_TO_BKT(781,48389 +#define HASH_DEL_IN_BKT(803,50024 +#define HASH_EXPAND_BUCKETS(847,52556 +#define HASH_SORT(903,56934 +#define HASH_SRT(904,56990 +#define HASH_SELECT(993,64117 +#define HASH_CLEAR(1051,68785 +#define HASH_OVERHEAD(1062,69545 +#define HASH_ITER(1070,70020 +#define HASH_ITER(1074,70290 +#define HASH_COUNT(1080,70591 +#define HASH_CNT(1081,70634 +typedef struct UT_hash_bucket 1083,70709 + struct UT_hash_handle *hh_head;hh_head1084,70741 + unsigned count;1085,70776 + unsigned expand_mult;1099,71635 +} UT_hash_bucket;1101,71661 +#define HASH_SIGNATURE 1104,71754 +#define HASH_BLOOM_SIGNATURE 1105,71789 +typedef struct UT_hash_table 1107,71831 + UT_hash_bucket *buckets;buckets1108,71862 + unsigned num_buckets,1109,71890 + unsigned num_buckets, log2_num_buckets;1109,71890 + unsigned num_items;1110,71933 + struct UT_hash_handle *tail;tail1111,71956 + ptrdiff_t hho;1112,72035 + unsigned ideal_chain_maxlen;1116,72271 + unsigned nonideal_items;1121,72543 + unsigned ineff_expands,1129,73020 + unsigned ineff_expands, noexpand;1129,73020 + uint32_t signature;1131,73058 + uint32_t bloom_sig;1133,73156 + uint8_t *bloom_bv;bloom_bv1134,73237 + uint8_t bloom_nbits;1135,73259 +} UT_hash_table;1138,73291 +typedef struct UT_hash_handle 1140,73309 + struct UT_hash_table *tbl;tbl1141,73341 + void *prev;prev1142,73371 + void *next;next1143,73445 + struct UT_hash_handle *hh_prev;hh_prev1144,73519 + struct UT_hash_handle *hh_next;hh_next1145,73593 + void *key;key1146,73667 + unsigned keylen;1147,73741 + unsigned hashv;1148,73815 +} UT_hash_handle;1149,73889 -src/util/extractMain.c,42 -int ascending_sort(6,90 -int main(13,246 +src/util/zuncmprss.c,73 +#define BUFFSZ 8,125 +#define MAX(9,146 +char* uncompress_string(11,188 -src/util/process.h,165 -#define PROCESS_H2,18 - UT_string* m_exe;17,215 - UT_string* m_name;18,237 - pid_t m_pid;19,260 - pid_t m_parent;20,282 - } process_t;21,307 +src/util/xalt_dir.h,24 +#define XALT_DIR_H2,19 + +src/util/compute_sha1.c,90 +static void * handle 17,390 +void compute_sha1(19,421 +void compute_sha1_cleanup(80,1739 + +src/util/xalt_quotestring.c,285 +#define HERE 7,134 +static const char *qcharA[qcharA11,268 +static const char escCharA[escCharA17,785 +static char* buff 20,940 +static unsigned int sz 21,973 +const char* xalt_quotestring(24,1005 +const char * xalt_unquotestring(93,2728 +void xalt_quotestring_free(199,5734 src/util/utarray.h,1588 #define UTARRAY_H27,1215 #define UTARRAY_VERSION 29,1234 -#define UTARRAY_UNUSED 36,1387 -#define UTARRAY_UNUSED38,1444 -#define utarray_oom(43,1579 -#define utarray_oom(47,1635 -typedef void (ctor_f)50,1674 -typedef void (dtor_f)51,1725 -typedef void (init_f)52,1759 - size_t sz;54,1810 - init_f *init;init55,1825 - ctor_f *copy;copy56,1843 - dtor_f *dtor;dtor57,1861 -} UT_icd;58,1879 - unsigned i,61,1907 - unsigned i,n;61,1907 - UT_icd icd;62,1976 - char *d;d63,2042 -} UT_array;64,2088 -#define utarray_init(66,2101 -#define utarray_done(71,2353 -#define utarray_new(84,3245 -#define utarray_free(92,3737 -#define utarray_reserve(97,3989 -#define utarray_push_back(109,4801 -#define utarray_pop_back(115,5133 -#define utarray_extend_back(120,5385 -#define utarray_len(127,5797 -#define utarray_eltptr(129,5830 -#define _utarray_eltptr(130,5905 -#define utarray_insert(132,5975 -#define utarray_inserta(144,6787 -#define utarray_resize(165,8322 -#define utarray_concat(186,9859 -#define utarray_erase(190,10031 -#define utarray_renew(204,11003 -#define utarray_clear(209,11255 -#define utarray_sort(221,12067 -#define utarray_find(225,12239 -#define utarray_front(227,12313 -#define utarray_next(228,12381 -#define utarray_prev(229,12528 -#define utarray_back(230,12667 -#define utarray_eltidx(231,12741 -static void utarray_str_cpy(234,12883 -static void utarray_str_dtor(238,13044 -static const UT_icd ut_str_icd UTARRAY_UNUSED 242,13151 -static const UT_icd ut_int_icd UTARRAY_UNUSED 243,13254 -static const UT_icd ut_ptr_icd UTARRAY_UNUSED 244,13332 - -src/util/xalt_c_utils.c,307 -#define _GNU_SOURCE1,0 +#define UTARRAY_UNUSED 38,1428 +#define UTARRAY_UNUSED40,1485 +#define utarray_oom(45,1620 +#define utarray_oom(49,1676 +typedef void (ctor_f)52,1715 +typedef void (dtor_f)53,1766 +typedef void (init_f)54,1800 + size_t sz;56,1851 + init_f *init;init57,1866 + ctor_f *copy;copy58,1884 + dtor_f *dtor;dtor59,1902 +} UT_icd;60,1920 + unsigned i,63,1948 + unsigned i,n;63,1948 + UT_icd icd;64,2017 + char *d;d65,2083 +} UT_array;66,2129 +#define utarray_init(68,2142 +#define utarray_done(73,2394 +#define utarray_new(86,3286 +#define utarray_free(94,3779 +#define utarray_reserve(99,4031 +#define utarray_push_back(111,4843 +#define utarray_pop_back(117,5175 +#define utarray_extend_back(122,5427 +#define utarray_len(129,5839 +#define utarray_eltptr(131,5872 +#define _utarray_eltptr(132,5947 +#define utarray_insert(134,6017 +#define utarray_inserta(146,6829 +#define utarray_resize(167,8364 +#define utarray_concat(188,9901 +#define utarray_erase(192,10073 +#define utarray_renew(206,11045 +#define utarray_clear(211,11297 +#define utarray_sort(223,12109 +#define utarray_find(227,12281 +#define utarray_front(229,12355 +#define utarray_next(230,12423 +#define utarray_prev(231,12570 +#define utarray_back(232,12709 +#define utarray_eltidx(233,12783 +static void utarray_str_cpy(236,12925 +static void utarray_str_dtor(240,13086 +static const UT_icd ut_str_icd UTARRAY_UNUSED 244,13193 +static const UT_icd ut_int_icd UTARRAY_UNUSED 245,13296 +static const UT_icd ut_ptr_icd UTARRAY_UNUSED 246,13374 + +src/util/insert.c,157 +void insert_key_double(3,21 +void insert_key_string(14,345 +void insert_key_SET(26,733 +void free_SET(35,1011 +void free_S2D(47,1228 +void free_S2S(59,1453 + +src/util/capture.h,23 +#define CAPTURE_H2,18 + +src/util/buildJson.c,792 +static const char* dquote 10,196 +static const char* s_colon 11,235 +static const char* n_colon 12,277 +static const char* t_colon 13,317 +static const char* a_colon 14,358 +static const char* end_bracket 15,399 +static const char* end_brace 16,437 +static const char* bracket 17,475 +static const char* bracketQ 18,513 +static const char* brace 19,553 +static const char* blank0 21,592 +static const char* comma 22,629 +void json_init(24,668 +void json_fini(43,1005 +void json_add_char_str(66,1512 +void json_add_json_str(76,1850 +void json_add_int(85,2147 +void json_add_double(99,2500 +void json_add_S2S(112,2854 +void json_add_SET(138,3664 +void json_add_libT(159,4277 +void json_add_S2D(184,5004 +void json_add_ptA(218,6023 +void json_add_array(273,7728 +void json_add_utarray(295,8387 + +src/util/xalt_header.h.in,1344 +#undef SITE_CONTROLLED_PREFIX8,229 +#undef BIT3211,296 +#undef COMPUTE_SHA1SUM14,347 +#undef CXX_LD_LIBRARY_PATH17,410 +#undef ETC_DIR20,502 +#undef HAVE_DCFCN_H23,557 +#undef HAVE_DCGM_AGENT_H26,614 +#undef HAVE_DLOPEN29,667 +#undef HAVE_INTTYPES_H32,747 +#undef HAVE_LIBUUID35,791 +#undef HAVE_MEMORY_H38,870 +#undef HAVE_NVML_H41,928 +#undef HAVE_OPENSSL_SHA_H44,995 +#undef HAVE_STDINT_H47,1080 +#undef HAVE_STDLIB_H50,1160 +#undef HAVE_STRINGS_H53,1241 +#undef HAVE_STRING_H56,1322 +#undef HAVE_SYS_STAT_H59,1404 +#undef HAVE_SYS_TYPES_H62,1489 +#undef HAVE_UNISTD_H65,1572 +#undef HAVE_UUID_UUID_H68,1639 +#undef MYSQLDB71,1714 +#undef MY_HOSTNAME_PARSER74,1779 +#undef PACKAGE_BUGREPORT77,1885 +#undef PACKAGE_NAME80,1958 +#undef PACKAGE_STRING83,2038 +#undef PACKAGE_TARNAME86,2120 +#undef PACKAGE_URL89,2192 +#undef PACKAGE_VERSION92,2257 +#undef PRELOAD_ONLY95,2322 +#undef STATIC_LIBS98,2398 +#undef STDC_HEADERS101,2473 +#undef SYSHOST_CONFIG104,2525 +#undef SYSTEM_PATH107,2615 +#undef TRANSMISSION110,2698 +#undef USE_DCGM113,2736 +#undef USE_NVML116,2778 +#undef XALT_CONFIG_PY119,2847 +#undef XALT_FILE_PREFIX122,2916 +#undef XALT_FUNCTION_TRACKING125,2976 +#undef XALT_GPU_TRACKING128,3035 +#undef XALT_INSTALL_OS131,3102 +#undef XALT_LOGGING_URL134,3161 +#undef XALT_MPI_TRACKING137,3214 +#undef XALT_SCALAR_TRACKING140,3272 + +src/util/extern_hack_begin.h,87 +# define EXTERN2,22 +# define INIT(3,39 +# define EXTERN 5,67 +# define INIT(6,91 + +src/util/xalt_path_filter.h,190 +#define XALT_PKG_PARSER_H2,26 +typedef enum { PKGS=4,53 +typedef enum { PKGS=1, KEEP=4,53 +typedef enum { PKGS=1, KEEP=2, SKIP=4,53 +typedef enum { PKGS=1, KEEP=2, SKIP=3} xalt_parser;4,53 + +src/util/zstring.c,104 +#define BUFFSZ 8,125 +#define MAX(9,146 +char* compress_string(11,188 +char* uncompress_string(63,1195 + +src/util/zstring.h,23 +#define ZSTRING_H2,18 + +src/util/xalt_c_utils.c,333 +#define _GNU_SOURCE1,0 #define HERE 11,205 #define DATESZ 13,263 int isDirectory(15,283 int mkpath(23,427 const char* xalt_file_transmission_method(42,710 void build_resultDir(53,999 -void build_resultFn(79,1853 -static bool s_start_record 97,2422 -void set_end_record(98,2457 -void my_free(102,2509 - -src/util/process.c,98 -void init_proc(14,254 -void build_proc(22,396 -void free_proc(74,1589 -void proc_cmdline(80,1687 +void build_resultFn(89,2189 +static bool s_start_record 107,2758 +void set_end_record(108,2793 +void* xmalloc(112,2845 +void my_free(122,3110 -src/util/zcmprss.c,71 -#define BUFFSZ 8,125 -#define MAX(9,146 -char* compress_string(11,188 +src/util/xalt_curl_transmit.c,205 +#define _GNU_SOURCE1,0 +const int syslog_msg_sz 16,305 +struct response 18,347 + char *memory;memory19,365 + size_t size;20,381 +int main(24,425 +static size_t _write_callback(30,527 +int main(48,959 src/util/buildXALTRecordT.c,92 #define _GNU_SOURCE1,0 void buildXALTRecordT(11,204 -bool extractXALTRecordString(89,2880 +bool extractXALTRecordString(89,2881 -src/util/xalt_fgets_alloc.h,32 -#define XALT_FGETS_ALLOC_H2,27 +src/util/xalt_dir.c,48 +#define _GNU_SOURCE2,20 +char* xalt_dir(12,175 -src/util/zuncmprss.c,73 -#define BUFFSZ 8,125 -#define MAX(9,146 -char* uncompress_string(11,188 +src/util/buildJson.h,178 +#define BUILD_JSON_H2,21 + Json_TABLE,15,178 + Json_ARRAY16,195 + } Json_kind_t;17,211 + const char* m_final;21,254 + UT_array* m_s;22,279 + } Json_t;23,300 -src/util/xalt_vendor_note.h,108 -#define XALT_VENDOR_NOTE_H2,27 -#define XALT_ELF_NOTE_TYPE 4,55 -#define XALT_STAMP_SUPPORTED_VERSION 5,98 +src/util/transmit.c,342 +#define _GNU_SOURCE1,0 +#define XALT_LOGGING_LBL 19,372 +#define KIND_LBL 20,413 +#define NB_LBL 21,446 +#define SYSHOST_LBL 22,477 +#define KEY_LBL 23,513 +#define CRC_LBL 24,545 +#define IDX_LBL 25,580 +#define VALUE_LBL 26,612 +#define V_LBL 27,646 +#define INTERFACE_Version 28,676 +const int syslog_msg_sz 29,705 +void transmit(31,747 -src/util/epoch.c,28 -volatile double epoch(4,42 +src/util/base64.h,22 +#define BASE64_H2,17 -src/util/xalt_curl_transmit.c,188 -#define _GNU_SOURCE1,0 -const int syslog_msg_sz 14,269 -struct response 16,311 - char *memory;memory17,329 - size_t size;18,345 -static size_t _write_callback(22,407 -int main(40,839 - -src/util/xalt_obfuscate.h,2542 +src/util/xalt_tmpdir.c,93 +#define _GNU_SOURCE1,0 +char* create_xalt_tmpdir_str(11,196 +void remove_xalt_tmpdir(19,370 + +src/util/xalt_fgets_alloc.c,75 +#define HERE 6,97 +static const int SZ 8,155 +int xalt_fgets_alloc(10,184 + +src/util/epoch.h,21 +#define EPOCH_H2,16 + +src/util/utstring.h,1108 +#define UTSTRING_H27,1217 +#define UTSTRING_VERSION 29,1237 +#define UTSTRING_UNUSED 38,1405 +#define UTSTRING_UNUSED40,1463 +#define utstring_oom(45,1600 +#define utstring_oom(49,1658 + char *d;d53,1715 + size_t n;54,1763 + size_t i;55,1802 +} UT_string;56,1849 +#define utstring_reserve(58,1863 +#define utstring_init(71,2546 +#define utstring_done(78,2863 +#define utstring_free(84,3119 +#define utstring_new(90,3375 +#define utstring_renew(99,3815 +#define utstring_clear(108,4254 +#define utstring_bincpy(114,4510 +#define utstring_concat(122,4888 +#define utstring_len(130,5302 +#define utstring_body(132,5336 +UTSTRING_UNUSED static void utstring_printf_va(134,5371 +static void utstring_printf(158,5990 +UTSTRING_UNUSED static void utstring_printf(161,6106 +UTSTRING_UNUSED static void _utstring_BuildTable(172,6560 +UTSTRING_UNUSED static void _utstring_BuildTableR(212,7316 +UTSTRING_UNUSED static long _utstring_find(252,8117 +UTSTRING_UNUSED static long _utstring_findR(285,8855 +UTSTRING_UNUSED static long utstring_find(319,9587 +UTSTRING_UNUSED static long utstring_findR(365,10894 + +src/util/process.h,165 +#define PROCESS_H2,18 + UT_string* m_exe;17,215 + UT_string* m_name;18,237 + pid_t m_pid;19,260 + pid_t m_parent;20,282 + } process_t;21,307 + +src/util/xalt_version.h,30 +#define XALT_VERSION_STR 1,0 + +src/util/insert.h,22 +#define INSERT_H2,17 + +src/util/xalt_obfuscate.h,2700 #define XALT_OBFUSCATE2,23 #define PASTE2(4,47 #define PaStE2(5,82 @@ -780,108 +1408,25 @@ src/util/xalt_obfuscate.h,2542 #define remove_xalt_tmpdir 81,5672 #define run_submission 82,5758 #define set_end_record 83,5844 -#define translate 84,5930 -#define transmit 85,6016 -#define walkProcessTree 86,6102 -#define xalt_dir 87,6188 -#define xalt_fgets_alloc 88,6274 -#define xalt_file_transmission_method 89,6360 -#define xalt_quotestring 90,6446 -#define xalt_quotestring_free 91,6532 -#define xalt_syshost 92,6618 -#define xalt_unquotestring 93,6704 -#define xalt_vendor_note 94,6790 - -src/util/xalt_fgets_alloc.c,75 -#define HERE 6,97 -static const int SZ 8,155 -int xalt_fgets_alloc(10,184 - -src/util/buildJson.c,792 -static const char* dquote 10,194 -static const char* s_colon 11,233 -static const char* n_colon 12,275 -static const char* t_colon 13,315 -static const char* a_colon 14,356 -static const char* end_bracket 15,397 -static const char* end_brace 16,435 -static const char* bracket 17,473 -static const char* bracketQ 18,511 -static const char* brace 19,551 -static const char* blank0 21,590 -static const char* comma 22,627 -void json_init(24,666 -void json_fini(43,1003 -void json_add_char_str(66,1509 -void json_add_json_str(76,1847 -void json_add_int(85,2144 -void json_add_double(99,2497 -void json_add_S2S(112,2851 -void json_add_SET(138,3661 -void json_add_libT(159,4274 -void json_add_S2D(184,5001 -void json_add_ptA(218,6020 -void json_add_array(273,7725 -void json_add_utarray(295,8384 - -src/util/xalt_tmpdir.c,93 -#define _GNU_SOURCE1,0 -char* create_xalt_tmpdir_str(11,196 -void remove_xalt_tmpdir(19,370 - -src/util/xalt_header.h.in,1344 -#undef SITE_CONTROLLED_PREFIX8,229 -#undef BIT3211,296 -#undef COMPUTE_SHA1SUM14,347 -#undef CXX_LD_LIBRARY_PATH17,410 -#undef ETC_DIR20,502 -#undef HAVE_DCFCN_H23,557 -#undef HAVE_DCGM_AGENT_H26,614 -#undef HAVE_DLOPEN29,667 -#undef HAVE_INTTYPES_H32,747 -#undef HAVE_LIBUUID35,791 -#undef HAVE_MEMORY_H38,870 -#undef HAVE_NVML_H41,928 -#undef HAVE_OPENSSL_SHA_H44,995 -#undef HAVE_STDINT_H47,1080 -#undef HAVE_STDLIB_H50,1160 -#undef HAVE_STRINGS_H53,1241 -#undef HAVE_STRING_H56,1322 -#undef HAVE_SYS_STAT_H59,1404 -#undef HAVE_SYS_TYPES_H62,1489 -#undef HAVE_UNISTD_H65,1572 -#undef HAVE_UUID_UUID_H68,1639 -#undef MYSQLDB71,1714 -#undef MY_HOSTNAME_PARSER74,1779 -#undef PACKAGE_BUGREPORT77,1885 -#undef PACKAGE_NAME80,1958 -#undef PACKAGE_STRING83,2038 -#undef PACKAGE_TARNAME86,2120 -#undef PACKAGE_URL89,2192 -#undef PACKAGE_VERSION92,2257 -#undef PRELOAD_ONLY95,2322 -#undef STATIC_LIBS98,2398 -#undef STDC_HEADERS101,2473 -#undef SYSHOST_CONFIG104,2525 -#undef SYSTEM_PATH107,2615 -#undef TRANSMISSION110,2698 -#undef USE_DCGM113,2736 -#undef USE_NVML116,2778 -#undef XALT_CONFIG_PY119,2847 -#undef XALT_FILE_PREFIX122,2916 -#undef XALT_FUNCTION_TRACKING125,2976 -#undef XALT_GPU_TRACKING128,3035 -#undef XALT_INSTALL_OS131,3102 -#undef XALT_LOGGING_URL134,3161 -#undef XALT_MPI_TRACKING137,3214 -#undef XALT_SCALAR_TRACKING140,3272 +#define track_executable 84,5930 +#define track_executable_cleanup 85,6016 +#define translate 86,6102 +#define transmit 87,6188 +#define walkProcessTree 88,6274 +#define xalt_dir 89,6360 +#define xalt_fgets_alloc 90,6446 +#define xalt_file_transmission_method 91,6532 +#define xalt_quotestring 92,6618 +#define xalt_quotestring_free 93,6704 +#define xalt_syshost 94,6790 +#define xalt_unquotestring 95,6876 +#define xalt_vendor_note 96,6962 +#define xmalloc 97,7048 +#define xalt_parserA 99,7135 +#define jumpArgA 100,7221 -src/util/xalt_timer.h,115 -#define XALT_TIMERS_H2,22 - double init;7,63 - double fini;8,78 - double gpu_setup;9,93 -} xalt_timer_t;10,113 +src/util/Module.mk.in,15 +local_dir 1,0 src/util/crc.h,842 #define _CRC_H17,566 @@ -913,432 +1458,135 @@ typedef unsigned long crc;61,1365 #define REFLECT_REMAINDER 68,1561 #define CHECK_VALUE 69,1593 -src/util/compute_sha1.c,90 -static void * handle 17,390 -void compute_sha1(19,421 -void compute_sha1_cleanup(80,1739 +src/util/xalt_fgets_alloc.h,32 +#define XALT_FGETS_ALLOC_H2,27 -src/util/Module.mk.in,15 -local_dir 1,0 +src/util/xalt_c_utils.h,52 +#define XALT_C_UTILS_H2,23 +#define XMALLOC(29,718 -src/util/utstring.h,1108 -#define UTSTRING_H27,1217 -#define UTSTRING_VERSION 29,1237 -#define UTSTRING_UNUSED 37,1365 -#define UTSTRING_UNUSED39,1423 -#define utstring_oom(44,1560 -#define utstring_oom(48,1618 - char *d;d52,1675 - size_t n;53,1723 - size_t i;54,1762 -} UT_string;55,1809 -#define utstring_reserve(57,1823 -#define utstring_init(70,2506 -#define utstring_done(77,2823 -#define utstring_free(83,3079 -#define utstring_new(89,3335 -#define utstring_renew(98,3774 -#define utstring_clear(107,4213 -#define utstring_bincpy(113,4469 -#define utstring_concat(121,4847 -#define utstring_len(129,5261 -#define utstring_body(131,5295 -UTSTRING_UNUSED static void utstring_printf_va(133,5330 -static void utstring_printf(157,5949 -UTSTRING_UNUSED static void utstring_printf(160,6065 -UTSTRING_UNUSED static void _utstring_BuildTable(171,6519 -UTSTRING_UNUSED static void _utstring_BuildTableR(211,7275 -UTSTRING_UNUSED static long _utstring_find(251,8076 -UTSTRING_UNUSED static long _utstring_findR(284,8814 -UTSTRING_UNUSED static long utstring_find(318,9546 -UTSTRING_UNUSED static long utstring_findR(364,10852 - -src/util/xalt_base_types.h,183 -#define XALT_BASE_TYPES_H2,26 -#define HERE 4,53 -#define DEBUG(6,144 -#define DEBUG0(7,261 -#define DEBUG1(8,378 -#define DEBUG2(9,495 -#define DEBUG3(10,612 -#define DEBUG4(11,729 +src/util/buildXALTRecordT.h,34 +#define BUILD_XALT_RECORDT_H2,29 -src/util/epoch.h,21 -#define EPOCH_H2,16 +src/libxalt/xalt_hostname_parser.h,36 +#define XALT_HOSTNAME_PARSER_H2,31 -src/util/insert.h,22 -#define INSERT_H2,17 +src/libxalt/xalt_initialize.c,3832 +#define _GNU_SOURCE27,1220 +# define HOSTNAME_PARSER 85,2551 +# define HOSTNAME_PARSER_CLEANUP 86,2604 +# define HOSTNAME_PARSER 88,2671 +# define HOSTNAME_PARSER_CLEANUP 89,2721 +#define DATESZ 93,2788 +#define FULLDATESZ 94,2811 +#define N_ELEMENTS(95,2840 +typedef enum { BIT_SCALAR 97,2890 +typedef enum { BIT_SCALAR = 1, BIT_PKGS 97,2890 +typedef enum { BIT_SCALAR = 1, BIT_PKGS = 2, BIT_MPI 97,2890 +typedef enum { BIT_SCALAR = 1, BIT_PKGS = 2, BIT_MPI = 4} xalt_tracking_flags;97,2890 +typedef enum { XALT_SUCCESS 99,2970 +typedef enum { XALT_SUCCESS = 0, XALT_TRACKING_OFF,99,2970 +typedef enum { XALT_SUCCESS = 0, XALT_TRACKING_OFF, XALT_WRONG_STATE,99,2970 +typedef enum { XALT_SUCCESS = 0, XALT_TRACKING_OFF, XALT_WRONG_STATE, XALT_RUN_TWICE,99,2970 + XALT_MPI_RANK,100,3056 + XALT_MPI_RANK, XALT_HOSTNAME,100,3056 + XALT_MPI_RANK, XALT_HOSTNAME, XALT_PATH,100,3056 + XALT_MPI_RANK, XALT_HOSTNAME, XALT_PATH, XALT_BAD_JSON_STR,100,3056 + XALT_MPI_RANK, XALT_HOSTNAME, XALT_PATH, XALT_BAD_JSON_STR, XALT_NO_OVERLAP,100,3056 + XALT_UNAME_FAILURE}XALT_UNAME_FAILURE101,3148 + XALT_UNAME_FAILURE} xalt_status;101,3148 +static const char * xalt_reasonA[xalt_reasonA103,3197 +static const char * xalt_build_descriptA[xalt_build_descriptA117,3869 +static const char * xalt_run_descriptA[xalt_run_descriptA128,4384 +static const char * xalt_run_short_descriptA[xalt_run_short_descriptA136,4723 +#define STR(159,5573 +#define StR1_(160,5599 +#define BUFSZ 162,5620 +static xalt_timer_t xalt_timer;163,5644 +static int countA[countA164,5676 +static char buffer[buffer165,5707 +static char uuid_str[uuid_str166,5742 +static char exec_path[exec_path167,5776 +static char * usr_cmdline;168,5819 +static char * watermark 170,5853 +static xalt_status reject_flag 171,5903 +static int run_mask 172,5961 +static int have_uuid 173,6008 +static long always_record 174,6055 +static double probability 175,6103 +static double testing_runtime 176,6152 +static int orig_pid 177,6202 +static pid_t ppid 178,6249 +static int errfd 179,6296 +static double my_rand 180,6344 +static double start_time 181,6393 +static double end_time 182,6442 +static double frac_time 183,6491 +static long my_rank 184,6540 +static long my_size 185,6588 +static int num_tasks 186,6636 +static int xalt_kind 187,6683 +static int xalt_tracing 188,6730 +static int xalt_run_tracing 189,6777 +static int xalt_gpu_tracking 190,6824 +static int xalt_sampling 191,6871 +static int num_gpus 192,6918 +static int b64_len 193,6965 +static int b64_wm_len 194,7012 +static int signal_hdlr_called 195,7059 +static unsigned long long __time 197,7122 +static void * nvml_dl_handle 198,7169 +static void * dcgm_dl_handle 217,8263 +static dcgmHandle_t dcgm_handle 218,8313 +#define DCGMFUNC2(221,8495 +void myinit(256,10122 +void wrapper_for_myfini(839,29145 +static void close_out(851,29421 +void myfini(865,29605 +static int load_nvml(1147,39867 +static int load_dcgm(1198,41750 +static long compute_value(1242,43377 +static void get_abspath(1260,43738 +static volatile double epoch(1275,44082 +static unsigned int mix(1282,44203 +static double prgm_sample_probability(1296,44586 + __attribute__((section("__DATA,__mod_init_func"), used, aligned(sizeof(void*)))) __typeof__(1337,45305 + __attribute__((section("__DATA,__mod_term_func"), used, aligned(sizeof(void*)))) __typeof__(1338,45425 + __attribute__((section(".init_array"))) __typeof__(1340,45551 + __attribute__((section(".fini_array"))) __typeof__(1341,45630 -src/util/xalt_configuration_report.C,182 -#define RESET 23,482 -#define BOLDRED 24,512 -static const char* blank0 26,571 -static const char* comma 27,608 -const int dateSZ=28,646 -void displayArray(30,669 -int main(48,1148 +src/libxalt/parseProcMaps.c,52 +#define _GNU_SOURCE1,0 +void parseProcMaps(41,1981 -src/util/xalt_config.h.in,1241 -#define XALT_CONFIG_H2,22 -#define SITE_CONTROLLED_PREFIX 8,147 -#define CRYPTO_STR 9,209 -#define CURL_STR 10,259 -#define CXX_LD_LIBRARY_PATH 11,307 -#define GPU_STR 12,366 -#define HAVE_32BIT 13,413 -#define HAVE_DCGM 14,463 -#define HAVE_NVML 15,512 -#define HAVE_WORKING_LIBUUID 16,561 -#define MY_HOSTNAME_PARSER 17,621 -#define SYSHOST_CONFIG 18,679 -#define SYSLOG_MSG_SZ 19,733 -#define TRANSMISSION 20,785 -#define UUID_STR 21,837 -#define XALT_CMDLINE_RECORD 22,885 -#define XALT_COMPUTE_SHA1 23,944 -#define XALT_CONFIG_PY 24,999 -#define XALT_DEFAULT_DIR 25,1053 -#define XALT_ETC_DIR 26,1109 -#define XALT_FILE_PREFIX 27,1156 -#define XALT_FUNCTION_TRACKING 28,1212 -#define XALT_GIT_VERSION 29,1274 -#define XALT_GPU_TRACKING 30,1330 -#define XALT_GPU_TRACKING_STYLE 31,1387 -#define XALT_INSTALL_OS 32,1450 -#define XALT_INTERFACE_VERSION 33,1505 -#define XALT_LD_LIBRARY_PATH 34,1567 -#define XALT_LOGGING_URL 35,1627 -#define XALT_MPI_TRACKING 36,1683 -#define XALT_PRELOAD_ONLY 37,1740 -#define XALT_PRIME_FMT 38,1792 -#define XALT_PRIME_NUMBER 39,1846 -#define XALT_SIGNAL_HANDLER 40,1902 -#define XALT_SCALAR_TRACKING 41,1961 -#define XALT_SYSTEM_PATH 42,2021 -#define XALT_TMPDIR 43,2072 -#define XALT_VERSION 44,2123 - -src/util/xalt_types.h,574 -#define XALT_TYPES_H2,21 - UT_string* key;11,179 - UT_string* value;12,201 - UT_hash_handle hh;13,225 -} S2S_t;14,246 - UT_string* key;17,273 - double value;18,295 - UT_hash_handle hh;19,319 -} S2D_t;20,340 - UT_string* key;23,367 - UT_hash_handle hh;24,389 -} SET_t;25,410 -typedef struct processTree_t 27,420 - UT_string* m_path;28,451 - UT_string* m_name;29,472 - UT_array* m_cmdlineA;30,493 - pid_t m_pid;31,518 - struct processTree_t *next,next33,539 - struct processTree_t *next, *prev;prev33,539 -} processTree_t;34,576 - -src/util/build_uuid.c,110 -#define BAD_UUID 11,226 -static void* handle 13,283 -void build_uuid(17,467 -void build_uuid_cleanup(62,1613 - -src/util/utlist.h,4043 -#define UTLIST_H25,1163 -#define UTLIST_VERSION 27,1181 -#define LDECLTYPE(69,2704 -#define NO_DECLTYPE71,2805 -#define NO_DECLTYPE74,2927 -#define LDECLTYPE(76,3006 -#define IF_NO_DECLTYPE(84,3298 -#define LDECLTYPE(85,3326 -#define UTLIST_SV(86,3353 -#define UTLIST_NEXT(87,3456 -#define UTLIST_NEXTASGN(88,3515 -#define UTLIST_PREVASGN(90,3688 -#define UTLIST_RS(91,3796 -#define UTLIST_CASTASGN(92,3871 -#define IF_NO_DECLTYPE(94,3960 -#define UTLIST_SV(95,3986 -#define UTLIST_NEXT(96,4014 -#define UTLIST_NEXTASGN(97,4063 -#define UTLIST_PREVASGN(99,4179 -#define UTLIST_RS(100,4240 -#define UTLIST_CASTASGN(101,4264 -#define LL_SORT(108,4629 -#define LL_SORT2(111,4757 -#define DL_SORT(172,10400 -#define DL_SORT2(175,10534 -#define CDL_SORT(235,16176 -#define CDL_SORT2(238,16311 -#define LL_PREPEND(314,23454 -#define LL_PREPEND2(317,23583 -#define LL_CONCAT(323,23984 -#define LL_CONCAT2(326,24115 -#define LL_APPEND(338,25098 -#define LL_APPEND2(341,25226 -#define LL_INSERT_INORDER(354,26306 -#define LL_INSERT_INORDER2(357,26446 -#define LL_LOWER_BOUND(369,27429 -#define LL_LOWER_BOUND2(372,27571 -#define LL_DELETE(385,28653 -#define LL_DELETE2(388,28781 -#define LL_COUNT(404,30152 -#define LL_COUNT2(407,30347 -#define LL_FOREACH(413,30748 -#define LL_FOREACH2(416,30876 -#define LL_FOREACH_SAFE(419,31021 -#define LL_FOREACH_SAFE2(422,31158 -#define LL_SEARCH_SCALAR(425,31325 -#define LL_SEARCH_SCALAR2(428,31470 -#define LL_SEARCH(435,31968 -#define LL_SEARCH2(438,32104 -#define LL_REPLACE_ELEM2(445,32602 -#define LL_REPLACE_ELEM(465,34361 -#define LL_PREPEND_ELEM2(468,34501 -#define LL_PREPEND_ELEM(491,36636 -#define LL_APPEND_ELEM2(494,36776 -#define LL_APPEND_ELEM(506,37844 -#undef LL_CONCAT2512,38072 -#define LL_CONCAT2(513,38090 -#undef LL_APPEND2526,39170 -#define LL_APPEND2(527,39188 -#undef LL_INSERT_INORDER2539,40171 -#define LL_INSERT_INORDER2(540,40197 -#undef LL_DELETE2556,41568 -#define LL_DELETE2(557,41586 -#undef LL_REPLACE_ELEM2573,42957 -#define LL_REPLACE_ELEM2(574,42981 -#undef LL_PREPEND_ELEM2593,44643 -#define LL_PREPEND_ELEM2(594,44667 -#define DL_PREPEND(621,46971 -#define DL_PREPEND2(624,47105 -#define DL_APPEND(636,48088 -#define DL_APPEND2(639,48221 -#define DL_INSERT_INORDER(653,49398 -#define DL_INSERT_INORDER2(656,49543 -#define DL_LOWER_BOUND(669,50623 -#define DL_LOWER_BOUND2(672,50765 -#define DL_CONCAT(685,51845 -#define DL_CONCAT2(688,51981 -#define DL_DELETE(703,53255 -#define DL_DELETE2(706,53388 -#define DL_COUNT(725,55050 -#define DL_COUNT2(728,55245 -#define DL_FOREACH(734,55646 -#define DL_FOREACH2(737,55774 -#define DL_FOREACH_SAFE(741,55989 -#define DL_FOREACH_SAFE2(744,56126 -#define DL_SEARCH_SCALAR 748,56360 -#define DL_SEARCH 749,56402 -#define DL_SEARCH_SCALAR2 750,56430 -#define DL_SEARCH2 751,56474 -#define DL_REPLACE_ELEM2(753,56505 -#define DL_REPLACE_ELEM(779,58846 -#define DL_PREPEND_ELEM2(782,58992 -#define DL_PREPEND_ELEM(800,60642 -#define DL_APPEND_ELEM2(803,60788 -#define DL_APPEND_ELEM(821,62438 -#undef DL_INSERT_INORDER2827,62671 -#define DL_INSERT_INORDER2(828,62697 -#define CDL_APPEND(860,65497 -#define CDL_APPEND2(863,65631 -#define CDL_PREPEND(877,66808 -#define CDL_PREPEND2(880,66943 -#define CDL_INSERT_INORDER(894,68120 -#define CDL_INSERT_INORDER2(897,68266 -#define CDL_LOWER_BOUND(910,69346 -#define CDL_LOWER_BOUND2(913,69489 -#define CDL_DELETE(926,70569 -#define CDL_DELETE2(929,70703 -#define CDL_COUNT(940,71589 -#define CDL_COUNT2(943,71784 -#define CDL_FOREACH(949,72185 -#define CDL_FOREACH2(952,72314 -#define CDL_FOREACH_SAFE(955,72485 -#define CDL_FOREACH_SAFE2(958,72634 -#define CDL_SEARCH_SCALAR(963,72974 -#define CDL_SEARCH_SCALAR2(966,73120 -#define CDL_SEARCH(973,73618 -#define CDL_SEARCH2(976,73755 -#define CDL_REPLACE_ELEM2(983,74253 -#define CDL_REPLACE_ELEM(1003,76012 -#define CDL_PREPEND_ELEM2(1006,76159 -#define CDL_PREPEND_ELEM(1023,77627 -#define CDL_APPEND_ELEM2(1026,77774 -#define CDL_APPEND_ELEM(1040,78951 -#undef CDL_INSERT_INORDER21046,79186 -#define CDL_INSERT_INORDER2(1047,79213 - -src/util/xalt_dir.h,24 -#define XALT_DIR_H2,19 - -src/util/transmit.h,24 -#define TRANSMIT_H2,19 - -src/util/buildJson.h,178 -#define BUILD_JSON_H2,21 - Json_TABLE,15,178 - Json_ARRAY16,195 - } Json_kind_t;17,211 - const char* m_final;21,254 - UT_array* m_s;22,279 - } Json_t;23,300 - -src/util/xalt_quotestring.h,27 -#define QUOTESTRING_H2,22 - -src/util/xalt_record_pkg.c,130 -#define _GNU_SOURCE1,0 -#define DATESZ 16,302 -#define HERE 17,324 -#define DEBUG0(18,381 -#define DEBUG(19,498 -int main(24,657 - -src/util/xalt_epoch.c,15 -int main(4,58 +src/libxalt/xalt_track_executable.h,37 +#define XALT_TRACK_EXECUTABLE_H2,32 -src/util/xalt_quotestring.c,285 -#define HERE 7,134 -static const char *qcharA[qcharA11,268 -static const char escCharA[escCharA17,785 -static char* buff 20,940 -static unsigned int sz 21,973 -const char* xalt_quotestring(24,1005 -const char * xalt_unquotestring(93,2727 -void xalt_quotestring_free(199,5732 +src/libxalt/walkProcessTree.c,57 +void walkProcessTree(9,156 +void processTreeFree(44,990 src/libxalt/buildUserT.h,27 #define BUILD_USERT_H2,22 -src/libxalt/run_submission.h,30 -#define RUN_SUBMISSION_H2,25 - -src/libxalt/xalt_initialize.c,4002 -#define _GNU_SOURCE27,1220 -# define HOSTNAME_PARSER 85,2546 -# define HOSTNAME_PARSER_CLEANUP 86,2599 -# define HOSTNAME_PARSER 88,2666 -# define HOSTNAME_PARSER_CLEANUP 89,2716 -#define DATESZ 93,2783 -#define FULLDATESZ 94,2806 -#define N_ELEMENTS(95,2835 -typedef enum { BIT_SCALAR 97,2885 -typedef enum { BIT_SCALAR = 1, BIT_PKGS 97,2885 -typedef enum { BIT_SCALAR = 1, BIT_PKGS = 2, BIT_MPI 97,2885 -typedef enum { BIT_SCALAR = 1, BIT_PKGS = 2, BIT_MPI = 4} xalt_tracking_flags;97,2885 -typedef enum { PKGS=98,2964 -typedef enum { PKGS=1, KEEP=98,2964 -typedef enum { PKGS=1, KEEP=2, SKIP=98,2964 -typedef enum { PKGS=1, KEEP=2, SKIP=3} xalt_parser;98,2964 -typedef enum { XALT_SUCCESS 100,3017 -typedef enum { XALT_SUCCESS = 0, XALT_TRACKING_OFF,100,3017 -typedef enum { XALT_SUCCESS = 0, XALT_TRACKING_OFF, XALT_WRONG_STATE,100,3017 -typedef enum { XALT_SUCCESS = 0, XALT_TRACKING_OFF, XALT_WRONG_STATE, XALT_RUN_TWICE,100,3017 - XALT_MPI_RANK,101,3103 - XALT_MPI_RANK, XALT_HOSTNAME,101,3103 - XALT_MPI_RANK, XALT_HOSTNAME, XALT_PATH,101,3103 - XALT_MPI_RANK, XALT_HOSTNAME, XALT_PATH, XALT_BAD_JSON_STR,101,3103 - XALT_MPI_RANK, XALT_HOSTNAME, XALT_PATH, XALT_BAD_JSON_STR, XALT_NO_OVERLAP,101,3103 - XALT_UNAME_FAILURE}XALT_UNAME_FAILURE102,3195 - XALT_UNAME_FAILURE} xalt_status;102,3195 -static const char * xalt_reasonA[xalt_reasonA104,3244 -static const char * xalt_build_descriptA[xalt_build_descriptA118,3916 -static const char * xalt_run_descriptA[xalt_run_descriptA129,4431 -static const char * xalt_run_short_descriptA[xalt_run_short_descriptA137,4770 -#define STR(160,5620 -#define StR1_(161,5646 -#define BUFSZ 163,5667 -static xalt_timer_t xalt_timer;164,5691 -static int countA[countA165,5723 -static char buffer[buffer166,5754 -static char uuid_str[uuid_str167,5789 -static char exec_path[exec_path168,5823 -static char * usr_cmdline;169,5866 -static char * watermark 171,5900 -static xalt_status reject_flag 172,5950 -static int run_mask 173,6008 -static int have_uuid 174,6055 -static long always_record 175,6102 -static double probability 176,6150 -static double testing_runtime 177,6199 -static pid_t ppid 178,6249 -static pid_t pid 179,6296 -static int errfd 180,6343 -static double my_rand 181,6391 -static double start_time 182,6440 -static double end_time 183,6489 -static double frac_time 184,6538 -static long my_rank 185,6587 -static long my_size 186,6635 -static int num_tasks 187,6683 -static int xalt_kind 188,6730 -static int xalt_tracing 189,6777 -static int xalt_run_tracing 190,6824 -static int xalt_gpu_tracking 191,6871 -static int xalt_sampling 192,6918 -static int num_gpus 193,6965 -static int b64_len 194,7012 -static int b64_wm_len 195,7059 -static int signal_hdlr_called 196,7106 -static unsigned long long __time 198,7169 -static void * nvml_dl_handle 199,7216 -static void * dcgm_dl_handle 218,8310 -static dcgmHandle_t dcgm_handle 219,8360 -#define DCGMFUNC2(222,8542 -void myinit(257,10169 -void wrapper_for_myfini(837,29013 -static void close_out(849,29289 -void myfini(860,29448 -static int load_nvml(1130,39375 -static int load_dcgm(1181,41258 -static long compute_value(1225,42885 -static void get_abspath(1243,43246 -static volatile double epoch(1258,43590 -static unsigned int mix(1265,43711 -static double prgm_sample_probability(1279,44094 - __attribute__((section("__DATA,__mod_init_func"), used, aligned(sizeof(void*)))) __typeof__(1317,44808 - __attribute__((section("__DATA,__mod_term_func"), used, aligned(sizeof(void*)))) __typeof__(1318,44928 - __attribute__((section(".init_array"))) __typeof__(1320,45054 - __attribute__((section(".fini_array"))) __typeof__(1321,45133 - -src/libxalt/xalt_env_parser.h,31 -#define XALT_ENV_PARSER_H2,26 - src/libxalt/translate.h,25 #define TRANSLATE_H2,20 -src/libxalt/xalt_path_parser.h,32 -#define XALT_PATH_PARSER_H2,27 - -src/libxalt/buildUserT.c,73 -#define DATESZ 13,235 -int is_directory(15,256 -void buildUserT(23,401 +src/libxalt/my_hostname_parser_dummy.c,68 +int my_hostname_parser(4,63 +void my_hostname_parser_cleanup(8,138 src/libxalt/xalt_test.c,17 int main(10,178 -src/libxalt/xalt_hostname_parser.h,36 -#define XALT_HOSTNAME_PARSER_H2,31 - -src/libxalt/parseProcMaps.c,52 -#define _GNU_SOURCE1,0 -void parseProcMaps(41,1981 - -src/libxalt/walkProcessTree.c,57 -void walkProcessTree(9,156 -void processTreeFree(45,990 - -src/libxalt/parseProcMaps.h,31 -#define PARSE_PROC_MAPS_H2,26 - -src/libxalt/buildEnvT.h,26 -#define BUILD_ENVT_H2,21 +src/libxalt/run_submission.c,258 +static const char *blank0 blank029,642 +static const char *comma comma30,674 +static char sha1buf[sha1buf32,737 +static char buff[buff33,769 +static bool need_sha1 34,798 +void run_submission(36,836 +void pkgRecordTransmit(277,9755 src/libxalt/translate.c,285 static const char * safe_get(7,112 @@ -1351,266 +1599,330 @@ static const char * safe_get(7,112 QueueType_t queueType(20,351 void translate(44,678 -src/libxalt/Module.mk.in,15 -local_dir 1,0 +src/libxalt/xalt_env_parser.h,31 +#define XALT_ENV_PARSER_H2,26 -src/libxalt/run_submission.c,221 -static const char *blank0 blank029,642 -static const char *comma comma30,674 -static char sha1buf[sha1buf32,737 -static bool need_sha1 33,769 -void run_submission(35,807 -void pkgRecordTransmit(228,8041 +src/libxalt/buildEnvT.h,26 +#define BUILD_ENVT_H2,21 -src/libxalt/my_hostname_parser_dummy.c,68 -int my_hostname_parser(4,63 -void my_hostname_parser_cleanup(8,138 +src/libxalt/parseProcMaps.h,31 +#define PARSE_PROC_MAPS_H2,26 -src/libxalt/buildEnvT.c,21 -void buildEnvT(6,93 +src/libxalt/buildUserT.c,73 +#define DATESZ 13,235 +int is_directory(15,256 +void buildUserT(23,401 + +src/libxalt/xalt_path_parser.h,32 +#define XALT_PATH_PARSER_H2,27 src/libxalt/processTree.h,27 #define PROCESSTREE_H2,22 -src/addRpath.sh,30 -ansA=4,36 - path=9,85 - -src/xalt.model.mwb,3321 -^r `- yޙubؒ%3 /hKΣŅwN OC шFrF15,5015 -ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1bh32,7610 -ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%ZZ32,7610 -ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;PP32,7610 -ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;P럪bc]7u}˒sp)D1t/AOCuWfML@@D!jj32,7610 -ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;P럪bc]7u}˒sp)D1t/AOCuWfML@@D!jG]dsm@dsm32,7610 -ˆk`/6BbS%恃O?R*L3NMʼ]|Z`[jfq|d_Ji}X qΕuʸa.pI֢RP1X!zXoJ%PM ct3&>ey8 CE&eVݏ`SD"e_JBf/~YO_Dw䕆u0FCr8ٗzi/"h>_ًg, #{Dim 5T:\?=#i=4tJ'~vZA`T@/K:fNǃY7N{eھײnHXҧX(ӥ"x.15htqE^2c|k3NӘH2}Ax$2 +~/EIեY)kөrzB:Gr0XY0y Ui:bh1]~/9yCܯ/%qL%Z;P럪bc]7u}˒sp)D1t/AOCuWfML@@D!jG]dsm@e, ԁ)@M@M32,7610 -model-schemas: mydb,35,8943 +src/libxalt/Module.mk.in,15 +local_dir 1,0 -README.new,79 - (2.8.1) * progressBar.py: handle the case where pbar.update(update2,10 +src/libxalt/run_submission.h,30 +#define RUN_SUBMISSION_H2,25 -Makefile.in,4113 -abs_srcdir 22,1051 -srcdir 23,1085 -VPATH 24,1115 -CURRENT_MK 25,1145 -OS_NAME 27,1196 -LIB_OPTIONS 28,1235 -LDFLAGS 29,1270 - LIB_OPTIONS 31,1326 -MY_HOSTNAME_PARSER 35,1389 -OPTLVL 36,1435 -package 37,1468 -VERSION 38,1498 -CRYPTO_STR 39,1555 -UUID_STR 40,1595 -CURL_STR 41,1633 -GPU_STR 42,1671 -BROKER_SERVER 43,1708 -BROKER_URI 44,1751 -TRACKING_MPI_ONLY 45,1791 -TRANSMISSION 46,1841 -SITE_NAME 47,1881 -SITE_CONTROLLED_PREFIX 48,1913 -ETC_DIR 49,1965 -prefix 50,2000 -XALT_V 51,2034 -XALT_SYSTEM_PATH 52,2083 -SYSLOG_MSG_SZ 53,2124 -HAVE_LIBUUID 54,2165 -HAVE_DCGM 55,2215 -HAVE_NVML 56,2249 -STATIC_LIBS 57,2288 -PRELOAD_ONLY 58,2329 -XALT_LD_LIBRARY_PATH 59,2372 -HAVE_32BIT 60,2421 -XALT_INSTALL_OS 61,2459 -XALT_SYSTEM_PATH 62,2504 -PATH_TO_MKTEMP 63,2545 -PATH_TO_PSTREE 64,2588 -USE_ARGPARSE 65,2630 -XALT_FILE_PREFIX 66,2678 -XALT_LOGGING_URL 67,2722 -XALT_PRIME_NUMBER 68,2768 -XALT_PRIME_FMT 69,2814 -XALT_FUNCTION_TRACKING 70,2854 -ENABLE_BACKGROUNDING 71,2906 -XALT_CONFIG_PY 72,2954 -XALT_SPEC 73,2996 -XALT_SPEC_PATTERN 74,3043 -CONF_PY 75,3113 -CONF_PY_PATTERN 76,3170 -UPDATE_VERSION 77,3245 -GIT_PROG 80,3308 -GIT_VERSION 81,3347 -VDATE 82,3527 -XALT_DIR 84,3570 -PKGV 85,3627 -PKG 86,3684 - XALT_DIR 88,3778 - PKGV 89,3815 - PKG 90,3852 - HAVE_32BIT 93,3923 -INC 96,3949 -LIB 97,3990 -LIB64 98,4027 -LIBEXEC 99,4066 -BIN 100,4107 -SBIN 101,4144 -SITE_PKG_DIR 102,4182 -DIRLIST 103,4231 -SITE_PKG 107,4494 -SITE_PKG 108,4550 -BIN_PKG 110,4618 -BIN_PKG 118,5340 -SBIN_PKG 120,5405 -SBIN_PKG 126,5962 -RT_PKG 128,6028 -RT_PKG 129,6088 -LIBEXEC_PKG 131,6154 -LIBEXEC_PKG 135,6532 -TACC_PKG 138,6602 -TACC_PKG 148,7549 -OBFUSCATE_HDR 150,7615 -OBFUSCATE_HDR 151,7668 -.PHONY:.PHONY154,7742 -all:all156,7772 -install:install159,7790 - echo 'Warning:echo 'Warning169,8701 -build_compiled:build_compiled174,8974 - $(MAKE) LD_PRELOAD=$(MAKE) LD_PRELOAD176,9085 - LDFLAGS=177,9186 - LIB64=178,9287 - HAVE_LIBUUID=179,9388 - XALT_FILE_PREFIX=180,9489 - CRYPTO_STR=181,9590 - XALT_LOGGING_URL=182,9691 - GPU_STR=183,9792 -inst_obfuscate:inst_obfuscate187,10008 -echo:echo191,10066 -$(DIRLIST)$(DIRLIST199,10247 -LINKS:LINKS202,10274 -Inst_site_py:Inst_site_py208,10479 -Inst_libexec:Inst_libexec211,10579 -Inst_sbin:Inst_sbin214,10735 -Inst_bin:Inst_bin217,10882 -Inst_TACC:Inst_TACC220,11026 -Inst_RT:Inst_RT223,11173 -Use_getent_yes:Use_getent_yes227,11312 -Use_argparse_no:Use_argparse_no233,11527 -Use_argparse_yes:Use_argparse_yes235,11545 -__installMe:__installMe238,11696 - bareN=240,11781 - fn=241,11860 - oext=243,12013 - [ "$$ext" [ "$$ext"245,12166 - [ "$$ext" [ "$$ext"246,12246 - [ "$$ext" [ "$$ext"277,14535 -world_update:world_update282,14786 - echo "All files not checked in echo "All files not checked in285,14973 - echo "configure is out of date echo "configure is out of date287,15146 -gittag:gittag296,15712 - elif [ $$my_tag !=elif [ $$my_tag !302,16064 - echo "TAG needs to be in the form:echo "TAG needs to be in the form304,16240 - echo "configure is out of date echo "configure is out of date307,16497 - vtag=309,16662 - vtag=310,16750 -tags:tags328,17884 -build_tags:build_tags331,17922 -dist:dist409,22724 -SUBMAKEFILES 423,23748 -makefile 425,23840 -src/makefile:src/makefile428,23924 -src/util/module.mk:src/util/module.mk431,23999 -src/linker/module.mk:src/linker/module.mk433,24085 -src/libxalt/module.mk:src/libxalt/module.mk435,24175 -neat:neat439,24269 - $(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR442,24372 - HAVE_32BIT=443,24466 -clean:clean444,24545 - $(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR446,24645 - HAVE_32BIT=447,24739 -clobber:clobber448,24818 - $(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR450,24920 - HAVE_32BIT=451,25014 +src/libxalt/buildEnvT.c,21 +void buildEnvT(6,93 -py_src/xalt_stack.py,149 -class Stack(27,1148 - def __init__(29,1197 - def push(36,1317 - def pop(40,1421 - def isEmpty(45,1534 - def contents(49,1653 -def main(55,1798 +src/Makefile.in,1965 +COPY_LIBS_TO_XALT 1,0 +FIND_LIBS_TO_XALT 2,70 +THIS_DIR 3,136 +VPATH 4,172 +CC 5,204 +CXX 6,226 +OPTLVL 7,248 +LIB_OPTIONS 8,273 +WARN_FLAGS 9,305 +CF_INIT 10,404 +COMMON_FLGS 11,447 +CXXFLAGS 12,501 + LIBDCGM:LIBDCGM15,570 + LIBNVML:LIBNVML18,616 + HAVE_EXTERNAL_HOSTNAME_PARSER 22,672 + PARSER_TYPE 23,740 + MY_HOSTNAME_PARSER_SRC 25,856 + MY_HOSTNAME_PARSER_OBJ 26,940 + MY_HOSTNAME_PARSER_OBJ_32 27,1016 + MY_HOSTNAME_PARSER_LIBRARY 30,1135 + MY_HOSTNAME_PARSER_LIB32 31,1218 + MY_HOSTNAME_PARSER_TARGET 32,1301 + MY_HOSTNAME_PARSER_TARGET +=MY_HOSTNAME_PARSER_TARGET +34,1406 + MY_HOSTNAME_PARSER_OBJ 36,1486 + MY_HOSTNAME_PARSER_OBJ_32 37,1562 +CFLAGS 41,1655 +programs 46,1843 +c_sources 47,1859 +cxx_sources 48,1875 +libraries 49,1891 +extra_clean 50,1907 +so_libs 51,1923 + HAVE_32BIT 54,1968 + DEP32 55,1987 + OBJ32 56,2004 + DEP32 60,2053 + OBJ32 61,2098 +dependencies 64,2150 +objects 65,2232 +include_dirs 67,2315 +include_dirs 68,2351 +CPPFLAGS +=CPPFLAGS +70,2422 +all:all76,2552 + INCLUDE_DEPS 79,2588 + INCLUDE_DEPS 83,2647 + INCLUDE_DEPS 87,2708 +.PHONY:.PHONY99,2873 +all:all100,2885 +build_all:build_all102,2944 +COPY_ALL_LIBS:COPY_ALL_LIBS105,3052 + baseNM=108,3209 + realNM=116,3705 +%.d:%.d127,4360 + sed 's,\($(notdir $*)\.o\) *:sed 's,\($(notdir $*)\.o\) *130,4512 +%.d32:%.d32133,4610 + sed 's,\($(notdir $*)\)\.o *:sed 's,\($(notdir $*)\)\.o *136,4772 +%.d:%.d139,4874 + sed 's,\($(notdir $*)\.o\) *:sed 's,\($(notdir $*)\.o\) *142,5026 +%.o32:%.o32145,5124 +ECHO:ECHO150,5199 +echo:echo153,5271 +neat:neat159,5435 +clean:clean162,5489 +clobber:clobber168,5779 +$(DESTDIR)$(SITE_PKG_DIR)/xalt_python_pkg_filter.py:$(DESTDIR)$(SITE_PKG_DIR)/xalt_python_pkg_filter.py173,5845 +my_hostname_parser_target:my_hostname_parser_target176,5963 +my_hostname_parser_target_32:my_hostname_parser_target_32179,6086 -py_src/xalt_split_syslog_fn.in.py,131 -class MY_FILEH(49,1919 - def __init__(50,1943 - def get_file_handle(54,2052 - def close_file_handles(60,2261 -def main(65,2364 +src/linker/xalt_cxx_types.h,352 +#define XALT_CXX_TYPES_H2,25 +typedef std::unordered_map Table;11,170 +typedef std::unordered_set Set;12,229 +typedef std::vector Vstring;13,286 +typedef unsigned int uint;14,347 -py_src/conf_create.in.py,227 -class CmdLineOptions(57,2059 - def __init__(58,2089 - def execute(61,2123 -class CreateConf(71,2584 - def __init__(72,2610 - def __readFromUser(78,2775 - def __writeConfig(84,3094 - def create(98,3490 -def main(105,3569 +src/linker/jsmn.h,508 +#define __JSMN_H_2,18 +#define JSMN_PARENT_LINKS 10,98 + JSMN_UNDEFINED 20,290 + JSMN_OBJECT 21,311 + JSMN_ARRAY 22,329 + JSMN_STRING 23,346 + JSMN_PRIMITIVE 24,364 +} jsmntype_t;25,384 +enum jsmnerr 27,399 + JSMN_ERROR_NOMEM 29,453 + JSMN_ERROR_INVAL 31,521 + JSMN_ERROR_PART 33,610 + jsmntype_t type;43,839 + int start;44,857 + int end;45,869 + int size;46,879 + int parent;48,915 +} jsmntok_t;50,935 + unsigned int pos;57,1114 + unsigned int toknext;58,1165 + int toksuper;59,1217 +} jsmn_parser;60,1286 -py_src/xalt_name_mapping.py,57 -def name_mapping(245,18699 -def get_comm_name(248,18744 +src/linker/jsmn.c,223 +static jsmntok_t *jsmn_alloc_token(jsmn_alloc_token6,82 +static void jsmn_fill_token(24,528 +static int jsmn_parse_primitive(35,812 +static int jsmn_parse_string(84,2367 +int jsmn_parse(151,5477 +void jsmn_init(306,13339 -py_src/xalt_file_to_db.in.py,408 -def __LINE__(73,2651 -def __FILE__(79,2771 -class CmdLineOptions(86,2999 - def __init__(89,3067 - def execute(93,3124 -def Version(109,4366 -def keep_or_delete(114,4426 -def check_string_w_crc(119,4558 -def link_json_to_db(135,4933 -def pkg_json_to_db(210,7114 -def run_json_to_db(276,8815 -def passwd_generator(354,11215 -def build_resultDir(382,11945 -def store_json_files(394,12261 -def main(461,15087 +src/linker/xalt_extract_linker.C,114 +static const char* blank0 11,171 +static const char* comma 12,208 +void extract_linker(14,247 +int main(121,3515 -py_src/xalt_extract_linker.py,18 -def main(34,1393 +src/linker/xalt_utils.h,26 +#define XALT_UTILS_H2,21 -py_src/progressBar.py,171 -def getTerminalSize(26,1136 - def ioctl_GWINSZ(33,1336 -class ProgressBar(67,2072 - def __init__(70,2139 - def update(108,3282 - def fini(136,3991 -def main(142,4125 +src/linker/buildRmapT.C,24 +void buildRmapT(16,319 -py_src/Rmap_XALT.py,139 -def __LINE__(33,1432 -def __FILE__(39,1552 -class Rmap(43,1654 - def __init__(45,1751 - def reverseMapT(126,4079 - def libMap(134,4224 +src/linker/xalt_strip_linklib.C,18 +int main(16,1062 -py_src/xalt_sitecustomize.py,144 -class RecorderRTM(6,120 - def __init__(13,241 - def __keep(19,562 - def __report(30,815 - def find_spec(37,1018 - def find_module(61,1513 +src/linker/xalt_generate_watermark.C,17 +int main(15,274 -py_src/xalt_usage_report.in.py,961 +src/linker/xalt_realpath.c,41 +#define _GNU_SOURCE 1,0 +int main(5,120 + +src/linker/buildRmapT.h,26 +#define BUILDRMAPT_H2,21 + +src/linker/parseJsonStr.h,28 +#define PARSEJSONSTR_H2,23 + +src/linker/parseLDTrace.h,30 +#define PARSE_LD_TRACE_H2,25 + +src/linker/xalt_generate_linkdata.C,114 +static const char* blank0 20,381 +static const char* comma 21,413 +double convert_double(23,447 +int main(37,692 + +src/linker/parseJsonStr.C,114 +void processTable(11,182 +void processArray(43,1234 +void processValue(109,3143 +void parseCompTJsonStr(123,3654 + +src/linker/my_uuidgen.c,15 +int main(6,84 + +src/linker/parseLDTrace.C,82 +void addPath2Set(10,185 +void parseLDTrace(20,420 +void readFunctionList(78,2006 + +src/linker/Module.mk.in,15 +local_dir 1,0 + +src/linker/xalt_rmap_exists.C,15 +int main(5,69 + +src/linker/xalt_utils.C,83 +#define DATESZ 19,329 +bool path2module(21,349 +FILE* xalt_json_file_open(49,1025 + +src/tmpl/xalt_track_executable_parser.template,107 +#define ALLOCATE8,138 +#undef ALLOCATE10,182 +int yywrap(21,329 +xalt_parser track_executable(26,360 + +src/tmpl/xalt_path_parser.template,140 +static char * strbuf 8,124 +static unsigned int sz 9,155 +int yywrap(17,231 +xalt_parser keep_path(22,262 +void path_parser_cleanup(44,684 + +src/tmpl/xalt_interval.template,324 +#define XALT_INTERVAL_H2,24 +#define N_ELEMENTS(6,78 + double left;10,146 + double prob;11,161 +} interval_t;12,176 +const int xalt_mpi_always_record 14,191 +interval_t scalar_rangeA[scalar_rangeA15,250 +interval_t mpi_rangeA[mpi_rangeA16,302 +const int scalar_rangeSz 17,358 +const int mpi_rangeSz 18,423 + +src/tmpl/xalt_regex.template,611 +#define XALT_REGEX_H2,21 +#define N_ELEMENTS(6,72 +const char* pathPatternA[pathPatternA7,121 +const char* pathArgPatternA[pathArgPatternA8,196 +const char* hostnameA[hostnameA9,271 +const char* envPatternA[envPatternA10,346 +const char* pyPkgPatternA[pyPkgPatternA11,421 +const char* pkgPatternA[pkgPatternA12,496 +const char* ingestPatternA[ingestPatternA13,571 +const int pathPatternSz 15,647 +const int pathArgPatternSz 16,705 +const int hostnameSz 17,766 +const int envPatternSz 18,821 +const int pyPkgPatternSz 19,878 +const int pkgPatternSz 20,937 +const int ingestPatternSz 21,994 + +src/tmpl/xalt_pkg_filter.template,159 +static char * strbuf 7,94 +static unsigned int sz 8,125 + KEEP 10,160 + SKIP 11,172 +int yywrap(19,212 +int keep_pkg(24,243 +void pkg_parser_cleanup(46,663 + +src/tmpl/xalt_pre_ingest_filter.template,108 +static char * strbuf 5,58 +static unsigned int sz 6,89 +int yywrap(13,150 +double pre_ingest_filter(18,181 + +src/tmpl/xalt_env_parser.template,180 +static char * strbuf 6,93 +static unsigned int sz 7,124 + KEEP 9,159 + SKIP 10,171 + IGNORE 11,183 +int yywrap(19,225 +int keep_env_name(24,256 +void env_parser_cleanup(46,693 + +src/tmpl/xalt_python_pkg_filter.template,56 +import os,4,56 +import os, sys,4,56 +def keep_pkg(8,99 + +src/tmpl/xalt_hostname_parser.template,191 +#define HERE 6,93 +static char * strbuf 8,152 +static unsigned int sz 9,183 + KEEP 11,218 + SKIP 12,230 +int yywrap(20,275 +int hostname_parser(25,306 +void hostname_parser_cleanup(47,730 + +LICENSE,800 + Copyright (C) 1991, 1999 Free Software Foundation,4,85 + 51 Franklin Street,5,142 + 51 Franklin Street, Fifth Floor,5,142 + 51 Franklin Street, Fifth Floor, Boston,5,142 + of this license document,7,266 +it in new free programs;32,1571 + To protect your rights,35,1653 +running a program using the Library is not restricted,144,7540 +warranty;155,8201 +your rights to work written entirely by you; rather,202,10527 +In addition,206,10701 +with the Library 207,10772 + Sections 1 and 2 above); and,289,15161 +system;398,21190 + Copyright 474,25147 + This library is free software;476,25184 + License as published by the Free Software Foundation;478,25313 + version 2.1 of the License,479,25378 + version 2.1 of the License, or 479,25378 + Yoyodyne,497,26199 + Ty Coon,502,26386 + +py_src/xalt_sitecustomize.py,145 +class RecorderRTM(11,207 + def __init__(18,328 + def __keep(26,709 + def __report(37,962 + def find_spec(55,1480 + def find_module(79,1975 + +py_src/xalt_stack.py,149 +class Stack(27,1148 + def __init__(29,1197 + def push(36,1317 + def pop(40,1421 + def isEmpty(45,1534 + def contents(49,1653 +def main(55,1798 + +py_src/xalt_usage_report.in.py,961 def shortName(61,3052 class CmdLineOptions(71,3216 def __init__(74,3284 @@ -1641,75 +1953,9 @@ class ModuleExec:ModuleExec410,16859 def build(415,16957 def report_by(439,17867 def kinds_of_jobs(454,18486 -def percent_str(526,21373 -def running_other_exec(533,21509 -def main(588,24062 - -py_src/xalt_library_usage.in.py,283 -def shortName(61,3052 -class CmdLineOptions(71,3216 - def __init__(74,3284 - def execute(78,3341 -class Libraries:Libraries93,4719 - def __init__(95,4737 - def build(99,4817 - def report_by(137,6919 - def group_report_by(159,7768 -def percent_str(195,8991 -def main(202,9127 - -py_src/xalt_util.py,390 -def config_logger(28,1270 -def extract_compiler(45,1717 - def p_parent(56,2006 - def p_parent_name(63,2235 - def p_parent_exe(70,2495 - def p_parent_cmdline(77,2747 -def files_in_tree(119,4061 -def which(141,4573 - def is_exe(147,4681 -def capture(169,5237 -def carp(186,5643 -def remove_files(205,6019 -def obj_type(218,6276 -def obj2module(241,6762 -def dbConfigFn(264,7300 - -py_src/ansi.py,352 -def code_to_chars(12,252 -def set_title(15,311 -def clear_screen(18,370 -def clear_line(21,430 -class AnsiCodes(25,489 - def __init__(26,514 -class AnsiCursor(36,938 - def UP(37,964 - def DOWN(39,1021 - def FORWARD(41,1080 - def BACK(43,1142 - def POS(45,1201 -class AnsiFore(49,1281 -class AnsiBack(71,1805 -class AnsiStyle(93,2337 - -py_src/XALTdb.py,428 -def __LINE__(56,2166 -def __FILE__(62,2286 -def convertToTinyInt(69,2538 -class TimeRecord(85,2866 - def __init__(86,2892 - def add(106,3513 - def print(135,4473 -class XALTdb(153,5763 - def __init__(158,5897 - def __readFromUser(168,6240 - def __readConfig(176,6513 - def connect(192,7163 - def db(225,8290 - def link_to_db(229,8357 - def load_objects(336,12753 - def run_to_db(389,14885 - def pkg_to_db(606,23788 +def percent_str(524,21228 +def running_other_exec(531,21364 +def main(586,23917 py_src/xalt_scalar_bins_usage_report.in.py,961 def shortName(61,3039 @@ -1746,12 +1992,13 @@ def percent_str(514,20122 def running_other_exec(521,20251 def main(576,22730 -py_src/createDB.in.py,122 -def parseVersion(60,2064 -class CmdLineOptions(85,2479 - def __init__(88,2547 - def execute(92,2604 -def main(102,3130 +py_src/Rmap_XALT.py,139 +def __LINE__(33,1432 +def __FILE__(39,1552 +class Rmap(43,1654 + def __init__(45,1751 + def reverseMapT(126,4079 + def libMap(134,4224 py_src/xalt_syslog_to_db.in.py,692 def __LINE__(70,2560 @@ -1776,818 +2023,887 @@ class ParseSyslog(217,7116 def parse(245,7737 def __parseSyslogV1(255,8039 def __parseSyslog(279,8654 -class Filter(371,11060 - def __init__(373,11083 - def register(377,11172 - def report_stats(392,11718 - def apply(409,12247 -def main(434,12908 +class Filter(376,11161 + def __init__(378,11184 + def register(382,11273 + def report_stats(397,11819 + def apply(414,12348 +def main(439,13009 -py_src/BeautifulTbl.py,116 -class BeautifulTbl(5,66 - def __init__(6,94 - def __build_tbl(13,439 - def build_tbl(56,1562 -def main(139,3710 +py_src/xalt_name_mapping.py,57 +def name_mapping(245,18699 +def get_comm_name(248,18744 -sh_src/xalt_helper_functions.sh,69 -LD_LIB_PATH=33,1393 -tracing_msg(63,2247 -find_real_command(83,2918 +py_src/ansi.py,352 +def code_to_chars(12,252 +def set_title(15,311 +def clear_screen(18,370 +def clear_line(21,430 +class AnsiCodes(25,489 + def __init__(26,514 +class AnsiCursor(36,938 + def UP(37,964 + def DOWN(39,1021 + def FORWARD(41,1080 + def BACK(43,1142 + def POS(45,1201 +class AnsiFore(49,1281 +class AnsiBack(71,1805 +class AnsiStyle(93,2337 -sh_src/xalt_extract_record.in,13 -MY_DIR=3,13 +py_src/conf_create.in.py,227 +class CmdLineOptions(57,2059 + def __init__(58,2089 + def execute(61,2123 +class CreateConf(71,2584 + def __init__(72,2610 + def __readFromUser(78,2775 + def __writeConfig(84,3094 + def create(98,3490 +def main(105,3569 -sh_src/ld.in,859 -XALT_LD_LIBRARY_PATH=39,1499 - XALT_FILE_PREFIX=50,1923 - XALT_PRELOAD_ONLY=54,2008 - XALT_PRELOAD_ONLY=56,2091 - XALT_TRANSMISSION_STYLE=60,2167 - XALT_FUNCTION_TRACKING=64,2259 - XALT_FUNCTION_TRACKING=66,2361 -request_tracing "$@" # This returns ${argA[@]} and XALT_TRACING=73,2547 -counter=89,3198 - prev=104,3397 - -*) optarg=113,3549 - *) optarg=114,3567 - *) optarg=; done=114,3567 - USER_TRACE=123,3714 - EXTRA_SYSLIB=127,3761 - BIT32FLAG=131,3812 - PrintOptions=136,3926 - prev=141,3999 - SHARED_LIB=145,4040 - PARTIAL_LINKING=149,4080 - SKIP=190,5004 - SKIP=192,5038 - SKIP=195,5097 - status=201,5406 -XALT_INC=208,5542 - XLD=231,6447 - OBJ=255,7241 -LIBDCGM=291,8484 - LIBDCGM=296,8672 - XALT_INIT_ROUTINE_OBJ=304,8950 -status=312,9283 -EXEC=321,9596 - PATH=325,9706 +py_src/xalt_extract_linker.py,18 +def main(34,1393 -sh_src/xalt_configuration_report.in,13 -MY_DIR=4,29 +py_src/createDB.in.py,122 +def parseVersion(60,2064 +class CmdLineOptions(85,2479 + def __init__(88,2547 + def execute(92,2604 +def main(102,3130 -sh_src/xalt_print_os.in,55 - result=6,95 - result=18,353 - result=24,469 +py_src/xalt_file_to_db.in.py,408 +def __LINE__(73,2651 +def __FILE__(79,2771 +class CmdLineOptions(86,2999 + def __init__(89,3067 + def execute(93,3124 +def Version(109,4366 +def keep_or_delete(114,4426 +def check_string_w_crc(119,4558 +def link_json_to_db(135,4933 +def pkg_json_to_db(206,6954 +def run_json_to_db(271,8640 +def passwd_generator(353,11213 +def build_resultDir(381,11943 +def store_json_files(393,12259 +def main(462,15129 -sh_src/create_xalt_directories.sh.in,49 -filePrefix=4,36 -filePrefix=13,318 -LAST=21,559 +py_src/progressBar.py,171 +def getTerminalSize(26,1136 + def ioctl_GWINSZ(33,1336 +class ProgressBar(67,2072 + def __init__(70,2139 + def update(108,3282 + def fini(136,3991 +def main(142,4125 -build.rtm,387 -PKG_VERSION=23,1082 - myhost=58,1657 - myhost=60,1717 - first=61,1743 - export SYSHOST=63,1796 -SETUP_CMD=69,1868 - SUDO=90,2285 - base=104,2553 - base=117,2821 - base=131,3228 - base=145,3564 - base=159,3961 - EXTRA=162,4032 - base=177,4470 - EXTRA=180,4541 - base=196,4912 -BASE_DIR=207,5139 - MAKE=217,5287 -lazy_eval 231,5463 -cmdA=237,5549 +py_src/xalt_library_usage.in.py,283 +def shortName(61,3052 +class CmdLineOptions(71,3216 + def __init__(74,3284 + def execute(78,3341 +class Libraries:Libraries93,4719 + def __init__(95,4737 + def build(99,4817 + def report_by(137,6919 + def group_report_by(159,7768 +def percent_str(195,8991 +def main(202,9127 -libelf_trick/Makefile,237 -CC 1,0 -TARGETS 2,15 -all:all4,54 -try:try6,71 -libxalt.so:libxalt.so9,103 -libxalt2.so:libxalt2.so12,157 -xalt.o:xalt.o15,213 -xalt2.o:xalt2.o18,261 -neat:neat21,311 -clean:clean23,327 -clobber:clobber25,350 -test:test28,384 +py_src/xalt_split_syslog_fn.in.py,131 +class MY_FILEH(49,1919 + def __init__(50,1943 + def get_file_handle(54,2052 + def close_file_handles(60,2261 +def main(65,2364 -libelf_trick/xalt2.c,187 -static int errfd 3,39 -void myinit(4,80 -void myfini(9,198 -__attribute__((section(".init_array"))) __typeof__(22,461 -__attribute__((section(".fini_array"))) __typeof__(23,538 +py_src/BeautifulTbl.py,116 +class BeautifulTbl(5,66 + def __init__(6,94 + def __build_tbl(13,439 + def build_tbl(56,1562 +def main(139,3710 -libelf_trick/try.c,15 +py_src/XALTdb.py,428 +def __LINE__(67,2506 +def __FILE__(73,2626 +def convertToTinyInt(80,2878 +class TimeRecord(96,3206 + def __init__(97,3232 + def add(117,3853 + def print(146,4813 +class XALTdb(164,6103 + def __init__(175,6291 + def __readFromUser(185,6634 + def __readConfig(193,6907 + def connect(209,7557 + def db(242,8684 + def link_to_db(246,8751 + def load_objects(353,13147 + def run_to_db(406,15279 + def pkg_to_db(630,24414 + +py_src/xalt_util.py,390 +def config_logger(28,1270 +def extract_compiler(45,1717 + def p_parent(56,2006 + def p_parent_name(63,2235 + def p_parent_exe(70,2495 + def p_parent_cmdline(77,2747 +def files_in_tree(119,4061 +def which(141,4573 + def is_exe(147,4681 +def capture(169,5237 +def carp(186,5643 +def remove_files(205,6019 +def obj_type(218,6276 +def obj2module(241,6762 +def dbConfigFn(264,7300 + +README.new,63 + (3.0.1) * PR60: allow --with-primeNumber=primeNumber2,10 + +aclocal.m4,26 +dnl AX_PYTHON_MODULE(1,0 + +sh_src/xalt_helper_functions.sh,94 +LD_LIB_PATH=33,1393 +tracing_msg(67,2406 +locate_command 80,2732 +find_real_command(130,4407 + +sh_src/xalt_print_os.in,55 + result=6,95 + result=18,353 + result=24,469 + +sh_src/xalt_extract_record.in,13 +MY_DIR=3,13 + +sh_src/ld.in,869 +XALT_LD_LIBRARY_PATH=38,1482 + XALT_FILE_PREFIX=49,1880 + XALT_PRELOAD_ONLY=53,1965 + XALT_PRELOAD_ONLY=55,2048 + XALT_TRANSMISSION_STYLE=59,2124 + XALT_FUNCTION_TRACKING=63,2216 + XALT_FUNCTION_TRACKING=65,2318 +request_tracing "$@" # This returns ${argA[@]} and XALT_TRACING=72,2504 +MY_CMD=79,2805 + prev=103,3372 + -*) optarg=112,3536 + *) optarg=113,3554 + *) optarg=; done=113,3554 + USER_TRACE=122,3701 + EXTRA_SYSLIB=126,3748 + BIT32FLAG=130,3799 + PrintOptions=135,3913 + prev=140,3986 + SHARED_LIB=144,4027 + PARTIAL_LINKING=148,4067 + SKIP=189,4991 + SKIP=191,5025 + SKIP=194,5084 + status=200,5393 +XALT_INC=207,5529 + XLD=230,6520 + WATERMARK_OBJ=254,7404 +LIBDCGM=290,8771 + LIBDCGM=295,8959 + XALT_INIT_ROUTINE_OBJ=303,9237 +status=311,9590 +EXEC=320,9923 + PATH=324,10045 + +sh_src/create_xalt_directories.sh.in,49 +filePrefix=4,36 +filePrefix=13,318 +LAST=21,559 + +sh_src/xalt_configuration_report.in,13 +MY_DIR=4,29 + +sh_src/ld.xalt.in,33 +XALT_DIR=3,35 + status=9,181 + +Lessons_learned.txt,80 +* The linker can be called ld,11,385 +* When building Intel PIN library,13,448 + +README.old,141 + (2.0.1-devel) Now TACC systems will track /bin/cp,cp2,10 + (2.0.1-devel) Now TACC systems will track /bin/cp, /usr/bin/perl,perl2,10 + +rt/syslog/pkg_tracking.py,15 +def main(4,89 + +rt/syslog/bin/logger,10 +TAG=5,42 + +rt/syslog/syslog.desc,16 +test_name 3,18 + +rt/dup_runuuid/dup_runuuid.desc,16 +test_name 3,18 + +rt/my_hostname_parser/keep.c,21 +int return_keep(1,0 + +rt/my_hostname_parser/my_hostname_parser.desc,16 +test_name 3,18 + +rt/my_hostname_parser/host.c,69 +int my_hostname_parser(5,67 +void my_hostname_parser_cleanup(11,192 + +rt/common_funcs.sh,17 +initialize(4,36 + +rt/end2end/get_XALT_env.c,34 +#define DFLT 3,39 +int main(4,67 + +rt/end2end/pkg_tracking.py,15 +def main(4,89 + +rt/end2end/bus.c,15 +int main(4,61 + +rt/end2end/segv.c,15 int main(2,19 -libelf_trick/xalt.c,154 -void myinit(2,19 -void myfini(6,99 -__attribute__((section(".init_array"))) __typeof__(11,158 -__attribute__((section(".fini_array"))) __typeof__(12,235 +rt/end2end/data/hello_world.py,15 +def main(4,54 -proj_mgmt/py_build_tools/build_xalt_regex.py,227 -class CmdLineOptions(28,1158 - def __init__(31,1226 - def execute(35,1283 -def convert_pattern(48,1979 -def convert_ingest_pattern(58,2158 -def convert_py_pkg_pattern(68,2355 -def convert_template(78,2658 -def main(109,3299 +rt/end2end/empty_regexp.c,33 +int regcomp(2,19 +int main(3,36 -proj_mgmt/py_build_tools/xalt_prime_check.py,36 -def isPrime(6,103 -def main(23,380 +rt/end2end/foo.c,15 +void foo(2,18 -proj_mgmt/py_build_tools/find_required_libraries.py,41 -def find_libs(56,1848 -def main(81,2515 +rt/end2end/try_uuid.c,47 +void rtm_build_uuid_str(4,43 +int main(10,177 -proj_mgmt/py_build_tools/build_syshost_routine.py,313 -def xalt_syshost_main(30,1187 -def hardcode(42,1497 -def add_hostname_routine(59,1854 -def env_var(97,3199 -def read_file(118,3713 -def nth_name(151,4739 -def strip_nodename_numbers(195,5912 -def mapping(225,6684 -class CmdLineOptions(289,8629 - def __init__(292,8697 - def execute(296,8752 -def main(310,9383 +rt/end2end/hybrid_daxpy.f90,24 +subroutine suba(18,396 -proj_mgmt/py_build_tools/build_python_filter_routine.py,125 -class CmdLineOptions(28,1158 - def __init__(31,1226 - def execute(35,1283 -def convert_template(46,1868 -def main(88,3009 +rt/end2end/try.C,14 +int main(1,0 -proj_mgmt/py_build_tools/xalt_prime_fmt.py,16 -def main(6,103 +rt/end2end/omp_pi.f90,38 + subroutine reportresults(88,2549 -proj_mgmt/py_build_tools/build_parser_routine.py,125 -class CmdLineOptions(28,1158 - def __init__(31,1226 - def execute(35,1283 -def convert_template(48,2071 -def main(79,2748 +rt/end2end/end2end.desc,16 +test_name 3,18 -proj_mgmt/py_build_tools/copy_system_library_to_xalt.py,154 -class CmdLineOptions(46,1773 - def __init__(49,1841 - def execute(53,1898 -def files_in_tree(64,2540 -def readlink_recursive(76,2812 -def main(86,3132 +rt/end2end/main.c,16 +void main(2,18 -proj_mgmt/py_build_tools/build_xalt_interval_table.py,186 -class CmdLineOptions(28,1154 - def __init__(31,1222 - def execute(35,1277 -def convert_to_string(46,1751 -def convert_template(53,1907 -def check_intervalA(84,2538 -def main(107,3233 +rt/end2end/flto.h,20 +#define FLTO_H2,15 -proj_mgmt/updateVersion,101 -function masterTbl(18,349 -function main(22,392 -function options(83,1736 -function isFile(123,2762 +rt/end2end/a.c,12 +int a(2,19 -proj_mgmt/locate_shared_library.c,40 -#define _GNU_SOURCE1,0 -int main(8,117 +rt/end2end/c.c,12 +int c(2,19 -proj_mgmt/check_entries_db.in.py,192 -class CmdLineOptions(50,1827 - def __init__(53,1895 - def execute(57,1952 -def count_w_condition(73,3338 -def eq(87,3678 -def ge(90,3714 -def display_colored_text(93,3750 -def main(98,3862 +rt/end2end/ill.c,14 +int main(1,0 -contrib/build_exec_in_tmp.patch,16 - status=13,428 +rt/end2end/forkMe.c,15 +int main(7,86 -contrib/argparse/argparse.py,5073 - def sorted(108,3670 -def _callable(116,3838 -class _AttributeHolder(133,4183 - def __repr__(142,4507 - def _get_kwargs(151,4841 - def _get_args(154,4914 -def _ensure_value(158,4959 -class HelpFormatter(168,5182 - def __init__(175,5438 - def _indent(207,6408 - def _dedent(211,6512 - class _Section(216,6686 - def __init__(218,6715 - def format_help(224,6912 - def _add_item(249,7899 - def start_section(255,8087 - def end_section(261,8307 - def add_text(265,8419 - def add_usage(269,8558 - def add_argument(274,8758 - def add_arguments(292,9517 - def format_help(299,9715 - def _join_parts(306,9933 - def _format_usage(311,10112 - def get_lines(355,11872 - def _format_actions_usage(403,13950 - def _format_text(499,17610 - def _format_action(506,17889 - def _format_action_invocation(553,19817 - def _metavar_formatter(576,20613 - def format(585,20961 - def _format_args(592,21153 - def _expand_help(611,21941 - def _iter_indented_subactions(624,22493 - def _split_lines(635,22808 - def _fill_text(639,22956 - def _get_help_string(644,23202 -class RawDescriptionHelpFormatter(648,23271 - def _fill_text(655,23550 -class RawTextHelpFormatter(659,23673 - def _split_lines(666,23956 -class ArgumentDefaultsHelpFormatter(670,24032 - def _get_help_string(677,24311 -def _get_action_name(691,24756 -class ArgumentError(704,25109 - def __init__(711,25349 - def __str__(715,25480 -class ArgumentTypeError(724,25770 -class Action(733,25944 - def __init__(784,28392 - def _get_kwargs(806,29013 - def __call__(820,29333 -class _StoreAction(824,29470 - def __init__(826,29499 - def __call__(855,30524 -class _StoreConstAction(859,30643 - def __init__(861,30677 - def __call__(878,31149 -class _StoreTrueAction(882,31272 - def __init__(884,31316 -class _StoreFalseAction(899,31712 - def __init__(901,31757 -class _AppendAction(916,32154 - def __init__(918,32184 - def __call__(947,33217 -class _AppendConstAction(953,33432 - def __init__(955,33467 - def __call__(973,33969 -class _CountAction(979,34188 - def __init__(981,34217 - def __call__(995,34604 -class _HelpAction(1000,34789 - def __init__(1002,34817 - def __call__(1014,35152 -class _VersionAction(1019,35275 - def __init__(1021,35306 - def __call__(1035,35742 -class _SubParsersAction(1044,36044 - class _ChoicesPseudoAction(1046,36078 - def __init__(1048,36119 - def __init__(1052,36296 - def add_parser(1073,36882 - def _get_subactions(1089,37484 - def __call__(1092,37553 -class FileType(1121,38612 - def __init__(1134,39088 - def __call__(1138,39195 - def __repr__(1155,39769 -class Namespace(1164,40067 - def __init__(1171,40261 - def __eq__(1177,40391 - def __ne__(1180,40462 - def __contains__(1183,40527 -class _ActionsContainer(1187,40598 - def __init__(1189,40632 - def register(1241,42514 - def _registry_get(1245,42668 - def set_defaults(1251,42924 - def get_default(1260,43258 - def add_argument(1270,43571 - def add_argument_group(1310,45229 - def add_mutually_exclusive_group(1315,45398 - def _add_action(1320,45584 - def _remove_action(1341,46342 - def _add_container_actions(1344,46418 - def _get_positional_kwargs(1384,48148 - def _get_optional_kwargs(1400,48819 - def _pop_action_class(1435,50385 - def _get_handler(1439,50548 - def _check_conflict(1448,50929 - def _handle_conflict_error(1462,51484 - def _handle_conflict_resolve(1469,51847 -class _ArgumentGroup(1484,52391 - def __init__(1486,52433 - def _add_action(1507,53356 - def _remove_action(1512,53522 -class _MutuallyExclusiveGroup(1517,53664 - def __init__(1519,53712 - def _add_action(1524,53898 - def _remove_action(1532,54183 -class ArgumentParser(1537,54313 - def __init__(1555,55249 - def identity(1601,56874 - def _get_kwargs(1636,58131 - def add_subparsers(1651,58551 - def _add_action(1682,59904 - def _get_optional_actions(1689,60108 - def _get_positional_actions(1694,60255 - def parse_args(1702,60540 - def parse_known_args(1709,60786 - def _parse_known_args(1744,62246 - def take_action(1791,64314 - def consume_optional(1812,65442 - def consume_positionals(1889,69117 - def _read_args_from_files(1979,73056 - def convert_arg_line_to_args(2008,74252 - def _match_argument(2011,74329 - def _match_arguments_partial(2030,75137 - def _parse_optional(2046,75811 - def _get_option_tuples(2103,78232 - def _get_nargs_pattern(2147,80156 - def _get_values(2191,81573 - def _get_value(2240,83582 - def _check_value(2265,84534 - def format_usage(2275,84979 - def format_help(2281,85205 - def format_version(2304,85938 - def _get_formatter(2314,86308 - def print_usage(2320,86475 - def print_help(2325,86625 - def print_version(2330,86773 - def _print_message(2338,87087 - def exit(2347,87320 - def error(2352,87465 +rt/end2end/bar.c,15 +void bar(2,18 -contrib/upgradeDB_From0.7.1.py,95 -class CmdLineOptions(36,1394 - def __init__(39,1462 - def execute(43,1519 -def main(50,1804 +rt/end2end/share/hello_world.py,15 +def main(4,54 -contrib/clear_stack_execute_bit/xalt_db_clear_bit_run.py,170 -class CmdLineOptions(16,460 - def __init__(19,528 - def execute(23,585 -def find_run_files(35,1374 -def capture(53,1835 -def clear_stack_bit(69,2240 -def main(73,2357 +rt/end2end/b.c,12 +int b(2,19 -contrib/clear_stack_execute_bit/xalt_db_clear_bit_link.py,171 -class CmdLineOptions(17,461 - def __init__(20,529 - def execute(24,586 -def find_link_files(36,1375 -def capture(50,1748 -def clear_stack_bit(66,2153 -def main(72,2352 +rt/end2end/abc.c,15 +int main(5,46 -contrib/clear_stack_execute_bit/report_bit_execs.sh,51 -syshost=4,21 - result=11,134 - host=13,214 +rt/end2end/fakePrgm.c,15 +int main(2,19 -contrib/clear_stack_execute_bit/clear_bit.sh,51 -syshost=4,37 - result=13,223 - host=15,304 +rt/end2end/fpe.c,15 +int main(3,36 -contrib/clear_stack_execute_bit/monthly_clear_bits.sh,49 - left=7,114 - rght=8,141 - strt=10,169 +rt/xalt_epoch.py,18 +def main(28,1142 -contrib/clear_stack_execute_bit/migration_for_execstack_issue.txt,67 -If we have cleared this execstack bit,8,212 - int main(84,3022 +rt/file_prefix/file_prefix.desc,16 +test_name 3,18 -contrib/clear_stack_execute_bit/example.c,40 -void sort_bytes(8,218 -int main(21,511 +rt/mpi_hello_world.c,15 +int main(3,36 -contrib/supporting_clang/README.txt,105 - $ cd /usr/bin; rm ld;24,842 - $ cd /usr/bin; rm ld; ln -s ld.bfd ld.x;x24,842 - setenv(28,913 +rt/prime0/prime0.desc,16 +test_name 3,18 -contrib/fix_module_name.py,144 -class CmdLineOptions(16,268 - def __init__(19,336 - def execute(23,393 -def dbConfigFn(33,957 -def fix_module_name(41,1087 -def main(71,2032 +docs/Makefile,1466 +SPHINXOPTS 5,92 +SPHINXBUILD 6,108 +PAPER 7,137 +BUILDDIR 8,153 +$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http:$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http12,281 +PAPEROPT_a4 16,654 +PAPEROPT_letter 17,695 +ALLSPHINXOPTS 18,740 +I18NSPHINXOPTS 20,901 +.PHONY:.PHONY22,962 +html:html24,1114 +help:help29,1251 +clean:clean56,2778 +dirhtml:dirhtml60,2809 +singlehtml:singlehtml65,2958 +pickle:pickle70,3117 +json:json75,3258 +htmlhelp:htmlhelp80,3391 +qthelp:qthelp86,3598 +applehelp:applehelp95,3971 +devhelp:devhelp103,4283 +epub:epub112,4563 +latex:latex117,4698 +latexpdf:latexpdf124,4976 +latexpdfja:latexpdfja130,5202 +text:text136,5444 +man:man141,5581 +texinfo:texinfo146,5716 +info:info153,5998 +gettext:gettext159,6225 +changes:changes164,6379 +linkcheck:linkcheck169,6514 +doctest:doctest175,6723 +coverage:coverage180,6918 +xml:xml185,7117 +pseudoxml:pseudoxml190,7249 -contrib/upgradeDB_0.7.5-1.1.3.py,95 -class CmdLineOptions(36,1394 - def __init__(39,1462 - def execute(43,1519 -def main(50,1804 +docs/source/005_whats_new.rst,25 +New Features in XALT1,0 -contrib/getent/headers.py,324 -class AliasStruct(4,40 -class InAddrStruct(13,236 -class InAddr6Union(20,354 -class InAddr6Struct(28,534 -class HostStruct(36,685 -class NetworkStruct(46,926 -class ProtoStruct(56,1259 -class RPCStruct(65,1533 -class ServiceStruct(74,1820 -class GroupStruct(84,2161 -class PasswdStruct(94,2386 -class ShadowStruct(106,2670 +docs/source/index.rst,27 +function pointers 53,2055 -contrib/getent/constants.py,25 - def c_char_p(17,460 +docs/source/050_install_and_test.rst,59 +above XALT. In other word,7,280 + prepend_path(100,3513 -contrib/getent/__init__.py,814 - def convert23(11,197 - def convert23(15,251 -class StructMap(19,362 - def __init__(21,388 - def __dict__(33,693 - def __iter__(36,750 - def _map(45,949 -def _resolve(54,1114 -class Host(68,1670 - def __init__(69,1693 -class Proto(76,1928 - def __init__(77,1952 -class RPC(82,2070 - def __init__(83,2092 -class Service(88,2208 - def __init__(89,2234 -class Network(94,2354 - def __init__(95,2380 -class Alias(100,2500 - def __init__(101,2524 -class Group(106,2642 - def __init__(107,2666 -class Passwd(112,2784 -class Shadow(116,2820 - def __init__(117,2845 -def alias(123,3042 -def host(150,3538 - def lookup(179,4099 -def proto(207,5038 -def rpc(244,5774 -def service(284,6572 -def network(338,7779 -def group(369,8348 -def passwd(414,9204 -def shadow(459,10073 - -contrib/cuda_example/sample_output.txt,14 -Memory 8,254 - -contrib/cuda_example/Makefile,55 -NVCC 1,0 -CFLAGS 3,13 -hw2:hw25,27 -clean:clean8,68 +docs/source/130_known_problems.rst,135 + #define _GNU_SOURCE40,1469 + int my_copyenv(50,1630 + int main(69,2068 +The problem with this code is that clearenv(74,2150 -contrib/cuda_example/hw2.cu,345 -class Timer13,246 - Timer(16,268 - void start(17,290 - void stop(23,512 - void reset(24,571 - std::string labels[labels27,624 - timeval times[times28,652 - int n;29,675 -void Timer::print(print32,690 -void initialize(46,1219 -void smooth(54,1394 -__global__ void smooth_gpu(64,1790 -void count(77,2268 -int main(88,2477 +docs/source/080_loading_json_by_syslog.rst,25 +If you are syslog,5,106 -contrib/queries/LinkRunCountByPeriod.py,24 -def add_months(27,1323 +docs/source/010_prereqs.rst,67 +library,5,121 +library, and to track the external functions 5,121 -contrib/TACC/pytas.py,833 -class client:client13,218 - def __init__(20,422 - def authenticate(36,961 - def get_user(49,1453 - def save_user(64,1979 - def verify_user(83,2697 - def request_password_reset(92,3046 - def confirm_password_reset(104,3607 - def institutions(128,4604 - def _get_departments(146,5248 - def get_institution(162,5735 - def get_departments(183,6606 - def get_department(194,7030 - def _departments(204,7279 - def countries(215,7509 - def fields(232,7987 - def projects(240,8188 - def project(249,8566 - def projects_for_user(255,8814 - def create_project(281,9808 - def edit_project(291,10242 - def edit_allocation(301,10692 - def get_project_users(314,11194 - def add_project_user(322,11539 - def del_project_user(330,11900 - def allocation_approval(340,12298 +docs/source/999_faq.rst,32 +Frequently Asked Questions3,16 -contrib/TACC/store_xalt_data.in,68 -MCLAY=3,35 -manager 35,1298 -store_log=52,1713 -percentage=65,2023 +docs/source/091_using_clang.rst,74 + $ LD_PATH=21,741 + **NOTE**: Replace **XALT_DIR=XALT_DIR45,1380 -contrib/TACC/xalt_export_db.in,144 -class CmdLineOptions(19,560 - def __init__(22,628 - def execute(26,685 -def export_links(42,1686 -def export_runs(82,3485 -def main(140,5843 +docs/source/030_site_filtering.rst,101 + void my_hostname_parser_cleanup(86,3515 +The routines must be called my_hostname_parser(92,3645 -contrib/TACC/check_pytas.in,46 -def field_of_science(11,206 -def main(26,538 - -contrib/TACC/kill_dups.in,297 -def getTerminalSize(12,262 - def ioctl_GWINSZ(19,462 -class ProgressBar(53,1198 - def __init__(56,1265 - def update(94,2401 - def fini(119,3048 -class CmdLineOptions(126,3189 - def __init__(129,3257 - def execute(133,3314 -def dbConfigFn(145,4024 -def kill_dups(153,4154 -def main(202,5652 - -contrib/TACC/envReport.in,140 -class CmdLineOptions(18,483 - def __init__(21,551 - def execute(25,608 -def dbConfigFn(38,1468 -def envReport(46,1598 -def main(108,2890 - -contrib/TACC/quarter2months.in,15 -def main(6,97 +docs/source/100_execstack.rst,99 + int main(29,1006 +the assembly code,59,1719 +Normally this is not a problem. However,65,2009 -contrib/TACC/syslogTest.c,15 -int main(8,84 +docs/source/040_reverse_map.rst,25 +Function Tracking22,801 -contrib/TACC/fix_records.in,153 -class CmdLineOptions(11,214 - def __init__(14,282 - def execute(18,339 -def fix_record(32,1226 -def read_tacc_acct_records(85,3544 -def main(125,4545 +docs/source/120_xalt_json.rst,19 +entry is 172,5380 -contrib/TACC/build_default_user_2_account_str.in,148 -import os,60,1900 -import os, sys,60,1900 -import os, sys, re,60,1900 -def read_project_map_file(62,1926 - with open(69,2086 - with open(83,2383 +docs/source/115_xalt_internal_design.rst,54 +function tracking 41,1525 +function tracking 42,1591 -contrib/TACC/system_directorate_rpt.in,93 -SYSHOST=4,36 - quarterA=16,405 - quarterA=33,1045 -for ((i=$num; i >= 0; i--)); do46,1406 +docs/source/020_site_configuration.rst,27 +Function Tracking288,9400 -contrib/TACC/build_XALT_report.in,106 -export PATH=4,36 - sendTo=26,726 - XALT_START_DATE=32,796 - last365=39,1008 - fn30=55,1507 +docs/source/060_setup_db.rst,57 +Where you have correctly set the **db name*name48,1733 -contrib/TACC/correct_num_cores.in,342 -def getTerminalSize(12,262 - def ioctl_GWINSZ(19,462 -class ProgressBar(53,1198 - def __init__(56,1265 - def update(94,2401 - def fini(119,3048 -class CmdLineOptions(126,3189 - def __init__(129,3257 - def execute(133,3314 -def dbConfigFn(145,4024 -def correct_num_cores(153,4154 -def read_tacc_acct_records(271,8685 -def main(313,9769 +build.rtm,396 +PKG_VERSION=23,1082 + myhost=58,1657 + myhost=60,1717 + first=61,1743 + export SYSHOST=63,1796 +SETUP_CMD=69,1868 + SUDO=90,2330 + base=104,2598 + base=117,2877 + base=131,3216 + base=133,3281 + base=150,3749 + EXTRA=153,3820 + base=168,4260 + base=183,4603 +BASE_DIR=194,4830 + MAKE=205,5015 +lazy_eval 219,5203 +report_git_version 225,5289 +cmdA=230,5349 + +configure.ac,110 +AC_CONFIG_SRCDIR(2,8 +AC_SUBST(31,501 + XALT_GPU_TRACKING_STYLE=87,3276 + XALT_GPU_TRACKING=112,4241 -contrib/TACC/xalt_load_fos.in,239 -import os,19,648 -import os, sys,19,648 -import os, sys, re,19,648 -import os, sys, re, argparse,19,648 -import os, sys, re, argparse, base64,19,648 -import os, sys, re, argparse, base64, json,19,648 -dirNm,26,775 -dirNm, execName 26,775 +proj_mgmt/py_build_tools/build_python_filter_routine.py,125 +class CmdLineOptions(28,1158 + def __init__(31,1226 + def execute(35,1283 +def convert_template(46,1868 +def main(88,3009 -contrib/TACC/convertCSV2json.py,17 -def main(21,671 +proj_mgmt/py_build_tools/build_xalt_regex.py,227 +class CmdLineOptions(28,1169 + def __init__(31,1237 + def execute(35,1294 +def convert_pattern(48,1990 +def convert_ingest_pattern(58,2169 +def convert_py_pkg_pattern(68,2366 +def convert_template(78,2669 +def main(109,3310 + +proj_mgmt/py_build_tools/xalt_prime_fmt.py,41 +def prime_check(24,694 +def main(28,726 -contrib/TACC/update_module_name.in,124 -class CmdLineOptions(19,470 - def __init__(22,538 - def execute(26,595 -def update_module_name(41,1703 -def main(83,3056 +proj_mgmt/py_build_tools/build_parser_routine.py,125 +class CmdLineOptions(28,1169 + def __init__(31,1237 + def execute(35,1294 +def convert_template(47,1982 +def main(84,2797 -contrib/TACC/monthly_report.in,413 -def __LINE__(21,553 -def __FILE__(27,673 -def field_of_science(33,804 -def replace_exec_path(242,15305 -class XALTdb(253,15529 - def __init__(258,15663 - def __readFromUser(268,15968 - def __readConfig(276,16253 - def connect(291,16858 - def db(325,17743 - def __convert(330,17811 - def runs(407,20092 -class CmdLineOptions(511,24038 - def __init__(514,24106 - def execute(518,24163 -def main(527,24658 +proj_mgmt/py_build_tools/build_xalt_interval_table.py,186 +class CmdLineOptions(28,1165 + def __init__(31,1233 + def execute(35,1288 +def convert_to_string(46,1762 +def convert_template(53,1918 +def check_intervalA(84,2549 +def main(107,3244 -contrib/TACC/xalt_directorate.in,267 -import os,44,2542 -import os, sys,44,2542 -import os, sys, re,44,2542 -import MySQLdb,45,2569 -import time,46,2594 -from datetime import datetime,48,2651 -dirNm,54,2766 -dirNm, execName 54,2766 - execA.append(append127,5618 - execA.append(append186,7738 +proj_mgmt/py_build_tools/xalt_prime_check.py,36 +def isPrime(6,103 +def main(23,380 -contrib/TACC/README.vm,124 - mysql> grant all on xalt.* to 'xaltuser'@'@15,517 - mysql> quit;16,575 - $ ./build_hello_executables.sh sh33,887 +proj_mgmt/py_build_tools/copy_system_library_to_xalt.py,154 +class CmdLineOptions(46,1773 + def __init__(49,1841 + def execute(53,1898 +def files_in_tree(64,2540 +def readlink_recursive(76,2812 +def main(86,3132 -contrib/TACC/load_xalt_db,24 -export MODULEPATH=2,12 +proj_mgmt/py_build_tools/find_required_libraries.py,41 +def find_libs(56,1848 +def main(81,2515 -contrib/TACC/staff_builds/staff.py,28 -def xalt_tacc_staff(27,281 +proj_mgmt/py_build_tools/build_syshost_routine.py,313 +def xalt_syshost_main(30,1187 +def hardcode(42,1497 +def add_hostname_routine(60,1889 +def env_var(98,3234 +def read_file(119,3748 +def nth_name(152,4774 +def strip_nodename_numbers(196,5948 +def mapping(226,6720 +class CmdLineOptions(290,8665 + def __init__(293,8733 + def execute(297,8788 +def main(311,9419 -contrib/TACC/staff_builds/staff_builds.py,201 -class CmdLineOptions(19,398 - def __init__(22,466 - def execute(26,523 -class StaffBuilds:StaffBuilds37,1323 - def __init__(38,1342 - def build(42,1423 - def report_by(77,2572 -def main(91,3094 +proj_mgmt/check_entries_db.in.py,192 +class CmdLineOptions(50,1827 + def __init__(53,1895 + def execute(57,1952 +def count_w_condition(73,3338 +def eq(87,3678 +def ge(90,3714 +def display_colored_text(93,3750 +def main(98,3862 -contrib/TACC/xalt_fos.in,231 -import os,44,2542 -import os, sys,44,2542 -import os, sys, re,44,2542 -import MySQLdb,45,2569 -import time,46,2594 -from datetime import datetime,48,2651 -dirNm,54,2766 -dirNm, execName 54,2766 - execA.append(append128,5878 +proj_mgmt/tools_for_lua/Optiks_Option.lua,263 +function M.optionNames(65,2309 +function M.optionNames(optionNames65,2309 +function M.bless(83,2750 +function M.bless(bless83,2750 +function M.setDefault(120,3792 +function M.setDefault(setDefault120,3792 +function M.new(135,4362 +function M.new(new135,4362 + +proj_mgmt/tools_for_lua/Dbg.lua,1865 +local function l_rPrint(104,3081 +local function l_argsPack(121,3690 +local function l_changeIndentLevel(127,3879 +local function l_new(132,4007 +function M.dbg(153,4545 +function M.dbg(dbg153,4545 +function M.set_prefix(164,4900 +function M.set_prefix(set_prefix164,4900 +function M.activateDebug(175,5319 +function M.activateDebug(activateDebug175,5319 +function M.indentLevel(212,6568 +function M.indentLevel(indentLevel212,6568 +function M.active(218,6723 +function M.active(active218,6723 +function M.currentLevel(224,6869 +function M.currentLevel(currentLevel224,6869 +function M.deactivateWarning(230,7033 +function M.deactivateWarning(deactivateWarning230,7033 +function M.activateWarning(236,7195 +function M.activateWarning(activateWarning236,7195 +function M._quiet(242,7355 +function M._quiet(_quiet242,7355 +local function l_extractVPL(247,7486 +local function l_startExtractVPL(252,7568 +function M._start(260,7783 +function M._start(_start260,7783 +function M._zeroIndent(276,8134 +function M._zeroIndent(_zeroIndent276,8134 +function M._indent(282,8289 +function M._indent(_indent282,8289 +function M._fini(288,8447 +function M._fini(_fini288,8447 +function M._warning(310,9069 +function M._warning(_warning310,9069 +function M._error(321,9367 +function M._error(_error321,9367 +function M.errorExit(334,9659 +function M.errorExit(errorExit334,9659 +function M.warningCalled(341,9846 +function M.warningCalled(warningCalled341,9846 +function M._print(349,10032 +function M._print(_print349,10032 +function M._textA(384,10905 +function M._textA(_textA384,10905 +function M._printA(405,11357 +function M._printA(_printA405,11357 +function M._print2D(424,11756 +function M._print2D(_print2D424,11756 +function M.flush(441,12153 +function M.flush(flush441,12153 +function M._printT(445,12198 +function M._printT(_printT445,12198 + +proj_mgmt/tools_for_lua/TermWidth.lua,64 +local function l_askSystem(49,1883 +function TermWidth(74,2477 + +proj_mgmt/tools_for_lua/string_utils.lua,755 +function string.escape(44,1901 +function string.escape(escape44,1901 +function string.split(59,2362 +function string.split(split59,2362 + local function l_getter(62,2467 + local function l_splitter(66,2633 +function string.trim(72,2763 +function string.trim(trim72,2763 +function string.caseIndependent(85,3141 +function string.caseIndependent(caseIndependent85,3141 +function string.multiEscaped(106,3808 +function string.multiEscaped(multiEscaped106,3808 +function string.doubleQuoteString(119,4234 +function string.doubleQuoteString(doubleQuoteString119,4234 +function string.atSymbolEscaped(132,4587 +function string.atSymbolEscaped(atSymbolEscaped132,4587 +function string.fillWords(144,5004 +function string.fillWords(fillWords144,5004 + +proj_mgmt/tools_for_lua/haveTermSupport.lua,67 +function haveTermSupport(44,1846 +function connected2Term(53,1985 + +proj_mgmt/tools_for_lua/declare.lua,85 +function declare(38,1669 +function isDefined(46,1894 +function isNotDefined(50,1960 + +proj_mgmt/tools_for_lua/capture.lua,26 +function capture(43,1723 + +proj_mgmt/tools_for_lua/strict.lua,30 +local function l_what 18,496 + +proj_mgmt/tools_for_lua/BeautifulTbl.lua,199 +function M.new(89,3873 +function M.new(new89,3873 +function M._build_tbl(120,4857 +function M._build_tbl(_build_tbl120,4857 +function M.build_tbl(184,6533 +function M.build_tbl(build_tbl184,6533 + +proj_mgmt/tools_for_lua/Optiks.lua,1391 +local function l_argsPack(33,1446 +function Optiks_Error(42,1780 +function Optiks_Exit(52,1983 +local function l_prt(81,2671 +local function l_prtend(85,2723 +function M.new(92,2916 +function M.new(new92,2916 +function M.add_option(150,4297 +function M.add_option(add_option150,4297 +function M._getValue(186,5491 +function M._getValue(_getValue186,5491 +function M.store(212,6299 +function M.store(store212,6299 +function M.store_true(225,6810 +function M.store_true(store_true225,6810 +function M.append(238,7328 +function M.append(append238,7328 +function M.store_false(255,7918 +function M.store_false(store_false255,7918 +function M.count(268,8433 +function M.count(count268,8433 +function M.display_store(278,8733 +function M.display_store(display_store278,8733 +function M.display_flag(298,9249 +function M.display_flag(display_flag298,9249 +function M.display_count(311,9603 +function M.display_count(display_count311,9603 +function M.setDefaults(319,9870 +function M.setDefaults(setDefaults319,9870 +function M.parseOpt(334,10412 +function M.parseOpt(parseOpt334,10412 +function M.buildHelpMsg(347,10863 +function M.buildHelpMsg(buildHelpMsg347,10863 +function M.printHelp(370,11474 +function M.printHelp(printHelp370,11474 +function M.parseEnvArg(380,11759 +function M.parseEnvArg(parseEnvArg380,11759 +function M.parse(435,13111 +function M.parse(parse435,13111 + +proj_mgmt/tools_for_lua/.luatools_modules.list,12 +fileA=4,36 -contrib/TACC/reportQ.in,60 -PATH=4,36 - startD=16,200 - endD=17,218 - fileNm=19,235 +proj_mgmt/locate_shared_library.c,40 +#define _GNU_SOURCE1,0 +int main(8,117 -contrib/TACC/process_xalt_file_records.in,115 -myhost=3,35 -SYSHOST=5,91 -SWTOOLS=7,113 - MPATH=15,370 - export PATH=27,606 -XALT_EXECUTABLE_TRACKING=37,944 +proj_mgmt/updateVersion,101 +function masterTbl(17,317 +function main(21,360 +function options(82,1704 +function isFile(122,2730 + +proj_mgmt/developer/top_level_makefile,39 + cd my_build;2,9 + cd my_build; $(2,9 + +proj_mgmt/convert_mode.sh,104 +KIND=4,36 + uid=8,109 + UID_MIN=12,198 + xx=18,288 + UID_MIN=20,390 + umask=24,457 + +Makefile.in,4204 +abs_srcdir 22,1051 +srcdir 23,1085 +VPATH 24,1115 +CURRENT_MK 25,1145 +OS_NAME 27,1196 +LIB_OPTIONS 28,1235 +LDFLAGS 29,1270 + LIB_OPTIONS 31,1326 +MY_HOSTNAME_PARSER 35,1389 +OPTLVL 36,1435 +package 37,1468 +VERSION 38,1498 +TAR_VERSION 39,1555 +CRYPTO_STR 40,1615 +UUID_STR 41,1655 +CURL_STR 42,1693 +GPU_STR 43,1731 +BROKER_SERVER 44,1768 +BROKER_URI 45,1811 +TRACKING_MPI_ONLY 46,1851 +TRANSMISSION 47,1901 +SITE_NAME 48,1941 +SITE_CONTROLLED_PREFIX 49,1973 +ETC_DIR 50,2025 +prefix 51,2060 +XALT_V 52,2094 +DOT_V 53,2143 +XALT_SYSTEM_PATH 54,2176 +SYSLOG_MSG_SZ 55,2217 +HAVE_LIBUUID 56,2258 +HAVE_DCGM 57,2308 +HAVE_NVML 58,2342 +STATIC_LIBS 59,2381 +PRELOAD_ONLY 60,2422 +XALT_LD_LIBRARY_PATH 61,2465 +HAVE_32BIT 62,2514 +XALT_INSTALL_OS 63,2552 +XALT_SYSTEM_PATH 64,2597 +PATH_TO_MKTEMP 65,2638 +PATH_TO_PSTREE 66,2681 +USE_ARGPARSE 67,2723 +XALT_FILE_PREFIX 68,2771 +XALT_LOGGING_URL 69,2815 +XALT_PRIME_NUMBER 70,2861 +XALT_PRIME_FMT 71,2907 +XALT_FUNCTION_TRACKING 72,2947 +ENABLE_BACKGROUNDING 73,2999 +XALT_CONFIG_PY 74,3047 +XALT_SPEC 75,3089 +XALT_SPEC_PATTERN 76,3140 +CONF_PY 77,3214 +CONF_PY_PATTERN 78,3275 +UPDATE_VERSION 79,3354 +MODE 80,3487 +MODE_X 82,3522 +MODE_R 83,3588 +GIT_PROG 85,3655 + GIT_VERSION 87,3717 +VDATE 89,3905 +XALT_DIR 91,3948 +PKGV 92,4005 +PKG 93,4062 + XALT_DIR 95,4156 + PKGV 96,4193 + PKG 97,4230 + HAVE_32BIT 100,4301 +INC 103,4327 +LIB 104,4368 +LIB64 105,4405 +LIBEXEC 106,4444 +BIN 107,4485 +SBIN 108,4522 +SITE_PKG_DIR 109,4560 +DIRLIST 110,4609 +SITE_PKG 114,4872 +SITE_PKG 115,4928 +BIN_PKG 117,4996 +BIN_PKG 126,5815 +SBIN_PKG 128,5880 +SBIN_PKG 134,6437 +RT_PKG 136,6503 +RT_PKG 137,6563 +LIBEXEC_PKG 139,6629 +LIBEXEC_PKG 143,7007 +TACC_PKG 146,7077 +TACC_PKG 155,7927 +OBFUSCATE_HDR 157,7993 +OBFUSCATE_HDR 158,8046 +.PHONY:.PHONY161,8120 +all:all163,8150 +install:install166,8168 + echo 'Warning:echo 'Warning176,9079 +build_compiled:build_compiled181,9352 + $(MAKE) LD_PRELOAD=$(MAKE) LD_PRELOAD183,9463 + LDFLAGS=184,9564 + LIB64=185,9665 + HAVE_LIBUUID=186,9766 + XALT_FILE_PREFIX=187,9867 + CRYPTO_STR=188,9968 + XALT_LOGGING_URL=189,10069 + GPU_STR=190,10170 +inst_obfuscate:inst_obfuscate194,10386 +echo:echo198,10462 +$(DIRLIST)$(DIRLIST206,10643 +LINKS:LINKS209,10685 +Inst_site_py:Inst_site_py215,10890 +Inst_libexec:Inst_libexec218,11008 +Inst_sbin:Inst_sbin221,11193 +Inst_bin:Inst_bin224,11369 +Inst_TACC:Inst_TACC227,11542 +Inst_RT:Inst_RT230,11718 +Use_getent_yes:Use_getent_yes234,11891 +Use_argparse_no:Use_argparse_no240,12128 +Use_argparse_yes:Use_argparse_yes242,12146 +__installMe:__installMe245,12326 + bareN=247,12411 + fn=248,12490 + oext=250,12643 + [ "$$ext" [ "$$ext"252,12796 + [ "$$ext" [ "$$ext"253,12876 + [ "$$ext" [ "$$ext"285,15242 +world_update:world_update290,15496 + echo "All files not checked in echo "All files not checked in294,15773 + echo "configure is out of date echo "configure is out of date296,15946 +gittag:gittag305,16512 + elif [ $$my_tag !=elif [ $$my_tag !312,16945 + echo "TAG needs to be in the form:echo "TAG needs to be in the form314,17121 + echo "configure is out of date echo "configure is out of date317,17378 + vtag=319,17543 + vtag=320,17631 +tags:tags338,18765 +build_tags:build_tags341,18803 +dist:dist419,23605 +SUBMAKEFILES 434,24718 +makefile 436,24810 +src/makefile:src/makefile439,24894 +src/util/module.mk:src/util/module.mk442,24969 +src/linker/module.mk:src/linker/module.mk444,25055 +src/libxalt/module.mk:src/libxalt/module.mk446,25145 +neat:neat450,25239 + $(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR454,25506 + HAVE_32BIT=455,25600 +clean:clean456,25679 + $(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR459,25866 + HAVE_32BIT=460,25960 +clobber:clobber461,26039 + $(MAKE) PARENT_DIR=$(MAKE) PARENT_DIR464,26228 + HAVE_32BIT=465,26322 -contrib/build_reverseMapT_cray/cray_build_rmapT.sh,154 - BASE_MODULE_PATH=32,1346 - RmapDir=33,1379 -SCRIPT_DIR=57,2108 - sn=63,2295 - c_major=73,2499 - GCCPrev=86,2922 -OLD=98,3145 +my_docs/17/TACC_sysadmin_17/themes/beamercolorthemeTACC16.sty,120 +\definecolor{inecolor13,281 +\definecolor{inecolor14,319 +\definecolor{inecolor15,361 +\definecolor{inecolor17,442 -contrib/build_reverseMapT_cray/merge_json_files.py,16 -def main(6,103 +my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16-169.sty,446 + \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 + \def\beamer@themelist{\beamer@themelist14,266 + \def\usefolder#1{\usefolder18,414 + \def\beamer@themelocation{\beamer@themelocation19,434 + \def\beamer@themelocation{\beamer@themelocation21,472 +\newcommand{\event}\event32,631 + \def\TACC@eventname{\TACC@eventname34,673 +\newcommand{\sectionframe}\sectionframe37,717 +\newcommand{\subsectionframe}\subsectionframe38,786 -g++.sh,29 -export LD_LIBRARY_PATH=3,13 +my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16.sty,182 +\newcommand{\event}\event20,325 + \def\TACC@eventname{\TACC@eventname22,367 +\newcommand{\sectionframe}\sectionframe25,411 +\newcommand{\subsectionframe}\subsectionframe26,480 -LICENSE,800 - Copyright (C) 1991, 1999 Free Software Foundation,4,85 - 51 Franklin Street,5,142 - 51 Franklin Street, Fifth Floor,5,142 - 51 Franklin Street, Fifth Floor, Boston,5,142 - of this license document,7,266 -it in new free programs;32,1571 - To protect your rights,35,1653 -running a program using the Library is not restricted,144,7540 -warranty;155,8201 -your rights to work written entirely by you; rather,202,10527 -In addition,206,10701 -with the Library 207,10772 - Sections 1 and 2 above); and,289,15161 -system;398,21190 - Copyright 474,25147 - This library is free software;476,25184 - License as published by the Free Software Foundation;478,25313 - version 2.1 of the License,479,25378 - version 2.1 of the License, or 479,25378 - Yoyodyne,497,26199 - Ty Coon,502,26386 - -xalt.spec,797 -package use by R,89,2552 - --prefix=prefix103,2812 - %{!?with_mysql:--with-MySQL=MySQL104,2836 - %{!?with_mysql:--with-MySQL=no} %{?with_mysql:--with-MySQL=MySQL104,2836 - %{!?with_static:--with-staticLibs=staticLibs105,2904 - %{!?with_static:--with-staticLibs=no} %{?with_static:--with-staticLibs=staticLibs105,2904 - %{!?with_gpu:--with-trackGPU=trackGPU106,2984 - %{!?with_gpu:--with-trackGPU=no} %{?with_gpu:--with-trackGPU=trackGPU106,2984 - %{!?with_mpi:--with-trackMPI=trackMPI107,3054 - %{!?with_mpi:--with-trackMPI=no} %{?with_mpi:--with-trackMPI=trackMPI107,3054 - --with-config=config108,3124 - --with-syshostConfig=syshostConfig109,3153 - --with-transmission=transmission110,3190 -%{__make} install DESTDIR=113,3239 -local base 126,3615 -prepend_path(131,3789 - -my_docs/Lmod_installation,77 - $ CC=10,297 - CURRENT_MODULES=38,1181 - LMOD_PKG=47,1417 - -my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/17/TACC_sysadmin_17/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/17/TACC_sysadmin_17/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 +my_docs/17/TACC_sysadmin_17/talk_old.tex,244 +\newcommand{\bfnabla}\bfnabla28,992 +\newcommand{\laplacian}\laplacian29,1040 +\newcommand{\grad}\grad30,1082 +\newcommand{\tgrad}\tgrad31,1117 +\newcommand{\dvg}\dvg32,1155 +\newcommand{\curl}\curl33,1195 +\newcommand{\lap}\lap34,1237 my_docs/17/TACC_sysadmin_17/Makefile,102 TALKS 1,0 @@ -2597,14 +2913,21 @@ all:all7,117 clean:clean9,132 clobber:clobber13,215 -my_docs/17/TACC_sysadmin_17/talk_old.tex,244 -\newcommand{\bfnabla}\bfnabla28,992 -\newcommand{\laplacian}\laplacian29,1040 -\newcommand{\grad}\grad30,1082 -\newcommand{\tgrad}\tgrad31,1117 -\newcommand{\dvg}\dvg32,1155 -\newcommand{\curl}\curl33,1195 -\newcommand{\lap}\lap34,1237 +my_docs/17/big_data/db_design.org,274 +Here are some notes on talk to give to Joe Stubb,1,0 +Here are some notes on talk to give to Joe Stubb, Rich Cardone,1,0 +Walling,2,70 +** Tracks programs from $HOME,10,274 +** Tracks programs from $HOME, $WORK,10,274 +** Tracks programs from $HOME, $WORK, $SCRATCH,10,274 + +my_docs/17/big_data/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 my_docs/17/sc17/BoF.org,288 What programs,7,181 @@ -2624,5928 +2947,454 @@ my_docs/17/sc17/bof_talk_sc17.tex,244 \newcommand{\curl}\curl33,1185 \newcommand{\lap}\lap34,1227 -my_docs/17/big_data/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/17/big_data/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,128 -clean:clean9,143 -clobber:clobber13,226 - -my_docs/17/big_data/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/17/big_data/db_design.org,274 -Here are some notes on talk to give to Joe Stubb,1,0 -Here are some notes on talk to give to Joe Stubb, Rich Cardone,1,0 -Walling,2,70 -** Tracks programs from $HOME,10,274 -** Tracks programs from $HOME, $WORK,10,274 -** Tracks programs from $HOME, $WORK, $SCRATCH,10,274 - -my_docs/17/big_data/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/17/big_data/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/17/big_data/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/17/eb_hack_17/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 - -my_docs/17/eb_hack_17/talk.tex,244 -\newcommand{\bfnabla}\bfnabla28,991 -\newcommand{\laplacian}\laplacian29,1039 -\newcommand{\grad}\grad30,1081 -\newcommand{\tgrad}\tgrad31,1116 -\newcommand{\dvg}\dvg32,1154 -\newcommand{\curl}\curl33,1194 -\newcommand{\lap}\lap34,1236 - -my_docs/17/isc17/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 - -my_docs/17/isc17/bof2.txt,98 -Title: XALT,1,0 -Abstract 3,92 -usage within other frameworks such as Python;14,734 -XALT 19,971 - -my_docs/17/isc17/talk.tex,244 -\newcommand{\bfnabla}\bfnabla28,980 -\newcommand{\laplacian}\laplacian29,1028 -\newcommand{\grad}\grad30,1070 -\newcommand{\tgrad}\tgrad31,1105 -\newcommand{\dvg}\dvg32,1143 -\newcommand{\curl}\curl33,1183 -\newcommand{\lap}\lap34,1225 - -my_docs/17/isc17/bof.submission.txt,361 -Abstract 3,87 -of their own job-level activity to facilitate,18,902 -administrators,25,1243 -administrators, support staff,25,1243 -includes NCSA,27,1383 -includes NCSA, UK NCC,27,1383 -includes NCSA, UK NCC, KAUST,27,1383 -includes NCSA, UK NCC, KAUST, NICS,27,1383 -includes NCSA, UK NCC, KAUST, NICS, the University of Utah,27,1383 -Target Audience 34,1712 - -my_docs/21/eb_user_21/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/21/eb_user_21/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/21/eb_user_21/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/21/eb_user_21/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/21/eb_user_21/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,120 -clean:clean9,135 -clobber:clobber13,218 - -my_docs/21/eb_user_21/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/21/eb_user_21/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/21/eb_user_21/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/21/eb_user_21/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/21/eb_user_21/mpi3.txt,93 -mysql> select t3.function_name,function_name1,0 -mysql> select t3.function_name, COUNT(1,0 - -my_docs/20/utsa/ideas.org,140 -* Hi,4,81 - .bashrc,bashrc10,352 - .bashrc, .profile,profile10,352 - .bashrc, .profile, .cshrc,cshrc10,352 - Tip 16,550 - -my_docs/20/hpckp20/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/20/hpckp20/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/20/hpckp20/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/20/hpckp20/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/20/hpckp20/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,120 -clean:clean9,135 -clobber:clobber13,218 - -my_docs/20/hpckp20/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/20/hpckp20/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/20/hpckp20/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/20/hpckp20/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/20/hpckp20/mpi3.txt,93 -mysql> select t3.function_name,function_name1,0 -mysql> select t3.function_name, COUNT(1,0 - -my_docs/20/eb_user_20/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/20/eb_user_20/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/20/eb_user_20/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/20/eb_user_20/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/20/eb_user_20/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,120 -clean:clean9,135 -clobber:clobber13,218 - -my_docs/20/eb_user_20/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/20/eb_user_20/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/20/eb_user_20/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/20/eb_user_20/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/20/eb_user_20/mpi3.txt,93 -mysql> select t3.function_name,function_name1,0 -mysql> select t3.function_name, COUNT(1,0 - -my_docs/19/isc19/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/19/isc19/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/19/isc19/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/19/isc19/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/19/isc19/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,120 -clean:clean9,135 -clobber:clobber13,218 - -my_docs/19/isc19/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/19/isc19/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/19/isc19/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/19/isc19/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/19/sc19/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/19/sc19/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/19/sc19/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/19/sc19/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/19/sc19/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,120 -clean:clean9,135 -clobber:clobber13,218 - -my_docs/19/sc19/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/19/sc19/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/19/sc19/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/19/sc19/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/19/sc19/mpi3.txt,93 -mysql> select t3.function_name,function_name1,0 -mysql> select t3.function_name, COUNT(1,0 - -my_docs/19/eb_users/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/19/eb_users/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/19/eb_users/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/19/eb_users/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/19/eb_users/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,120 -clean:clean9,135 -clobber:clobber13,218 - -my_docs/19/eb_users/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/19/eb_users/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/19/eb_users/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/19/eb_users/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/18/sc18/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/18/sc18/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/18/sc18/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/18/sc18/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/18/sc18/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,128 -clean:clean9,143 -clobber:clobber13,226 - -my_docs/18/sc18/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/18/sc18/nvidia_booth_talk/bio.txt,41 -computations. Since 4,189 -Center 5,260 - -my_docs/18/sc18/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/18/sc18/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/18/sc18/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/18/isc18/themes/beamerthemeTACC16-169.sty,446 - \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 - \def\beamer@themelist{\beamer@themelist14,266 - \def\usefolder#1{\usefolder18,414 - \def\beamer@themelocation{\beamer@themelocation19,434 - \def\beamer@themelocation{\beamer@themelocation21,472 -\newcommand{\event}\event32,631 - \def\TACC@eventname{\TACC@eventname34,673 -\newcommand{\sectionframe}\sectionframe37,717 -\newcommand{\subsectionframe}\subsectionframe38,786 - -my_docs/18/isc18/themes/Makefile,19989 -fileinfo 31,1382 -author 32,1409 -version 33,1433 -.DEFAULT_GOAL 35,1453 -.PHONY:.PHONY38,1621 -.PHONY:.PHONY42,1800 -BUILD_STRATEGY ?=BUILD_STRATEGY ?48,2063 -export LC_ALL ?=export LC_ALL ?52,2228 -neverclean ?=neverclean ?86,3062 -CAT ?=CAT ?669,31015 -CP ?=CP ?670,31027 -DIFF ?=DIFF ?671,31040 -ECHO ?=ECHO ?672,31054 -EGREP ?=EGREP ?673,31068 -ENV ?=ENV ?674,31084 -EXPR ?=EXPR ?675,31096 -MV ?=MV ?676,31110 -SED ?=SED ?677,31123 -SORT ?=SORT ?678,31135 -TOUCH ?=TOUCH ?679,31149 -UNIQ ?=UNIQ ?680,31165 -WHICH ?=WHICH ?681,31179 -XARGS ?=XARGS ?682,31195 -SLEEP ?=SLEEP ?683,31211 -BIBTEX ?=BIBTEX ?685,31258 -DVIPS ?=DVIPS ?686,31276 -LATEX ?=LATEX ?687,31292 -PDFLATEX ?=PDFLATEX ?688,31308 -XELATEX ?=XELATEX ?689,31329 -EPSTOPDF ?=EPSTOPDF ?690,31349 -MAKEINDEX ?=MAKEINDEX ?691,31370 -XINDY ?=XINDY ?692,31393 -KPSEWHICH ?=KPSEWHICH ?693,31409 -GS ?=GS ?694,31432 -CYGPATH ?=CYGPATH ?697,31520 -TPUT ?=TPUT ?699,31570 -PERL ?=PERL ?701,31607 -PYTHON ?=PYTHON ?702,31621 -RST2LATEX ?=RST2LATEX ?703,31639 -CONVERT ?=CONVERT ?705,31688 -DOT ?=DOT ?706,31722 -DOT2TEX ?=DOT2TEX ?707,31746 -FIG2DEV ?=FIG2DEV ?708,31809 -GNUPLOT ?=GNUPLOT ?709,31836 -INKSCAPE ?=INKSCAPE ?710,31866 -XMGRACE ?=XMGRACE ?711,31912 -PNGTOPNM ?=PNGTOPNM ?712,31942 -PPMTOPGM ?=PPMTOPGM ?713,32001 -PNMTOPS ?=PNMTOPS ?714,32067 -GUNZIP ?=GUNZIP ?715,32125 -PSNUP ?=PSNUP ?717,32188 -VIEW_POSTSCRIPT ?=VIEW_POSTSCRIPT ?719,32226 -VIEW_PDF ?=VIEW_PDF ?720,32248 -VIEW_GRAPHICS ?=VIEW_GRAPHICS ?721,32265 -XINDYLANG ?=XINDYLANG ?724,32310 -XINDYENC ?=XINDYENC ?725,32331 -USE_CYGPATH 729,32490 -PS_EMBED_OPTIONS ?=PS_EMBED_OPTIONS ?741,32807 -PS_COMPATIBILITY ?=PS_COMPATIBILITY ?742,32909 -KEEP_TEMP ?=KEEP_TEMP ?745,33014 -DEFAULT_GPI_EPS_FONTSIZE ?=DEFAULT_GPI_EPS_FONTSIZE ?748,33047 -DEFAULT_GPI_PDF_FONTSIZE ?=DEFAULT_GPI_PDF_FONTSIZE ?749,33078 -RST_STYLE_FILE ?=RST_STYLE_FILE ?752,33132 -FIXED_ECHO 756,33314 -ECHO 757,33399 -GNUPLOT_OUTPUT_EXTENSION ?=GNUPLOT_OUTPUT_EXTENSION ?766,33666 -GPI_OUTPUT_EXTENSION 771,33925 -GPI_FSIZE_SYNTAX 776,34180 - $(findstring fsize:$(findstring fsize780,34268 -BINARY_TARGET_DIR ?=BINARY_TARGET_DIR ?798,34819 -RESTARTS 800,34847 -GRAY ?=GRAY ?854,36736 -remove-files-helper 862,36915 -remove-files 865,37002 -clean-files 870,37228 -remove-temporary-files 899,38203 -cleanse-filename 903,38346 -escape-fname-regex 907,38443 -test-exists 911,38551 -move-if-exists 914,38619 -copy-if-different 918,38792 -copy-if-exists 919,38860 -move-if-different 920,38920 -replace-if-different-and-remove 921,38988 -test-different 928,39214 -test-exists-and-different 929,39271 -get-default 934,39475 -space 962,40278 -colon 963,40306 -comma 964,40319 -sh_true 967,40359 -sh_false 968,40373 -.SUFFIXES:.SUFFIXES971,40441 -RM 975,40522 -QUIET 980,40599 -SHELL +=SHELL +986,40736 -this_file 992,40922 -this_file 994,40991 -REAL_TPUT 999,41083 -get-term-code 1004,41216 -black 1006,41278 -red 1007,41317 -green 1008,41354 -yellow 1009,41393 -blue 1010,41433 -magenta 1011,41471 -cyan 1012,41512 -white 1013,41550 -bold 1014,41589 -uline 1015,41624 -reset 1016,41660 -LATEX_COLOR_WARNING ?=LATEX_COLOR_WARNING ?1021,41729 -LATEX_COLOR_ERROR ?=LATEX_COLOR_ERROR ?1022,41760 -LATEX_COLOR_INFO ?=LATEX_COLOR_INFO ?1023,41785 -LATEX_COLOR_UNDERFULL ?=LATEX_COLOR_UNDERFULL ?1024,41811 -LATEX_COLOR_OVERFULL ?=LATEX_COLOR_OVERFULL ?1025,41844 -LATEX_COLOR_PAGES ?=LATEX_COLOR_PAGES ?1026,41877 -LATEX_COLOR_BUILD ?=LATEX_COLOR_BUILD ?1027,41903 -LATEX_COLOR_GRAPHIC ?=LATEX_COLOR_GRAPHIC ?1028,41929 -LATEX_COLOR_DEP ?=LATEX_COLOR_DEP ?1029,41959 -LATEX_COLOR_SUCCESS ?=LATEX_COLOR_SUCCESS ?1030,41985 -LATEX_COLOR_FAILURE ?=LATEX_COLOR_FAILURE ?1031,42019 -get-color 1036,42198 -C_WARNING 1041,42289 -C_ERROR 1042,42328 -C_INFO 1043,42364 -C_UNDERFULL 1044,42398 -C_OVERFULL 1045,42441 -C_PAGES 1046,42482 -C_BUILD 1047,42518 -C_GRAPHIC 1048,42554 -C_DEP 1049,42593 -C_SUCCESS 1050,42625 -C_FAILURE 1051,42664 -C_RESET 1052,42703 -hascleangoals 1060,42866 -hasbuildgoals 1061,42939 -GNUPLOT_SED 1073,43267 -GNUPLOT_GLOBAL 1074,43309 -default_graphic_extension ?=default_graphic_extension ?1077,43406 -latex_build_program ?=latex_build_program ?1078,43439 -build_target_extension ?=build_target_extension ?1079,43472 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1080,43503 -hyperref_driver_error ?=hyperref_driver_error ?1081,43538 -default_graphic_extension ?=default_graphic_extension ?1085,43669 -latex_build_program ?=latex_build_program ?1086,43702 -build_target_extension ?=build_target_extension ?1087,43738 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1088,43769 -hyperref_driver_error ?=hyperref_driver_error ?1089,43804 -default_graphic_extension ?=default_graphic_extension ?1093,43957 -latex_build_program ?=latex_build_program ?1094,43990 -build_target_extension ?=build_target_extension ?1095,44025 -hyperref_driver_pattern ?=hyperref_driver_pattern ?1096,44056 -hyperref_driver_error ?=hyperref_driver_error ?1097,44094 -all_files.tex ?=all_files.tex ?1101,44223 -all_files.tex.sh ?=all_files.tex.sh ?1102,44259 -all_files.tex.pl ?=all_files.tex.pl ?1103,44300 -all_files.tex.py ?=all_files.tex.py ?1104,44341 -all_files.rst ?=all_files.rst ?1105,44382 -all_files.fig ?=all_files.fig ?1106,44418 -all_files.gpi ?=all_files.gpi ?1107,44454 -all_files.dot ?=all_files.dot ?1108,44490 -all_files.xvg ?=all_files.xvg ?1109,44526 -all_files.svg ?=all_files.svg ?1110,44562 -all_files.png ?=all_files.png ?1111,44598 -all_files.jpg ?=all_files.jpg ?1112,44634 -all_files.jpeg ?=all_files.jpeg ?1113,44670 -all_files.eps.gz ?=all_files.eps.gz ?1114,44708 -all_files.eps ?=all_files.eps ?1115,44749 -cleanable-files 1120,44977 -ignore_files 1125,45204 -ignore_patterns 1130,45365 -nodefault_patterns 1133,45467 -filter-buildable 1137,45612 -filter-default 1143,45826 -files.tex 1148,46017 -files.tex.sh 1149,46059 -files.tex.pl 1150,46107 -files.tex.py 1151,46155 -files.rst 1152,46203 -files.gpi 1153,46245 -files.dot 1154,46287 -files.fig 1155,46329 -files.xvg 1156,46371 -files.svg 1157,46413 -files.png 1158,46455 -files.jpg 1159,46497 -files.jpeg 1160,46539 -files.eps.gz 1161,46583 -files.eps 1162,46631 -.SECONDARY:.SECONDARY1169,46998 -default_files.tex 1172,47104 -default_files.tex.sh 1173,47152 -default_files.tex.pl 1174,47206 -default_files.tex.py 1175,47260 -default_files.rst 1176,47314 -default_files.gpi 1177,47362 -default_files.dot 1178,47410 -default_files.fig 1179,47458 -default_files.xvg 1180,47506 -default_files.svg 1181,47554 -default_files.png 1182,47602 -default_files.jpg 1183,47650 -default_files.jpeg 1184,47698 -default_files.eps.gz 1185,47748 -default_files.eps 1186,47802 -concat-files 1190,47946 -all_files_source 1193,48027 -all_files_scripts 1194,48076 -.PHONY:.PHONY1196,48148 -default_files_source 1198,48178 -default_files_scripts 1199,48235 -files_source 1201,48315 -files_scripts 1202,48356 -get-stems 1206,48495 -all_stems.tex 1209,48617 -all_stems.tex.sh 1210,48661 -all_stems.tex.pl 1211,48710 -all_stems.tex.py 1212,48759 -all_stems.rst 1213,48808 -all_stems.fig 1214,48852 -all_stems.gpi 1215,48896 -all_stems.dot 1216,48940 -all_stems.xvg 1217,48984 -all_stems.svg 1218,49028 -all_stems.png 1219,49072 -all_stems.jpg 1220,49116 -all_stems.jpeg 1221,49160 -all_stems.eps.gz 1222,49206 -all_stems.eps 1223,49255 -default_stems.tex 1226,49355 -default_stems.tex.sh 1227,49407 -default_stems.tex.pl 1228,49465 -default_stems.tex.py 1229,49523 -default_stems.rst 1230,49581 -default_stems.fig 1231,49633 -default_stems.gpi 1232,49685 -default_stems.dot 1233,49737 -default_stems.xvg 1234,49789 -default_stems.svg 1235,49841 -default_stems.png 1236,49893 -default_stems.jpg 1237,49945 -default_stems.jpeg 1238,49997 -default_stems.eps.gz 1239,50051 -default_stems.eps 1240,50109 -stems.tex 1243,50228 -stems.tex.sh 1244,50264 -stems.tex.pl 1245,50306 -stems.tex.py 1246,50348 -stems.rst 1247,50390 -stems.fig 1248,50426 -stems.gpi 1249,50462 -stems.dot 1250,50498 -stems.xvg 1251,50534 -stems.svg 1252,50570 -stems.png 1253,50606 -stems.jpg 1254,50642 -stems.jpeg 1255,50678 -stems.eps.gz 1256,50716 -stems.eps 1257,50758 -concat-stems 1261,50890 -graphic_source_extensions 1264,51020 -graphic_source_extensions +=graphic_source_extensions +1272,51164 -graphic_target_extensions 1273,51206 -graphic_source_extensions +=graphic_source_extensions +1277,51294 -graphic_target_extensions 1278,51327 -graphic_source_extensions +=graphic_source_extensions +1282,51432 -graphic_target_extensions 1283,51465 -all_stems_source 1286,51526 -all_stems_script 1287,51575 -all_stems_graphic 1288,51645 -all_stems_ss 1289,51720 -all_stems_sg 1290,51785 -all_stems_ssg 1291,51830 -default_stems_source 1293,51873 -default_stems_script 1294,51930 -default_stems_ss 1295,52008 -default_stems_sg 1296,52084 -default_stems_ssg 1297,52136 -stems_source 1299,52186 -stems_script 1300,52228 -stems_graphic 1301,52291 -stems_gg 1302,52359 -stems_ss 1303,52397 -stems_sg 1304,52450 -stems_ssg 1305,52487 -allowed_source_suffixes 1310,52699 -allowed_source_patterns 1323,52828 -allowed_graphic_suffixes 1325,52900 -allowed_graphic_patterns 1330,52967 -allowed_source_targets 1333,53081 -allowed_graphic_targets 1338,53232 -allowed_batch_source_targets 1343,53401 -allowed_batch_graphic_targets 1355,53594 -real_goals 1362,53765 -specified_source_targets 1365,53849 -specified_batch_source_targets 1369,53957 -specified_graphic_targets 1373,54064 -specified_batch_graphic_targets 1377,54161 -specified_gpi_targets 1381,54270 -source_stems_to_include 1391,54843 -graphic_stems_to_include 1404,55286 -all_pdf_targets 1415,55569 -all_ps_targets 1416,55620 -all_dvi_targets 1417,55669 -all_tex_targets 1418,55720 -all_d_targets 1419,55770 -all_graphics_targets 1420,55817 -all_pstex_targets 1421,55896 -all_dot2tex_targets 1422,55952 -all_known_graphics 1424,56009 -default_pdf_targets 1426,56107 -default_ps_targets 1429,56211 -default_dvi_targets 1430,56270 -pre_pdf_extensions 1431,56331 -rm_ext 1435,56444 -backup_patterns 1438,56609 -graph_stem 1440,56665 -rm_tex 1444,56743 -gpi_sed 1456,57351 -gpi_global 1458,57431 --e 's/[[:-e 's/[[1474,57882 --e ':-e '1482,58100 --e 's!.*!$2:-e 's!.*!$21483,58119 --e '/^:-e '/^1504,58469 --e ' s//:-e ' s//1505,58497 --e '/^:-e '/^1510,58559 --e ' s//:-e ' s//1511,58576 --e ':-e '1515,58630 --e 's/^/:-e 's/^/1516,58650 --e ':-e '1520,58695 --e 's/^/:-e 's/^/1521,58715 --e ':-e '1525,58761 --e 's/^/:-e 's/^/1526,58783 --e ':-e '1530,58830 --e '/^! LaTeX Error:-e '/^! LaTeX Error1531,58844 --e '/^:-e '/^1534,58909 --e ' /Default extension:-e ' /Default extension1536,58948 --e ' s/[[:-e ' s/[[1538,59035 --e ' s/[[:-e ' s/[[1540,59088 --e ' s!^.*!$2:-e ' s!^.*!$21546,59239 --e '/^File:-e '/^File1598,61235 --e '/^:-e '/^1616,61522 --e ' s//:-e ' s//1617,61550 --e '/^:-e '/^1622,61612 --e ' s//:-e ' s//1623,61629 --e ':-e '1627,61683 --e 's/^/:-e 's/^/1628,61703 --e ':-e '1632,61748 --e 's/^/:-e 's/^/1633,61768 --e ':-e '1637,61814 --e 's/^/:-e 's/^/1638,61836 --e ':-e '1642,61883 --e '/^[^[:-e '/^[^[1643,61897 --e '/^:-e '/^1647,62011 --e ' s/^:-e ' s/^1649,62070 --e ' s/[[:-e ' s/[[1653,62152 --e ' s/'"'"' not found\..*extensions:-e ' s/'"'"' not found\..*extensions1655,62208 --e ' s/\(.*\)-e ' s/\(.*\1657,62289 --e ' s/:-e ' s/1660,62434 --e ':-e '1664,62494 --e 's/[[:-e 's/[[1665,62513 --e 's!.*!$1.d:-e 's!.*!$1.d1670,62601 --e 's!.*!$1.$(build_target_extension) $1._graphics:-e 's!.*!$1.$(build_target_extension) $1._graphics1674,62681 -if $(EGREP) -q '^! LaTeX Error:if $(EGREP) -q '^! LaTeX Error1684,62934 -if $(EGREP) -q ' LaTeX Error:if $(EGREP) -q ' LaTeX Error1708,63730 --e 's/^No file \(.*\.ind\)\.$$/TARGETS=-e 's/^No file \(.*\.ind\)\.$$/TARGETS1736,64687 --e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS=-e 's/^No file \(.*\.[gn]ls\)\.$$/TARGETS1737,64733 --e 's/[[:-e 's/[[1738,64782 --e '/^TARGETS=-e '/^TARGETS1739,64809 --e ' s!^TARGETS=-e ' s!^TARGETS1741,64840 --e ' s!^TARGETS=-e ' s!^TARGETS1743,64879 --e 's/[[:-e 's/[[1770,65858 --e 's!^!$2:-e 's!^!$21775,65975 -$(ECHO) '# vim:$(ECHO) '# vim1798,66503 -$(ECHO) 'INCLUDED_$(call cleanse-filename,$2)$(ECHO) 'INCLUDED_$(call cleanse-filename,$21800,66599 -$(call get-gpi-deps,$1,$(addprefix $(2:$(call get-gpi-deps,$1,$(addprefix $(21801,66660 --e '/^[[:-e '/^[[1819,67446 --e ' s/^[[:-e ' s/^[[1825,67574 --e ' s/[[:-e ' s/[[1826,67652 --e ' s/.*:-e ' s/.*1829,67860 --e ' s!.*!$2:-e ' s!.*!$21830,67936 --e 's/^[[:-e 's/^[[1835,67997 --e '/^:-e '/^1869,68949 --e ' s//:-e ' s//1870,68977 --e '/^:-e '/^1875,69039 --e ' s//:-e ' s//1876,69056 --e ':-e '1880,69110 --e 's/^/:-e 's/^/1881,69130 --e ':-e '1885,69175 --e 's/^/:-e 's/^/1886,69195 --e ':-e '1890,69241 --e 's/^/:-e 's/^/1891,69263 --e ':-e '1895,69310 --e '/^! LaTeX Error:-e '/^! LaTeX Error1896,69324 --e 's/^[^[:-e 's/^[^[1900,69405 --e 's/^\(.*\n\)\([^[:-e 's/^\(.*\n\)\([^[1901,69456 --e '/^!!! .* LaTeX Error:-e '/^!!! .* LaTeX Error1902,69525 --e '/^:-e '/^1906,69611 --e ' s/^:-e ' s/^1908,69669 --e ' s/^:-e ' s/^1911,69727 --e ' s/^\(.*not found.\).*Enter file name:-e ' s/^\(.*not found.\).*Enter file name1912,69749 --e '/^:-e '/^1915,69875 --e ' s/^:-e ' s/^1917,69937 --e ' s/:-e ' s/1920,69995 --e ' /could not locate.*any of these extensions:-e ' /could not locate.*any of these extensions1921,70018 --e '/^\(.* LaTeX Error:-e '/^\(.* LaTeX Error1927,70156 --e '/.*\(!!! .*Undefined control sequence\)[^[:-e '/.*\(!!! .*Undefined control sequence\)[^[1931,70303 --e ' s//\1:-e ' s//\11932,70371 --e ' s/\nl\.[[:-e ' s/\nl\.[[1933,70391 --e '/^\(!pdfTeX error:-e '/^\(!pdfTeX error1936,70485 --e ' s/[[:-e ' s/[[1941,70584 --e ' s/[[:-e ' s/[[1942,70609 --e ':-e '1946,70671 --e 's/^xindy:-e 's/^xindy1969,71085 --e '/^Error:-e '/^Error1979,71265 --e ' /^Execution stack:-e ' /^Execution stack1980,71303 --e '/, line [0-9]*:-e '/, line [0-9]*1993,71524 --e '/, line [0-9]*:-e '/, line [0-9]*1999,71624 --e '/^Error:-e '/^Error2028,72277 --e 's/^Warning:-e 's/^Warning2029,72333 --e 's![.:-e 's![.2042,72657 --e 's!.*!\\:-e 's!.*!\\2044,72694 -color_tex 2085,73738 --e ' s/[[:-e ' s/[[2102,74048 --e ' / *LaTeX Error:-e ' / *LaTeX Error2107,74233 --e ' s/.*\( *LaTeX Error:-e ' s/.*\( *LaTeX Error2108,74262 --e ' /.*Warning:-e ' /.*Warning2111,74350 --e ' -e '2124,74672 -color_bib 2129,74731 --e '/---/,/^.[^:-e '/---/,/^.[^2133,74811 --e ' /^.[^:-e ' /^.[^2135,74845 -enlarge_beamer 2150,75167 -test-run-again 2153,75263 -| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning:| $(EGREP) -q '^(.*Rerun .*|No file $1\.[^.]+\.|No file .+\.tex\.|LaTeX Warning2162,75591 -run-latex 2168,75760 -latex-color-log 2171,75903 -success=2175,76028 -[ "$$success" [ "$$success"2182,76218 -success=2188,76347 -if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy:if ! $(XINDY) -q -o $2 -L $(XINDYLANG) -C $(XINDYENC) -I xindy -M $3 -t $4 $1 > /dev/null || $(EGREP) -q '^xindy2189,76360 -[ "$$success" [ "$$success"2194,76561 -[ ! -e '$2.cookie' ] && $(ECHO) "restarts=[ ! -e '$2.cookie' ] && $(ECHO) "restarts2203,76857 -restarts=2204,76972 -level=2205,77027 -if $(EXPR) $(MAKELEVEL) '<=if $(EXPR) $(MAKELEVEL) '<2206,77076 -run-bibtex 2217,77397 -$(EPSTOPDF) '$1.cookie' --outfile=$(EPSTOPDF) '$1.cookie' --outfile2224,77705 -default-gpi-fontsize 2232,77943 -$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[:$(strip $(if $2,monochrome,$(if $(shell $(EGREP) '^\#\#[[2248,78537 -gpi-font-entry 2255,78862 -fnames=2289,79841 -success=2294,79964 -[ "$$success" [ "$$success"2307,80336 -$(CONVERT) $(if $3,-type Grayscale,) '$1' eps2:$(CONVERT) $(if $3,-type Grayscale,) '$1' eps22334,81070 -convert-fig 2339,81224 -convert-fig-pstex 2343,81400 -convert-fig-pstex-t 2347,81578 -convert-dot-tex 2351,81745 -convert-svg 2356,81882 -convert-xvg 2361,82074 -convert-epsgz 2366,82263 -convert-eps 2371,82470 -gray_eps_file 2374,82600 -make-ps 2497,86948 -make-pdf 2503,87189 -echo-build 2508,87380 -echo-graphic 2509,87452 -echo-dep 2510,87513 -echo-list 2514,87626 -.PHONY:.PHONY2520,87697 -all:all2521,87709 -.PHONY:.PHONY2523,87740 -all-pdf:all-pdf2524,87756 -.PHONY:.PHONY2527,87833 -all-ps:all-ps2528,87848 -.PHONY:.PHONY2530,87881 -all-dvi:all-dvi2531,87897 -.PHONY:.PHONY2537,87959 -show:show2538,87972 -source_includes 2546,88089 -graphic_includes 2547,88151 -.PHONY:.PHONY2575,89162 -$(default_stems_ss)$(default_stems_ss2576,89190 -.PHONY:.PHONY2579,89267 -$(addsuffix ._show,$(stems_ssg)$(addsuffix ._show,$(stems_ssg2580,89308 -.SECONDARY:.SECONDARY2584,89426 -%.pdf:%.pdf2585,89457 -.SECONDARY:.SECONDARY2600,89883 -%.ps:%.ps2601,89913 -.SECONDARY:.SECONDARY2660,91834 -%.$(build_target_extension)%.$(build_target_extension2662,91871 -%.bbl:%.bbl2726,93989 -%.ind:%.ind2753,95068 -%.gls:%.gls2758,95202 -%.gls:%.gls2763,95380 -%.gls:%.gls2768,95535 -%.nls:%.nls2773,95688 -.SECONDARY:.SECONDARY2780,95901 -%.tex:%.tex2782,95933 -%.tex:%.tex2785,95994 -%.tex:%.tex2788,96056 -%.tex:%.tex2791,96116 -.PHONY:.PHONY2800,96314 -all-graphics:all-graphics2801,96335 -.PHONY:.PHONY2804,96417 -all-pstex:all-pstex2805,96435 -.PHONY:.PHONY2808,96475 -all-dot2tex:all-dot2tex2809,96495 -.PHONY:.PHONY2811,96533 -show-graphics:show-graphics2812,96555 -$(gray_eps_file)$(gray_eps_file2815,96624 -%.pdf:%.pdf2820,96763 -%.pdf:%.pdf2825,96940 -%.pdf:%.pdf2830,97072 -%.pdf:%.pdf2834,97165 -%.pdf:%.pdf2840,97308 -%.pdf:%.pdf2845,97485 -%.pdf:%.pdf2850,97617 -%.eps:%.eps2857,97718 -%.eps:%.eps2861,97844 -%.eps:%.eps2865,97937 -%.eps:%.eps2869,98068 -%.eps:%.eps2876,98384 -%.eps:%.eps2882,98592 -%.eps:%.eps2886,98716 -%.eps:%.eps2890,98841 -%.eps:%.eps2895,98971 -%.pstex:%.pstex2899,99100 -%.pstex_t:%.pstex_t2903,99201 -%.dot_t:%.dot_t2907,99323 -%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls:%.$(build_target_extension).1st.make %.d %.aux %.aux.make %.fls2950,100723 -.SECONDARY:.SECONDARY2980,102123 -%.auxbbl.make:%.auxbbl.make2981,102174 -%.gpi.d:%.gpi.d2990,102554 -%.paper.make:%.paper.make2999,102928 -%.embed.make:%.embed.make3028,103676 -.PHONY:.PHONY3037,103846 -_all_programs:_all_programs3038,103868 -.PHONY:.PHONY3042,103973 -_check_programs:_check_programs3043,103997 -.PHONY:.PHONY3072,104750 -_check_gpi_files:_check_gpi_files3073,104775 -.PHONY:.PHONY3088,105210 -_all_stems:_all_stems3089,105229 -.PHONY:.PHONY3093,105332 -_includes:_includes3094,105350 -.PHONY:.PHONY3101,105581 -_all_sources:_all_sources3102,105602 -.PHONY:.PHONY3106,105706 -_dependency_graph:_dependency_graph3107,105732 -.PHONY:.PHONY3111,105841 -_show_dependency_graph:_show_dependency_graph3112,105872 -.PHONY:.PHONY3118,106118 -_sources:_sources3119,106135 -.PHONY:.PHONY3123,106227 -_scripts:_scripts3124,106244 -.PHONY:.PHONY3128,106340 -_graphic_outputs:_graphic_outputs3129,106365 -.PHONY:.PHONY3133,106484 -_env:_env3134,106497 -.PHONY:.PHONY3150,107020 -clean-generated:clean-generated3151,107044 -.PHONY:.PHONY3155,107190 -clean-deps:clean-deps3156,107209 -.PHONY:.PHONY3159,107296 -clean-tex:clean-tex3160,107314 -.PHONY:.PHONY3163,107376 -clean-graphics:clean-graphics3170,107814 -.PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 +my_docs/17/eb_hack_17/talk.tex,244 +\newcommand{\bfnabla}\bfnabla28,991 +\newcommand{\laplacian}\laplacian29,1039 +\newcommand{\grad}\grad30,1081 +\newcommand{\tgrad}\tgrad31,1116 +\newcommand{\dvg}\dvg32,1154 +\newcommand{\curl}\curl33,1194 +\newcommand{\lap}\lap34,1236 + +my_docs/17/eb_hack_17/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 + +my_docs/17/isc17/bof.submission.txt,361 +Abstract 3,87 +of their own job-level activity to facilitate,18,902 +administrators,25,1243 +administrators, support staff,25,1243 +includes NCSA,27,1383 +includes NCSA, UK NCC,27,1383 +includes NCSA, UK NCC, KAUST,27,1383 +includes NCSA, UK NCC, KAUST, NICS,27,1383 +includes NCSA, UK NCC, KAUST, NICS, the University of Utah,27,1383 +Target Audience 34,1712 + +my_docs/17/isc17/talk.tex,244 +\newcommand{\bfnabla}\bfnabla28,980 +\newcommand{\laplacian}\laplacian29,1028 +\newcommand{\grad}\grad30,1070 +\newcommand{\tgrad}\tgrad31,1105 +\newcommand{\dvg}\dvg32,1143 +\newcommand{\curl}\curl33,1183 +\newcommand{\lap}\lap34,1225 + +my_docs/17/isc17/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 + +my_docs/17/isc17/bof2.txt,98 +Title: XALT,1,0 +Abstract 3,92 +usage within other frameworks such as Python;14,734 +XALT 19,971 + +my_docs/21/eb_user_21/mpi3.txt,93 +mysql> select t3.function_name,function_name1,0 +mysql> select t3.function_name, COUNT(1,0 + +my_docs/21/eb_user_21/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,120 +clean:clean9,135 +clobber:clobber13,218 + +my_docs/21/xalt_monthly_mtg_2021_12_16/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/21/xalt_monthly_mtg_2021_10_14/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/21/xalt_monthly_mtg_2021_09_09/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/21/xalt_monthly_mtg_2021_11_11/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/web/xalt.txt,54 +XALT is a collaboration between PI Mark Fahey 12,355 + +my_docs/16/sc16/talk.tex,244 +\newcommand{\bfnabla}\bfnabla28,988 +\newcommand{\laplacian}\laplacian29,1036 +\newcommand{\grad}\grad30,1078 +\newcommand{\tgrad}\tgrad31,1113 +\newcommand{\dvg}\dvg32,1151 +\newcommand{\curl}\curl33,1191 +\newcommand{\lap}\lap34,1233 + +my_docs/16/sc16/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 + +my_docs/16/isc16/abs.txt,156 +Let's talk real, no-kiddin' supercomputer analytics,4,64 +individual tasks,7,268 +individual tasks, users,7,268 +We have been running XALT at TACC,25,1175 + +my_docs/16/isc16/talk.tex,314 +\newcommand{\bfnabla}\bfnabla28,1002 +\newcommand{\laplacian}\laplacian29,1050 +\newcommand{\grad}\grad30,1092 +\newcommand{\tgrad}\tgrad31,1127 +\newcommand{\dvg}\dvg32,1165 +\newcommand{\curl}\curl33,1205 +\newcommand{\lap}\lap34,1247 +\section{XALT}XALT42,1342 +\section{Conclusion}Conclusion319,9381 + +my_docs/16/isc16/abstract.txt,224 +Let’s talk real,1,0 +Let’s talk real, no-kiddin’ supercomputer analytics,1,0 +individual batch submissions,4,210 +individual batch submissions, users,4,210 +organizations concerned about meeting users’ needs;14,803 + +my_docs/16/isc16/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 + +my_docs/16/fosdem16/abs.txt,156 +Let's talk real, no-kiddin' supercomputer analytics,4,64 +individual tasks,7,268 +individual tasks, users,7,268 +We have been running XALT at TACC,25,1175 + +my_docs/16/fosdem16/talk.tex,313 +\newcommand{\bfnabla}\bfnabla28,979 +\newcommand{\laplacian}\laplacian29,1027 +\newcommand{\grad}\grad30,1069 +\newcommand{\tgrad}\tgrad31,1104 +\newcommand{\dvg}\dvg32,1142 +\newcommand{\curl}\curl33,1182 +\newcommand{\lap}\lap34,1224 +\section{XALT}XALT42,1319 +\section{Conclusion}Conclusion329,9922 + +my_docs/16/fosdem16/abstract.txt,224 +Let’s talk real,1,0 +Let’s talk real, no-kiddin’ supercomputer analytics,1,0 +individual batch submissions,4,210 +individual batch submissions, users,4,210 +organizations concerned about meeting users’ needs;14,803 + +my_docs/16/fosdem16/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 + +my_docs/16/sea16/abs.txt,156 +Let's talk real, no-kiddin' supercomputer analytics,4,64 +individual tasks,7,268 +individual tasks, users,7,268 +We have been running XALT at TACC,25,1175 + +my_docs/16/sea16/talk.tex,314 +\newcommand{\bfnabla}\bfnabla28,1001 +\newcommand{\laplacian}\laplacian29,1049 +\newcommand{\grad}\grad30,1091 +\newcommand{\tgrad}\tgrad31,1126 +\newcommand{\dvg}\dvg32,1164 +\newcommand{\curl}\curl33,1204 +\newcommand{\lap}\lap34,1246 +\section{XALT}XALT42,1341 +\section{Conclusion}Conclusion304,9171 + +my_docs/16/sea16/abstract.txt,224 +Let’s talk real,1,0 +Let’s talk real, no-kiddin’ supercomputer analytics,1,0 +individual batch submissions,4,210 +individual batch submissions, users,4,210 +organizations concerned about meeting users’ needs;14,803 + +my_docs/16/sea16/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 + +my_docs/20/eb_user_20/mpi3.txt,93 +mysql> select t3.function_name,function_name1,0 +mysql> select t3.function_name, COUNT(1,0 + +my_docs/20/eb_user_20/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,120 +clean:clean9,135 +clobber:clobber13,218 -my_docs/18/isc18/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 +my_docs/20/utsa/ideas.org,140 +* Hi,4,81 + .bashrc,bashrc10,352 + .bashrc, .profile,profile10,352 + .bashrc, .profile, .cshrc,cshrc10,352 + Tip 16,550 -my_docs/18/isc18/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 +my_docs/20/hpckp20/mpi3.txt,93 +mysql> select t3.function_name,function_name1,0 +mysql> select t3.function_name, COUNT(1,0 -my_docs/18/isc18/Makefile,102 +my_docs/20/hpckp20/Makefile,102 TALKS 1,0 TEX_SUFS 2,21 %.pdf:%.pdf4,87 +all:all7,120 +clean:clean9,135 +clobber:clobber13,218 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex2/msg.f90,19 +subroutine msg1,0 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex2/Makefile,219 +EXEC 1,0 +TARGETS 2,15 +OBJS 3,45 +all:all5,66 +$(EXEC)$(EXEC7,83 +try.o:try.o10,121 +msg.o:msg.o13,171 +libxalt.so:libxalt.so16,221 +neat:neat19,275 +clean:clean21,291 +clobber:clobber23,318 +test:test26,349 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex3/random.f90,28 +real*8 function random(1,0 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex3/xalt.c,156 +void myinit(3,39 +void myfini(10,190 +__attribute__((section(".init_array"))) __typeof__(15,249 +__attribute__((section(".fini_array"))) __typeof__(16,326 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex3/Makefile,250 +EXEC 1,0 +OBJS 2,12 +CC 3,35 +TARGETS 4,50 +all:all6,77 +try:try8,94 +libxalt.so:libxalt.so11,134 +xalt.o:xalt.o14,188 +try.o:try.o17,236 +random.o:random.o19,285 +neat:neat25,344 +clean:clean27,360 +clobber:clobber29,383 +test:test32,417 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex1/msg.f90,19 +subroutine msg1,0 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex1/Makefile,155 +EXEC 1,0 +OBJS 2,12 +all:all4,33 +$(EXEC)$(EXEC6,47 +try.o:try.o9,85 +msg.o:msg.o12,117 +neat:neat15,149 +clean:clean17,165 +clobber:clobber19,192 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex2/xalt.c,173 +#define SZ 4,59 +void myinit(5,75 +void myfini(13,256 +__attribute__((section(".init_array"))) __typeof__(18,315 +__attribute__((section(".fini_array"))) __typeof__(19,392 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex2/Makefile,180 +CC 1,0 +TARGETS 2,15 +all:all4,42 +try:try6,59 +libxalt.so:libxalt.so9,91 +xalt.o:xalt.o12,145 +neat:neat15,193 +clean:clean17,209 +clobber:clobber19,232 +test:test22,266 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex2/try.c,32 +#define SZ 3,39 +int main(4,55 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex3/xalt.c,173 +#define SZ 4,59 +void myinit(5,75 +void myfini(14,297 +__attribute__((section(".init_array"))) __typeof__(19,356 +__attribute__((section(".fini_array"))) __typeof__(20,433 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex3/Makefile,180 +CC 1,0 +TARGETS 2,15 +all:all4,42 +try:try6,59 +libxalt.so:libxalt.so9,91 +xalt.o:xalt.o12,145 +neat:neat15,193 +clean:clean17,209 +clobber:clobber19,232 +test:test22,266 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex3/try.c,32 +#define SZ 3,39 +int main(4,55 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex1/xalt.c,154 +void myinit(2,19 +void myfini(6,99 +__attribute__((section(".init_array"))) __typeof__(11,158 +__attribute__((section(".fini_array"))) __typeof__(12,235 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex1/Makefile,180 +CC 1,0 +TARGETS 2,15 +all:all4,42 +try:try6,59 +libxalt.so:libxalt.so9,91 +xalt.o:xalt.o12,145 +neat:neat15,193 +clean:clean17,209 +clobber:clobber19,232 +test:test22,266 + +my_docs/22/xalt_monthly_mtg_2022_03_17/code/bad_memory/ex1/try.c,15 +int main(2,19 + +my_docs/22/xalt_monthly_mtg_2022_03_17/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 all:all7,128 clean:clean9,143 clobber:clobber13,226 -my_docs/18/isc18/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 +my_docs/22/xalt_monthly_mtg_2022_04_21/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/18/isc18/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 +my_docs/22/xalt_monthly_mtg_2022_05_19/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/22/xalt_monthly_mtg_2022_02_17/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/22/star_mtg_22/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/22/xalt_monthly_mtg_2022_01_20/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/22/xalt_monthly_mtg_2022_06_16/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/22/eb_user_22/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 + +my_docs/README.vm.txt,124 + mysql> grant all on xalt.* to 'xaltuser'@'@15,517 + mysql> quit;16,575 + $ ./build_hello_executables.sh sh33,887 -my_docs/18/isc18/beamerthemeTACC.sty,182 +my_docs/beamer/beamerthemeTACC.sty,182 \newcommand{\event}\event20,317 \def\TACC@eventname{\TACC@eventname22,359 \newcommand{\sectionframe}\sectionframe25,403 \newcommand{\subsectionframe}\subsectionframe26,472 -my_docs/18/isc18/beamercolorthemeTACC.sty,556 +my_docs/beamer/beamercolorthemeTACC16.sty,120 +\definecolor{inecolor13,281 +\definecolor{inecolor14,319 +\definecolor{inecolor15,361 +\definecolor{inecolor16,404 + +my_docs/beamer/beamercolorthemeTACC.sty,556 \definecolor{inecolor22,886 \definecolor{inecolor23,952 \definecolor{inecolor24,1017 @@ -8565,7 +3414,13 @@ my_docs/18/isc18/beamercolorthemeTACC.sty,556 \definecolor{inecolor47,2146 \definecolor{inecolor48,2222 -my_docs/18/llnl18/themes/beamerthemeTACC16-169.sty,446 +my_docs/beamer/themes/beamercolorthemeTACC16.sty,120 +\definecolor{inecolor13,281 +\definecolor{inecolor14,319 +\definecolor{inecolor15,361 +\definecolor{inecolor17,442 + +my_docs/beamer/themes/beamerthemeTACC16-169.sty,446 \def\beamer@calltheme#1#2#3{\beamer@calltheme13,234 \def\beamer@themelist{\beamer@themelist14,266 \def\usefolder#1{\usefolder18,414 @@ -8576,7 +3431,13 @@ my_docs/18/llnl18/themes/beamerthemeTACC16-169.sty,446 \newcommand{\sectionframe}\sectionframe37,717 \newcommand{\subsectionframe}\subsectionframe38,786 -my_docs/18/llnl18/themes/Makefile,19989 +my_docs/beamer/themes/beamerthemeTACC16.sty,182 +\newcommand{\event}\event20,325 + \def\TACC@eventname{\TACC@eventname22,367 +\newcommand{\sectionframe}\sectionframe25,411 +\newcommand{\subsectionframe}\subsectionframe26,480 + +my_docs/beamer/themes/Makefile,19989 fileinfo 31,1382 author 32,1409 version 33,1433 @@ -9147,718 +4008,522 @@ clean-tex:clean-tex3160,107314 .PHONY:.PHONY3163,107376 clean-graphics:clean-graphics3170,107814 .PHONY:.PHONY3173,107918 -clean-backups:clean-backups3174,107940 -.PHONY:.PHONY3177,108011 -clean-auxiliary:clean-auxiliary3178,108035 -.PHONY:.PHONY3181,108098 -clean-nographics:clean-nographics3182,108123 -.PHONY:.PHONY3184,108195 -clean:clean3185,108209 -.PHONY:.PHONY3191,108321 -help:help3192,108334 -.PHONY:.PHONY3195,108355 -version:version3196,108371 -.PHONY:.PHONY3887,134631 - -my_docs/18/llnl18/themes/beamerthemeTACC16.sty,182 -\newcommand{\event}\event20,325 - \def\TACC@eventname{\TACC@eventname22,367 -\newcommand{\sectionframe}\sectionframe25,411 -\newcommand{\subsectionframe}\subsectionframe26,480 - -my_docs/18/llnl18/themes/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor17,442 - -my_docs/18/llnl18/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,128 -clean:clean9,143 -clobber:clobber13,226 - -my_docs/18/llnl18/beamerthemeTACC16.sty,186 -\newcommand{\event}\event55,1366 - \def\TACC@eventname{\TACC@eventname57,1408 -\newcommand{\sectionframe}\sectionframe60,1452 -\newcommand{\subsectionframe}\subsectionframe61,1521 - -my_docs/18/llnl18/beamercolorthemeTACC16.sty,120 -\definecolor{inecolor13,281 -\definecolor{inecolor14,319 -\definecolor{inecolor15,361 -\definecolor{inecolor16,404 - -my_docs/18/llnl18/beamerthemeTACC.sty,182 -\newcommand{\event}\event20,317 - \def\TACC@eventname{\TACC@eventname22,359 -\newcommand{\sectionframe}\sectionframe25,403 -\newcommand{\subsectionframe}\subsectionframe26,472 - -my_docs/18/llnl18/beamercolorthemeTACC.sty,556 -\definecolor{inecolor22,886 -\definecolor{inecolor23,952 -\definecolor{inecolor24,1017 -\definecolor{inecolor27,1098 -\definecolor{inecolor28,1172 -\definecolor{inecolor29,1249 -\definecolor{inecolor32,1360 -\definecolor{inecolor33,1433 -\definecolor{inecolor34,1508 -\definecolor{inecolor37,1600 -\definecolor{inecolor38,1672 -\definecolor{inecolor39,1735 -\definecolor{inecolor42,1854 -\definecolor{inecolor43,1924 -\definecolor{inecolor44,1998 -\definecolor{inecolor46,2074 -\definecolor{inecolor47,2146 -\definecolor{inecolor48,2222 - -my_docs/web/xalt.txt,54 -XALT is a collaboration between PI Mark Fahey 12,355 - -my_docs/16/isc16/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 - -my_docs/16/isc16/abs.txt,156 -Let's talk real, no-kiddin' supercomputer analytics,4,64 -individual tasks,7,268 -individual tasks, users,7,268 -We have been running XALT at TACC,25,1175 - -my_docs/16/isc16/talk.tex,314 -\newcommand{\bfnabla}\bfnabla28,1002 -\newcommand{\laplacian}\laplacian29,1050 -\newcommand{\grad}\grad30,1092 -\newcommand{\tgrad}\tgrad31,1127 -\newcommand{\dvg}\dvg32,1165 -\newcommand{\curl}\curl33,1205 -\newcommand{\lap}\lap34,1247 -\section{XALT}XALT42,1342 -\section{Conclusion}Conclusion319,9381 - -my_docs/16/isc16/abstract.txt,224 -Let’s talk real,1,0 -Let’s talk real, no-kiddin’ supercomputer analytics,1,0 -individual batch submissions,4,210 -individual batch submissions, users,4,210 -organizations concerned about meeting users’ needs;14,803 - -my_docs/16/sea16/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 - -my_docs/16/sea16/abs.txt,156 -Let's talk real, no-kiddin' supercomputer analytics,4,64 -individual tasks,7,268 -individual tasks, users,7,268 -We have been running XALT at TACC,25,1175 - -my_docs/16/sea16/talk.tex,314 -\newcommand{\bfnabla}\bfnabla28,1001 -\newcommand{\laplacian}\laplacian29,1049 -\newcommand{\grad}\grad30,1091 -\newcommand{\tgrad}\tgrad31,1126 -\newcommand{\dvg}\dvg32,1164 -\newcommand{\curl}\curl33,1204 -\newcommand{\lap}\lap34,1246 -\section{XALT}XALT42,1341 -\section{Conclusion}Conclusion304,9171 - -my_docs/16/sea16/abstract.txt,224 -Let’s talk real,1,0 -Let’s talk real, no-kiddin’ supercomputer analytics,1,0 -individual batch submissions,4,210 -individual batch submissions, users,4,210 -organizations concerned about meeting users’ needs;14,803 - -my_docs/16/sc16/Makefile,102 -TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 +clean-backups:clean-backups3174,107940 +.PHONY:.PHONY3177,108011 +clean-auxiliary:clean-auxiliary3178,108035 +.PHONY:.PHONY3181,108098 +clean-nographics:clean-nographics3182,108123 +.PHONY:.PHONY3184,108195 +clean:clean3185,108209 +.PHONY:.PHONY3191,108321 +help:help3192,108334 +.PHONY:.PHONY3195,108355 +version:version3196,108371 +.PHONY:.PHONY3887,134631 -my_docs/16/sc16/talk.tex,244 -\newcommand{\bfnabla}\bfnabla28,988 -\newcommand{\laplacian}\laplacian29,1036 -\newcommand{\grad}\grad30,1078 -\newcommand{\tgrad}\tgrad31,1113 -\newcommand{\dvg}\dvg32,1151 -\newcommand{\curl}\curl33,1191 -\newcommand{\lap}\lap34,1233 +my_docs/beamer/beamerthemeTACC16.sty,186 +\newcommand{\event}\event55,1366 + \def\TACC@eventname{\TACC@eventname57,1408 +\newcommand{\sectionframe}\sectionframe60,1452 +\newcommand{\subsectionframe}\subsectionframe61,1521 -my_docs/16/fosdem16/Makefile,102 +my_docs/23/xalt_monthly_mtg_2023_07_20/Makefile,102 TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 - -my_docs/16/fosdem16/abs.txt,156 -Let's talk real, no-kiddin' supercomputer analytics,4,64 -individual tasks,7,268 -individual tasks, users,7,268 -We have been running XALT at TACC,25,1175 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/16/fosdem16/talk.tex,313 -\newcommand{\bfnabla}\bfnabla28,979 -\newcommand{\laplacian}\laplacian29,1027 -\newcommand{\grad}\grad30,1069 -\newcommand{\tgrad}\tgrad31,1104 -\newcommand{\dvg}\dvg32,1142 -\newcommand{\curl}\curl33,1182 -\newcommand{\lap}\lap34,1224 -\section{XALT}XALT42,1319 -\section{Conclusion}Conclusion329,9922 +my_docs/23/xalt_monthly_mtg_2023_03_16/conf_report.txt,42 + 1: PKGS 128,5362 + 2: PKGS 129,5416 -my_docs/16/fosdem16/abstract.txt,224 -Let’s talk real,1,0 -Let’s talk real, no-kiddin’ supercomputer analytics,1,0 -individual batch submissions,4,210 -individual batch submissions, users,4,210 -organizations concerned about meeting users’ needs;14,803 +my_docs/23/xalt_monthly_mtg_2023_03_16/example_run.txt,225 + build and run fakePrgm program 2,61 + Test python2 package recording 35,1887 + -> XALT_SAMPLING 69,3291 + Test python3 path arg parsing 80,3507 + -> XALT_SAMPLING 111,4787 + Test python3 path arg parsing 136,5729 -my_docs/15/sc15/Makefile,102 +my_docs/23/xalt_monthly_mtg_2023_03_16/Makefile,102 TALKS 1,0 -TEX_SUFS 2,21 -%.pdf:%.pdf4,87 -all:all7,117 -clean:clean9,132 -clobber:clobber13,215 - -my_docs/15/sc15/talk.tex,313 -\newcommand{\bfnabla}\bfnabla28,981 -\newcommand{\laplacian}\laplacian29,1029 -\newcommand{\grad}\grad30,1071 -\newcommand{\tgrad}\tgrad31,1106 -\newcommand{\dvg}\dvg32,1144 -\newcommand{\curl}\curl33,1184 -\newcommand{\lap}\lap34,1226 -\section{XALT}XALT42,1321 -\section{Conclusion}Conclusion289,8618 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/15/isc15/Makefile,102 +my_docs/23/xalt_monthly_mtg_2023_05_18/conf_report.txt,250 + 1: SKIP 129,5382 + 2: SKIP 130,5426 + 3: PKGS 131,5481 + 4: PKGS 132,5535 + 5: SKIP 133,5577 + 6: KEEP 134,5618 + 7: JUMP_1 135,5658 + 8: CONTINUE 136,5693 + 8: CONTINUE => .*\/fakePrgm;--opt=opt136,5693 + 11: CONTINUE 140,5851 + +my_docs/23/xalt_monthly_mtg_2023_05_18/example_run.txt,133 + Test python3 path arg parsing -m json.tool tool4,123 + -> XALT_SAMPLING 36,1411 + Test python3 path arg parsing -c c63,2352 + +my_docs/23/xalt_monthly_mtg_2023_05_18/Makefile,102 TALKS 1,0 -TEX_SUFS 2,25 -%.pdf:%.pdf4,91 -all:all7,121 -clean:clean9,136 -clobber:clobber13,219 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/15/xsede15/Makefile,102 +my_docs/23/xalt_monthly_mtg_2023_06_15/Makefile,102 TALKS 1,0 TEX_SUFS 2,29 %.pdf:%.pdf4,95 -all:all7,125 -clean:clean9,140 -clobber:clobber13,223 - -my_docs/README.vm.txt,124 - mysql> grant all on xalt.* to 'xaltuser'@'@15,517 - mysql> quit;16,575 - $ ./build_hello_executables.sh sh33,887 - -rt/file_prefix/file_prefix.desc,16 -test_name 3,18 - -rt/dup_runuuid/dup_runuuid.desc,16 -test_name 3,18 - -rt/common_funcs.sh,17 -initialize(4,36 - -rt/syslog/bin/logger,10 -TAG=5,42 - -rt/syslog/syslog.desc,16 -test_name 3,18 - -rt/syslog/pkg_tracking.py,15 -def main(4,89 - -rt/my_hostname_parser/keep.c,21 -int return_keep(1,0 - -rt/my_hostname_parser/host.c,68 -int my_hostname_parser(4,48 -void my_hostname_parser_cleanup(9,122 - -rt/my_hostname_parser/my_hostname_parser.desc,16 -test_name 3,18 - -rt/end2end/omp_pi.f90,38 - subroutine reportresults(88,2549 - -rt/end2end/pkg_tracking.py,15 -def main(4,89 - -rt/end2end/try.C,14 -int main(1,0 - -rt/end2end/empty_regexp.c,33 -int regcomp(2,19 -int main(3,36 - -rt/end2end/flto.h,20 -#define FLTO_H2,15 - -rt/end2end/fpe.c,15 -int main(3,36 - -rt/end2end/bus.c,15 -int main(4,61 - -rt/end2end/ill.c,14 -int main(1,0 - -rt/end2end/hybrid_daxpy.f90,24 -subroutine suba(18,396 - -rt/end2end/b.c,12 -int b(2,19 - -rt/end2end/end2end.desc,16 -test_name 3,18 - -rt/end2end/c.c,12 -int c(2,19 - -rt/end2end/bar.c,15 -void bar(2,18 - -rt/end2end/get_XALT_env.c,34 -#define DFLT 3,39 -int main(4,67 - -rt/end2end/foo.c,15 -void foo(2,18 - -rt/end2end/segv.c,15 -int main(2,19 - -rt/end2end/try_uuid.c,47 -void rtm_build_uuid_str(4,43 -int main(10,177 - -rt/end2end/main.c,16 -void main(2,18 - -rt/end2end/a.c,12 -int a(2,19 - -rt/end2end/abc.c,15 -int main(5,46 - -rt/mpi_hello_world.c,15 -int main(3,36 - -rt/xalt_epoch.py,18 -def main(28,1142 - -Lessons_learned.txt,80 -* The linker can be called ld,11,385 -* When building Intel PIN library,13,448 - -ACKNOWLEDGMENTS.txt,0 - -base64.txt,0 - -.version,0 - -README.old,0 - -QUICK_START.txt,0 - -install.sh,0 - -rt/end2end/run.example_3.json,0 - -rt/end2end/link.example.json,0 - -rt/end2end/run.foobar_filtered.json,0 - -rt/end2end/run.example.json,0 - -rt/end2end/run.example_2.json,0 - -rt/syslog/simpleConfig.py,0 - -rt/dup_runuuid/simpleConfig.py,0 - -my_docs/15/xsede15/xalt_xsede15.tex,0 - -my_docs/15/isc15/xalt_isc.tex,0 - -my_docs/15/sc15/sc15.org,0 - -my_docs/ideas/xalt.org,0 - -my_docs/16/fosdem16/xalt.org,0 - -my_docs/16/sc16/sc16.abs.txt,0 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/16/sea16/xalt.org,0 +my_docs/23/xalt_monthly_mtg_2023_08_17/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/16/sea16/new_things.org,0 +my_docs/23/xalt_monthly_mtg_2023_02_23/try.py,17 +def main(21,665 -my_docs/16/isc16/xalt.org,0 +my_docs/19/isc19/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,120 +clean:clean9,135 +clobber:clobber13,218 -my_docs/16/isc16/new_things.org,0 +my_docs/19/sc19/mpi3.txt,93 +mysql> select t3.function_name,function_name1,0 +mysql> select t3.function_name, COUNT(1,0 -my_docs/database.txt,0 +my_docs/19/sc19/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,120 +clean:clean9,135 +clobber:clobber13,218 -my_docs/18/llnl18/beamerfontthemeTACC16.sty,0 +my_docs/19/eb_users/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,120 +clean:clean9,135 +clobber:clobber13,218 -my_docs/18/llnl18/talk.tex,0 +my_docs/Lmod_installation,77 + $ CC=10,297 + CURRENT_MODULES=38,1181 + LMOD_PKG=47,1417 -my_docs/18/llnl18/beamerfontthemeTACC.sty,0 +my_docs/15/xsede15/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,29 +%.pdf:%.pdf4,95 +all:all7,125 +clean:clean9,140 +clobber:clobber13,223 -my_docs/18/llnl18/beamerinnerthemeTACC.sty,0 +my_docs/15/isc15/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,25 +%.pdf:%.pdf4,91 +all:all7,121 +clean:clean9,136 +clobber:clobber13,219 -my_docs/18/llnl18/beamerinnerthemeTACC16.sty,0 +my_docs/15/sc15/talk.tex,313 +\newcommand{\bfnabla}\bfnabla28,981 +\newcommand{\laplacian}\laplacian29,1029 +\newcommand{\grad}\grad30,1071 +\newcommand{\tgrad}\tgrad31,1106 +\newcommand{\dvg}\dvg32,1144 +\newcommand{\curl}\curl33,1184 +\newcommand{\lap}\lap34,1226 +\section{XALT}XALT42,1321 +\section{Conclusion}Conclusion289,8618 -my_docs/18/llnl18/beamerouterthemeTACC16.sty,0 +my_docs/15/sc15/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,117 +clean:clean9,132 +clobber:clobber13,215 -my_docs/18/llnl18/beamerouterthemeTACC.sty,0 +my_docs/18/sc18/nvidia_booth_talk/bio.txt,41 +computations. Since 4,189 +Center 5,260 -my_docs/18/llnl18/themes/beamerfontthemeTACC16.sty,0 +my_docs/18/sc18/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/18/llnl18/themes/beamerinnerthemeTACC16.sty,0 +my_docs/18/isc18/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/18/llnl18/themes/beamerouterthemeTACC16.sty,0 +my_docs/18/llnl18/Makefile,102 +TALKS 1,0 +TEX_SUFS 2,21 +%.pdf:%.pdf4,87 +all:all7,128 +clean:clean9,143 +clobber:clobber13,226 -my_docs/18/llnl18/themes/beamerouterthemeTACC16-169.sty,0 +xalt.spec,797 +package use by R,90,2577 + --prefix=prefix104,2837 + %{!?with_mysql:--with-MySQL=MySQL105,2861 + %{!?with_mysql:--with-MySQL=no} %{?with_mysql:--with-MySQL=MySQL105,2861 + %{!?with_static:--with-staticLibs=staticLibs106,2929 + %{!?with_static:--with-staticLibs=no} %{?with_static:--with-staticLibs=staticLibs106,2929 + %{!?with_gpu:--with-trackGPU=trackGPU107,3009 + %{!?with_gpu:--with-trackGPU=no} %{?with_gpu:--with-trackGPU=trackGPU107,3009 + %{!?with_mpi:--with-trackMPI=trackMPI108,3079 + %{!?with_mpi:--with-trackMPI=no} %{?with_mpi:--with-trackMPI=trackMPI108,3079 + --with-config=config109,3149 + --with-syshostConfig=syshostConfig110,3178 + --with-transmission=transmission111,3215 +%{__make} install DESTDIR=114,3264 +local base 127,3640 +prepend_path(132,3814 -my_docs/18/llnl18/themes/license.tex,0 +libelf_trick/xalt2.c,187 +static int errfd 3,39 +void myinit(4,80 +void myfini(9,198 +__attribute__((section(".init_array"))) __typeof__(22,461 +__attribute__((section(".fini_array"))) __typeof__(23,538 -my_docs/18/isc18/beamerfontthemeTACC16.sty,0 +libelf_trick/xalt.c,154 +void myinit(2,19 +void myfini(6,99 +__attribute__((section(".init_array"))) __typeof__(11,158 +__attribute__((section(".fini_array"))) __typeof__(12,235 -my_docs/18/isc18/talk.tex,0 +libelf_trick/Makefile,237 +CC 1,0 +TARGETS 2,15 +all:all4,54 +try:try6,71 +libxalt.so:libxalt.so9,103 +libxalt2.so:libxalt2.so12,157 +xalt.o:xalt.o15,213 +xalt2.o:xalt2.o18,261 +neat:neat21,311 +clean:clean23,327 +clobber:clobber25,350 +test:test28,384 -my_docs/18/isc18/beamerfontthemeTACC.sty,0 +libelf_trick/try.c,15 +int main(2,19 -my_docs/18/isc18/beamerinnerthemeTACC.sty,0 +g++.sh,29 +export LD_LIBRARY_PATH=3,13 -my_docs/18/isc18/beamerinnerthemeTACC16.sty,0 +base64.txt,0 -my_docs/18/isc18/beamerouterthemeTACC16.sty,0 +install.sh,0 -my_docs/18/isc18/beamerouterthemeTACC.sty,0 +my_docs/18/llnl18/talk.tex,0 my_docs/18/isc18/talk_bof.org,0 -my_docs/18/isc18/themes/beamerfontthemeTACC16.sty,0 - -my_docs/18/isc18/themes/beamerinnerthemeTACC16.sty,0 +my_docs/18/isc18/talk.tex,0 -my_docs/18/isc18/themes/beamerouterthemeTACC16.sty,0 +my_docs/18/sc18/talk.tex,0 -my_docs/18/isc18/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/18/sc18/xalt_booth_abs.txt,0 -my_docs/18/isc18/themes/license.tex,0 +my_docs/15/sc15/sc15.org,0 -my_docs/18/sc18/beamerfontthemeTACC16.sty,0 +my_docs/15/isc15/xalt_isc.tex,0 -my_docs/18/sc18/talk.tex,0 +my_docs/15/xsede15/xalt_xsede15.tex,0 -my_docs/18/sc18/beamerfontthemeTACC.sty,0 +my_docs/19/eb_users/talk.tex,0 -my_docs/18/sc18/beamerinnerthemeTACC.sty,0 +my_docs/19/sc19/talk.tex,0 -my_docs/18/sc18/xalt_booth_abs.txt,0 +my_docs/19/sc19/xalt_booth_abs.txt,0 -my_docs/18/sc18/beamerinnerthemeTACC16.sty,0 +my_docs/19/sc19/booth_talk.org,0 -my_docs/18/sc18/beamerouterthemeTACC16.sty,0 +my_docs/19/isc19/talk.tex,0 -my_docs/18/sc18/beamerouterthemeTACC.sty,0 +my_docs/19/isc19/xalt_bof.org,0 -my_docs/18/sc18/themes/beamerfontthemeTACC16.sty,0 +my_docs/23/xalt_monthly_mtg_2023_02_23/presentation.tex,0 -my_docs/18/sc18/themes/beamerinnerthemeTACC16.sty,0 +my_docs/23/xalt_monthly_mtg_2023_02_23/Notes_02_23.org,0 -my_docs/18/sc18/themes/beamerouterthemeTACC16.sty,0 +my_docs/23/xalt_monthly_mtg_2023_08_17/presentation.tex,0 -my_docs/18/sc18/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/23/xalt_monthly_mtg_2023_08_17/Notes_08_17.org,0 -my_docs/18/sc18/themes/license.tex,0 +my_docs/23/xalt_monthly_mtg_2023_06_15/Notes_06_15.org,0 -my_docs/19/eb_users/beamerfontthemeTACC16.sty,0 +my_docs/23/xalt_monthly_mtg_2023_06_15/presentation.tex,0 -my_docs/19/eb_users/talk.tex,0 +my_docs/23/xalt_monthly_mtg_2023_05_18/presentation.tex,0 -my_docs/19/eb_users/beamerfontthemeTACC.sty,0 +my_docs/23/xalt_monthly_mtg_2023_05_18/xalt.s,0 -my_docs/19/eb_users/beamerinnerthemeTACC.sty,0 +my_docs/23/xalt_monthly_mtg_2023_03_16/Notes_03_16.org,0 -my_docs/19/eb_users/beamerinnerthemeTACC16.sty,0 +my_docs/23/xalt_monthly_mtg_2023_03_16/presentation.tex,0 -my_docs/19/eb_users/beamerouterthemeTACC16.sty,0 +my_docs/23/xalt_monthly_mtg_2023_07_20/Notes_07_20.org,0 -my_docs/19/eb_users/beamerouterthemeTACC.sty,0 +my_docs/23/xalt_monthly_mtg_2023_07_20/presentation.tex,0 -my_docs/19/eb_users/themes/beamerfontthemeTACC16.sty,0 +my_docs/beamer/beamerfontthemeTACC.sty,0 -my_docs/19/eb_users/themes/beamerinnerthemeTACC16.sty,0 +my_docs/beamer/beamerinnerthemeTACC.sty,0 -my_docs/19/eb_users/themes/beamerouterthemeTACC16.sty,0 +my_docs/beamer/themes/beamerouterthemeTACC16-169.sty,0 -my_docs/19/eb_users/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/beamer/themes/beamerfontthemeTACC16.sty,0 -my_docs/19/eb_users/themes/license.tex,0 +my_docs/beamer/themes/beamerinnerthemeTACC16.sty,0 -my_docs/19/sc19/beamerfontthemeTACC16.sty,0 +my_docs/beamer/themes/license.tex,0 -my_docs/19/sc19/talk.tex,0 +my_docs/beamer/themes/beamerouterthemeTACC16.sty,0 -my_docs/19/sc19/beamerfontthemeTACC.sty,0 +my_docs/beamer/beamerfontthemeTACC16.sty,0 -my_docs/19/sc19/beamerinnerthemeTACC.sty,0 +my_docs/beamer/beamerinnerthemeTACC16.sty,0 -my_docs/19/sc19/xalt_booth_abs.txt,0 +my_docs/beamer/beamerouterthemeTACC.sty,0 -my_docs/19/sc19/beamerinnerthemeTACC16.sty,0 +my_docs/beamer/beamerouterthemeTACC16.sty,0 -my_docs/19/sc19/beamerouterthemeTACC16.sty,0 +my_docs/22/eb_user_22/Notes_01_27.org,0 -my_docs/19/sc19/beamerouterthemeTACC.sty,0 +my_docs/22/eb_user_22/presentation.tex,0 -my_docs/19/sc19/booth_talk.org,0 +my_docs/22/xalt_monthly_mtg_2022_06_16/Notes_06_16.org,0 -my_docs/19/sc19/themes/beamerfontthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_06_16/presentation.tex,0 -my_docs/19/sc19/themes/beamerinnerthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_01_20/Notes_01_20.org,0 -my_docs/19/sc19/themes/beamerouterthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_01_20/presentation.tex,0 -my_docs/19/sc19/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/22/star_mtg_22/presentation.tex,0 -my_docs/19/sc19/themes/license.tex,0 +my_docs/22/sc_22_booth_talk/presentation.tex,0 -my_docs/19/isc19/xalt_bof.org,0 +my_docs/22/xalt_monthly_mtg_2022_02_17/Notes_02_17.org,0 -my_docs/19/isc19/beamerfontthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_02_17/presentation.tex,0 -my_docs/19/isc19/talk.tex,0 +my_docs/22/xalt_monthly_mtg_2022_05_19/presentation.tex,0 -my_docs/19/isc19/beamerfontthemeTACC.sty,0 +my_docs/22/xalt_monthly_mtg_2022_05_19/Notes_05_19.org,0 -my_docs/19/isc19/beamerinnerthemeTACC.sty,0 +my_docs/22/xalt_monthly_mtg_2022_04_21/presentation.tex,0 -my_docs/19/isc19/beamerinnerthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex1/try.f90,0 -my_docs/19/isc19/beamerouterthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex3/try.f90,0 -my_docs/19/isc19/beamerouterthemeTACC.sty,0 +my_docs/22/xalt_monthly_mtg_2022_03_17/code/random/ex2/try.f90,0 -my_docs/19/isc19/themes/beamerfontthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_03_17/presentation.tex,0 -my_docs/19/isc19/themes/beamerinnerthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_03_17/Notes_03_17.org,0 -my_docs/19/isc19/themes/beamerouterthemeTACC16.sty,0 +my_docs/22/xalt_monthly_mtg_2022_12_15/Notes_12_15.org,0 -my_docs/19/isc19/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/22/xalt_monthly_mtg_2022_12_15/presentation.tex,0 -my_docs/19/isc19/themes/license.tex,0 +my_docs/20/hpckp20/talk.tex,0 -my_docs/20/eb_user_20/beamerfontthemeTACC16.sty,0 +my_docs/20/hpckp20/ideas.org,0 my_docs/20/eb_user_20/talk.tex,0 -my_docs/20/eb_user_20/beamerfontthemeTACC.sty,0 - -my_docs/20/eb_user_20/beamerinnerthemeTACC.sty,0 - my_docs/20/eb_user_20/xalt_booth_abs.txt,0 -my_docs/20/eb_user_20/beamerinnerthemeTACC16.sty,0 - -my_docs/20/eb_user_20/beamerouterthemeTACC16.sty,0 - -my_docs/20/eb_user_20/beamerouterthemeTACC.sty,0 - my_docs/20/eb_user_20/booth_talk.org,0 -my_docs/20/eb_user_20/themes/beamerfontthemeTACC16.sty,0 - -my_docs/20/eb_user_20/themes/beamerinnerthemeTACC16.sty,0 - -my_docs/20/eb_user_20/themes/beamerouterthemeTACC16.sty,0 +my_docs/database.txt,0 -my_docs/20/eb_user_20/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/16/sea16/xalt.org,0 -my_docs/20/eb_user_20/themes/license.tex,0 +my_docs/16/sea16/new_things.org,0 -my_docs/20/hpckp20/beamerfontthemeTACC16.sty,0 +my_docs/16/fosdem16/xalt.org,0 -my_docs/20/hpckp20/ideas.org,0 +my_docs/16/isc16/xalt.org,0 -my_docs/20/hpckp20/talk.tex,0 +my_docs/16/isc16/new_things.org,0 -my_docs/20/hpckp20/beamerfontthemeTACC.sty,0 +my_docs/16/sc16/sc16.abs.txt,0 -my_docs/20/hpckp20/beamerinnerthemeTACC.sty,0 +my_docs/21/xalt_monthly_mtg_2021_11_11/presentation.tex,0 -my_docs/20/hpckp20/beamerinnerthemeTACC16.sty,0 +my_docs/21/xalt_monthly_mtg_2021_11_11/Notes_2021_10_14.org,0 -my_docs/20/hpckp20/beamerouterthemeTACC16.sty,0 +my_docs/21/xalt_monthly_mtg_2021_09_09/presentation.tex,0 -my_docs/20/hpckp20/beamerouterthemeTACC.sty,0 +my_docs/21/xalt_monthly_mtg_2021_10_14/presentation.tex,0 -my_docs/20/hpckp20/themes/beamerfontthemeTACC16.sty,0 +my_docs/21/xalt_monthly_mtg_2021_10_14/Notes_2021_10_14.org,0 -my_docs/20/hpckp20/themes/beamerinnerthemeTACC16.sty,0 +my_docs/21/fosdem21/ideas/ideas.org,0 -my_docs/20/hpckp20/themes/beamerouterthemeTACC16.sty,0 +my_docs/21/xalt_monthly_mtg_2021_12_16/Notes_12_16.org,0 -my_docs/20/hpckp20/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/21/xalt_monthly_mtg_2021_12_16/presentation.tex,0 -my_docs/20/hpckp20/themes/license.tex,0 +my_docs/21/eb_user_21/talk.tex,0 -my_docs/21/fosdem21/ideas/ideas.org,0 +my_docs/21/eb_user_21/ideas.org,0 -my_docs/21/eb_user_21/beamerfontthemeTACC16.sty,0 +my_docs/ideas/xalt.org,0 -my_docs/21/eb_user_21/ideas.org,0 +my_docs/17/isc17/bof.org,0 -my_docs/21/eb_user_21/talk.tex,0 +my_docs/17/sc17/xalt_booth_abs.txt,0 -my_docs/21/eb_user_21/beamerfontthemeTACC.sty,0 +my_docs/17/sc17/combined_bof_abstract.txt,0 -my_docs/21/eb_user_21/beamerinnerthemeTACC.sty,0 +my_docs/17/hpckp_17/HPCKP_17_Lmod_XALT.txt,0 -my_docs/21/eb_user_21/beamerinnerthemeTACC16.sty,0 +my_docs/17/big_data/json/run.stampede2.2017_06_29_11_48_33.aaa.acc1af54-6d3c-4ada-8cac-4c8f6aad8bb5.json,0 -my_docs/21/eb_user_21/beamerouterthemeTACC16.sty,0 +my_docs/17/big_data/json/link.stampede2.2017_06_29_11_41_47.b6e67891-9362-4ccd-8476-a08b9bd9898b.json,0 -my_docs/21/eb_user_21/beamerouterthemeTACC.sty,0 +my_docs/17/big_data/json/run.stampede2.2017_06_29_11_48_33.zzz.acc1af54-6d3c-4ada-8cac-4c8f6aad8bb5.json,0 -my_docs/21/eb_user_21/themes/beamerfontthemeTACC16.sty,0 +my_docs/17/big_data/talk.tex,0 -my_docs/21/eb_user_21/themes/beamerinnerthemeTACC16.sty,0 +my_docs/17/TACC_sysadmin_17/talk.tex,0 -my_docs/21/eb_user_21/themes/beamerouterthemeTACC16.sty,0 +my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16-169.sty,0 -my_docs/21/eb_user_21/themes/beamerouterthemeTACC16-169.sty,0 +my_docs/17/TACC_sysadmin_17/themes/beamerfontthemeTACC16.sty,0 -my_docs/21/eb_user_21/themes/license.tex,0 +my_docs/17/TACC_sysadmin_17/themes/beamerinnerthemeTACC16.sty,0 -my_docs/17/hpckp_17/HPCKP_17_Lmod_XALT.txt,0 +my_docs/17/TACC_sysadmin_17/themes/license.tex,0 -my_docs/17/isc17/bof.org,0 +my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16.sty,0 -my_docs/17/big_data/beamerfontthemeTACC16.sty,0 +proj_mgmt/conf_py_update_patternA.lua,0 -my_docs/17/big_data/talk.tex,0 +proj_mgmt/xalt_spec_patternA.lua,0 -my_docs/17/big_data/beamerfontthemeTACC.sty,0 +.version,0 -my_docs/17/big_data/beamerinnerthemeTACC.sty,0 +docs/source/090_testing_xalt.rst,0 -my_docs/17/big_data/beamerinnerthemeTACC16.sty,0 +docs/source/070_loading_json_by_file.rst,0 -my_docs/17/big_data/beamerouterthemeTACC16.sty,0 +docs/source/110_db.rst,0 -my_docs/17/big_data/beamerouterthemeTACC.sty,0 +docs/source/xalt.org,0 -my_docs/17/big_data/json/link.stampede2.2017_06_29_11_41_47.b6e67891-9362-4ccd-8476-a08b9bd9898b.json,0 +docs/source/conf.py,0 -my_docs/17/big_data/json/run.stampede2.2017_06_29_11_48_33.zzz.acc1af54-6d3c-4ada-8cac-4c8f6aad8bb5.json,0 +docs/source/095_xalt_env_vars.rst,0 -my_docs/17/big_data/json/run.stampede2.2017_06_29_11_48_33.aaa.acc1af54-6d3c-4ada-8cac-4c8f6aad8bb5.json,0 +rt/end2end/run.example_2.json,0 -my_docs/17/sc17/xalt_booth_abs.txt,0 +rt/end2end/run.foobar_filtered.json,0 -my_docs/17/sc17/combined_bof_abstract.txt,0 +rt/end2end/link.example.json,0 -my_docs/17/TACC_sysadmin_17/talk.tex,0 +rt/end2end/run.example.json,0 -my_docs/17/TACC_sysadmin_17/themes/beamerfontthemeTACC16.sty,0 +rt/end2end/data/run.json,0 -my_docs/17/TACC_sysadmin_17/themes/beamerinnerthemeTACC16.sty,0 +rt/end2end/data/file.txt,0 -my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16.sty,0 +rt/end2end/run.example_3.json,0 -my_docs/17/TACC_sysadmin_17/themes/beamerouterthemeTACC16-169.sty,0 +rt/dup_runuuid/simpleConfig.py,0 -my_docs/17/TACC_sysadmin_17/themes/license.tex,0 +rt/syslog/simpleConfig.py,0 Themis.py,0 README.md,0 -contrib/TACC/config/hostname.tacc.txt,0 - -contrib/TACC/config/ignore.ls5.txt,0 +.readthedocs.yml,0 -contrib/TACC/config/ignore.tacc.txt,0 +ACKNOWLEDGMENTS.txt,0 -contrib/TACC/config/hostname.ls5.txt,0 +py_src/xalt_rmap_lmap.in.py,0 -contrib/queries/library_usage.py,0 +py_src/xalt_global.py,0 -contrib/queries/software_lastusage.py,0 +QUICK_START.txt,0 -contrib/queries/export_db_to_file.py,0 +mapping.example.json,0 -contrib/queries/compiler_usage.py,0 +src/tmpl/xalt_config.py,0 -contrib/queries/executable_usage.py,0 +src/public_domain.txt,0 -contrib/xalt_modulefile,0 +Config/UGENT_config.py,0 -contrib/getent/libc.py,0 +Config/rtm_config.py,0 -contrib/supporting_clang/ld.sh,0 +Config/TACC_config.py,0 contrib/clear_stack_execute_bit/exam.f90,0 -contrib/update_object_module_name.py,0 - -proj_mgmt/xalt_spec_patternA.lua,0 - -proj_mgmt/conf_py_update_patternA.lua,0 - -Config/rtm_config.py,0 - -Config/UGENT_config.py,0 +contrib/queries/compiler_usage.py,0 -Config/TACC_config.py,0 +contrib/queries/library_usage.py,0 -py_src/xalt_rmap_lmap.in.py,0 +contrib/queries/export_db_to_file.py,0 -py_src/xalt_global.py,0 +contrib/queries/software_lastusage.py,0 -mapping.example.json,0 +contrib/queries/executable_usage.py,0 -src/tmpl/xalt_config.py,0 +contrib/xalt_modulefile,0 -src/public_domain.txt,0 +contrib/supporting_clang/ld.sh,0 -docs/source/095_xalt_env_vars.rst,0 +contrib/getent/libc.py,0 -docs/source/090_testing_xalt.rst,0 +contrib/update_object_module_name.py,0 -docs/source/conf.py,0 +contrib/TACC/config/hostname.ls5.txt,0 -docs/source/070_loading_json_by_file.rst,0 +contrib/TACC/config/ignore.ls5.txt,0 -docs/source/xalt.org,0 +contrib/TACC/config/hostname.tacc.txt,0 -docs/source/110_db.rst,0 +contrib/TACC/config/ignore.tacc.txt,0 diff --git a/aclocal.m4 b/aclocal.m4 index 82f6d58f..69d7458c 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -91,6 +91,7 @@ echo "XALT_MPI_TRACKING...................................." : $XALT_MPI_TRACKIN echo "XALT_GPU_TRACKING_STYLE.............................." : $XALT_GPU_TRACKING_STYLE echo "XALT_GPU_TRACKING...................................." : $XALT_GPU_TRACKING echo "XALT_SUPPORT_CURL...................................." : $XALT_SUPPORT_CURL +echo "XALT UUID V7 Support................................." : $XALT_UUID_V7 echo "XALT 32bit support..................................." : $HAVE_32BIT echo "XALT tmpdir.........................................." : $XALT_TMPDIR echo "XALT Using DCGM......................................" : $HAVE_DCGM diff --git a/build.rtm b/build.rtm index dec55621..fab937c5 100755 --- a/build.rtm +++ b/build.rtm @@ -71,7 +71,7 @@ SETUP_CMD= echo SYSHOST: $SYSHOST case $SYSHOST in - vato | rios | jedrik | lmod-test | xalt-lmod) + vato | rios | jedrik | lmod-test | xalt-lmod | bt | bt2) echo "Building on $SYSHOST using rios rules" SUDO="sudo" base="/opt/apps" @@ -112,7 +112,7 @@ case $SYSHOST in MAKE_OPTS="" ;; - stampede2 | stampede3) + stampede3 | vista) echo "Building $SYSHOST" base="$HOME/l/pkg" ETC_DIR="/tmp/moduleData" @@ -145,24 +145,6 @@ case $SYSHOST in SETUP_CMD="module -q load -$LMOD_FAMILY_MPI -$LMOD_FAMILY_COMPILER -xalt cuda" ;; - longhorn) - echo "Building $SYSHOST" - base="$HOME/l/pkg" - EXTRA="" - if [ "$USER" = swtools ]; then - EXTRA="--with-xaltFilePrefix=/scratch/projects/XALT" - fi - ETC_DIR="/tmp/moduleData" - SYSHOST_CONF="nth_name:2" - CONFIG="../Config/TACC_config.py" - TRANSMISSION="file" - TRACK_GPU="nvml" - MYSQL="no" - SETUP_CMD="module -q load -$LMOD_FAMILY_MPI -$LMOD_FAMILY_COMPILER -xalt cuda" - CONF_OPTS='CPPFLAGS=-I$TACC_CUDA_INC $EXTRA' - MAKE_OPTS='EXTRA_FLAGS=-I$TACC_CUDA_INC' - ;; - ls6) echo "Building ls6" base="$HOME/l/pkg" diff --git a/cli_tools/xalt_find_records.py b/cli_tools/xalt_find_records.py index d511642a..58fda706 100644 --- a/cli_tools/xalt_find_records.py +++ b/cli_tools/xalt_find_records.py @@ -1,42 +1,65 @@ import os import json -from datetime import datetime -from datetime import timedelta -root_directory = '/sw/workload/delta/json' -# root_directory = '/home/prakhar/code/work/ncsa' - - +from datetime import datetime, timedelta +root_directory = "" +#root_directory = '/sw/workload/delta/json' + +def check_xalt_loaded(): + """ + Check if the XALT module is loaded by checking for XALT_FILE_PREFIX env variable. + """ + root_directory = os.getenv('XALT_FILE_PREFIX') + if not root_directory: + print("Please load the XALT module before using this utility") + exit() + else: + return root_directory -# Function to process JSON files and collect data -def step1(username, root_dir=root_directory): +def step1(username, root_dir): + """ + Process JSON files and collect data. + + Args: + username (str): The username to search for in the files. + root_dir (str): The root directory to start the search from. + + Returns: + list: List of file paths matching the criteria. + """ file_list = [] - file_paths = [] - for subdir, dirs, files in os.walk(root_dir): + for subdir, _, files in os.walk(root_dir): for file in files: file_path = os.path.join(subdir, file) - if file.startswith('run.') and file.endswith('.json') and username in file and ".aaa." in file: + if file.startswith('run.') and file.endswith('.json') and username in file and (".aaa." in file or '.zzz' in file): file_list.append(file_path) return file_list -# Function to process JSON data and the file paths to incorprate datetime filters def step2(start_record_paths, start_date, end_date): + """ + Process JSON data and file paths to incorporate datetime filters. + + Args: + start_record_paths (list): List of file paths to filter. + start_date (str): The start date for filtering records. + end_date (str): The end date for filtering records. + + Returns: + list: List of filtered file paths based on date range. + """ filtered_paths = [] - if start_date != '': + if start_date: start_date = datetime.strptime(start_date, "%m/%d/%Y") - timedelta(days=1) else: start_date = None - if end_date !='': - end_date= datetime.strptime(end_date, "%m/%d/%Y") + timedelta(days=1) + if end_date: + end_date = datetime.strptime(end_date, "%m/%d/%Y") + timedelta(days=1) else: end_date = None - for rec_pth in start_record_paths: rec_name = rec_pth.split('/')[-1] - name_compnents= rec_name.split('.') - record_date = name_compnents[2][:10] - record_date = (datetime.strptime(record_date, "%Y_%m_%d")) + record_date = datetime.strptime(rec_name.split('.')[2][:10], "%Y_%m_%d") if start_date is None and end_date is None: filtered_paths.append(rec_pth) @@ -53,6 +76,16 @@ def step2(start_record_paths, start_date, end_date): return filtered_paths def step3(record_paths, xalt_run_uuid): + """ + Filter records by XALT_RUN_UUID. + + Args: + record_paths (list): List of file paths to filter. + xalt_run_uuid (str): The XALT_RUN_UUID to filter by. + + Returns: + list: List of filtered file paths based on XALT_RUN_UUID. + """ filtered_paths = [] for rec_pth in record_paths: record_name = rec_pth.split('/')[-1] @@ -62,23 +95,31 @@ def step3(record_paths, xalt_run_uuid): return filtered_paths def step4(record_data, record_paths, slurm_jid): + """ + Filter records by Slurm Job ID. + + Args: + record_data (list): List of JSON data to filter. + record_paths (list): List of file paths corresponding to the JSON data. + slurm_jid (str): The Slurm Job ID to filter by. + + Returns: + tuple: Filtered JSON data and corresponding file paths. + """ filtered_data = [] - filtered_paths = [] - if slurm_jid !='' and slurm_jid is not None: - include = False - else: - include = True - for i,record in enumerate(record_data): - - if record_data is None: + filtered_paths = [] + include = slurm_jid == '' + + for i, record in enumerate(record_data): + if record is None: continue - if include is True: + if include: filtered_paths.append(record_paths[i]) filtered_data.append(record_data[i]) continue - - userT_jid = record['userT']['job_id'] + + userT_jid = record['userT']['job_id'] envT_jid = record['envT']['SLURM_JOB_ID'] if slurm_jid in userT_jid or slurm_jid in envT_jid: @@ -88,31 +129,91 @@ def step4(record_data, record_paths, slurm_jid): return filtered_data, filtered_paths def process_files(record_paths): - pkg_data_list = [] + """ + Process JSON files and extract data. + + Args: + record_paths (list): List of file paths to process. + Returns: + list: List of extracted JSON data. + """ + pkg_data_list = [] for path in record_paths: - with (open(path, 'r') as f): + with open(path, 'r') as f: try: data = json.load(f) pkg_data_list.append(data) except json.JSONDecodeError as e: pkg_data_list.append(None) print(f"Failed to open {path}: {e}") - - return pkg_data_list + return pkg_data_list -def display_summary(filtered_data, filtered_paths): - for path in filtered_paths: - print(path) - for datum in filtered_data: - print(datum) +def find_pkg_records(run_uuid, root_dir): + """ + Find package records by XALT_RUN_UUID. + + Args: + run_uuid (str): The XALT_RUN_UUID to search for. + + Returns: + list: List of package names and paths. + """ + pkg_names = [] + pkg_paths = [] + + root_directory = root_dir + for subdir, _, files in os.walk(root_directory): + for file in files: + file_path = os.path.join(subdir, file) + if run_uuid in file_path and file_path.split('/')[-1].startswith('pkg'): + with open(file_path, 'r') as pkg_file: + try: + pkg_json = json.load(pkg_file) + pkg_names.append(pkg_json['package_name']) + pkg_paths.append(pkg_json['package_path']) + except json.JSONDecodeError as e: + pkg_names.append(None) + pkg_paths.append(None) + print(f"Error opening {file_path}: {e}") + + if not pkg_names or not pkg_paths: + return pkg_names, pkg_paths + + return sorted(set(zip(pkg_names, pkg_paths)), key=lambda x: x[-1]) - print("\n") +def display_summary(filtered_data, root_dir): + """ + Display summary of filtered data. + + Args: + filtered_data (dict): The filtered JSON data. + filtered_path (str): The file path corresponding to the filtered data. + """ + with open("./xalt_info.txt", 'w') as log_file: + log_file.write(f"XALT_RUN_UUID: {filtered_data['userT']['run_uuid']} \n") + log_file.write(f"Program ({filtered_data['userT']['exec_type']}) Executed was: {filtered_data['userT']['exec_path']} \n") + log_file.write(f"Loaded Modules: {filtered_data['envT']['LOADEDMODULES']} \n") + try: + log_file.write(f"Slurm Job Id: {filtered_data['envT']['SLURM_JOB_ID']} \n") + except KeyError: + pass # Could be LINK Job? + log_file.write(f"Job Submitted by {filtered_data['userT']['user']} using account {filtered_data['userT']['account']} \n") + + pkg_info = find_pkg_records(filtered_data['userT']['run_uuid'], root_dir) + + if pkg_info: + log_file.write("The following packages were used: \n") + for row in pkg_info: + log_file.write(f" {row[0]} : {row[1]} \n") -# Main function if __name__ == '__main__': - print("Enter your search parameters") + print("Enter your search parameters. Note: this utility searches for records in the XALT_FILE_PREFIX directory. Please override by specifying search directory \n") + + root_dir = input("Search directory (leave empty to use XALT_FILE_PREFIX): ") + if root_dir == "" or root_dir is None: + root_dir = check_xalt_loaded(); username = None while username is None: @@ -120,29 +221,33 @@ def display_summary(filtered_data, filtered_paths): start_date = input("Start date (inclusive - MM/DD/YYYY format): ") end_date = input("End date (inclusive - MM/DD/YYYY format): ") - slurm_jid = input("Enter slurm Job ID: ") + slurm_jid = input("Enter Slurm Job ID: ") xalt_run_uuid = input("Enter XALT RUN UUID: ") - # Step 1, find matching xalt_run_uuids for username start_records - start_record_paths = step1(username) + # Step 1: Find matching xalt_run_uuids for username start_records + start_record_paths = step1(username, root_dir) # Step 2: Filter records between start and end date record_paths = step2(start_record_paths, start_date, end_date) # Step 3: Filter with xalt_run_uuid - if xalt_run_uuid !='' and xalt_run_uuid is not None: + if xalt_run_uuid: record_paths = step3(record_paths, xalt_run_uuid) print("Records filtered. Extracting JSON now...") record_data = process_files(record_paths) - # Step 4: Filter with Slurm Job ID filtered_data, filtered_paths = step4(record_data, record_paths, slurm_jid) - - user_conf = input(f"There are {len(filtered_data)} records matching your parameters. Do you want to proceed with displaying these records? (yes/no)") - if user_conf != 'yes': + if not filtered_paths: + print("No matching records found") exit() - display_summary(filtered_data, filtered_paths) + print(f"There are {len(filtered_data)} records matching your parameters.") + for i in range(len(filtered_paths)): + print(i, ":", filtered_paths[i]) + + record_index = int(input("Select a record for a report to be generated: ")) + + display_summary(filtered_data[record_index], root_dir) diff --git a/configure b/configure index cb3d5835..09fb5f1c 100755 --- a/configure +++ b/configure @@ -660,6 +660,7 @@ HAVE_NVML GPU_STR HAVE_WORKING_LIBUUID HAVE_PYMOD_MYSQLDB +XALT_UUID_V7 XALT_INSTALL_OS XALT_LD_LIBRARY_PATH PATH_TO_PYTHON @@ -1705,39 +1706,6 @@ fi } # ac_fn_cxx_try_run -# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists and can be compiled using the include files in -# INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -printf %s "checking for $2... " >&6; } -if eval test \${$3+y} -then : - printf %s "(cached) " >&6 -else $as_nop - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO" -then : - eval "$3=yes" -else $as_nop - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext -fi -eval ac_res=\$$3 - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -printf "%s\n" "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_compile - # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. @@ -1784,6 +1752,39 @@ fi as_fn_set_status $ac_retval } # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +printf %s "checking for $2... " >&6; } +if eval test \${$3+y} +then : + printf %s "(cached) " >&6 +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO" +then : + eval "$3=yes" +else $as_nop + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +fi +eval ac_res=\$$3 + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile ac_configure_args_raw= for ac_arg do @@ -3383,6 +3384,9 @@ VALID_YN () esac } +ERR_MSG="" +FOUND_ERROR= + # Check whether --with-transmission was given. @@ -3503,7 +3507,8 @@ then : MODE=`echo $MODE | tr '[:upper:]' '[:lower:]'` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: MODE=$with_mode" >&5 printf "%s\n" "MODE=$with_mode" >&6; } - printf "%s\n" "#define MODE \"$with_mode\"" >>confdefs.h + +printf "%s\n" "#define MODE \"$with_mode\"" >>confdefs.h else $as_nop withval="user_default" @@ -3731,15 +3736,11 @@ then : withval=$with_syslogMsgSz; SYSLOG_MSG_SZ="$withval" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: SYSLOG_MSG_SZ=$with_syslogMsgSz" >&5 printf "%s\n" "SYSLOG_MSG_SZ=$with_syslogMsgSz" >&6; } - printf "%s\n" "#define SYSLOG_MSG_SZ \"$with_syslogMsgSz\"" >>confdefs.h - else $as_nop withval="512" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: SYSLOG_MSG_SZ=$withval" >&5 printf "%s\n" "SYSLOG_MSG_SZ=$withval" >&6; } SYSLOG_MSG_SZ="$withval" - printf "%s\n" "#define SYSLOG_MSG_SZ \"$withval\"" >>confdefs.h - fi @@ -3884,7 +3885,8 @@ then : withval=$with_tmpdir; XALT_TMPDIR="$withval" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: XALT_TMPDIR=$with-tmpdir" >&5 printf "%s\n" "XALT_TMPDIR=$with-tmpdir" >&6; } - printf "%s\n" "#define XALT_TMPDIR \"$with-tmpdir\"" >>confdefs.h + +printf "%s\n" "#define XALT_TMPDIR \"$with-tmpdir\"" >>confdefs.h else $as_nop withval="/dev/shm" @@ -3903,15 +3905,11 @@ then : withval=$with_primeNumber; XALT_PRIME_NUMBER="$withval" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: XALT_PRIME_NUMBER=$with-primeNumber" >&5 printf "%s\n" "XALT_PRIME_NUMBER=$with-primeNumber" >&6; } - printf "%s\n" "#define XALT_PRIME_NUMBER \"$with-primeNumber\"" >>confdefs.h - else $as_nop withval="997" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: XALT_PRIME_NUMBER=$withval" >&5 printf "%s\n" "XALT_PRIME_NUMBER=$withval" >&6; } XALT_PRIME_NUMBER="$withval" - printf "%s\n" "#define XALT_PRIME_NUMBER \"$withval\"" >>confdefs.h - fi @@ -3922,14 +3920,16 @@ then : withval=$with_signalHandler; XALT_SIGNAL_HANDLER="$withval" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: XALT_SIGNAL_HANDLER=$with-signalHandler" >&5 printf "%s\n" "XALT_SIGNAL_HANDLER=$with-signalHandler" >&6; } - printf "%s\n" "#define XALT_SIGNAL_HANDLER \"$with-signalHandler\"" >>confdefs.h + +printf "%s\n" "#define XALT_SIGNAL_HANDLER \"$with-signalHandler\"" >>confdefs.h else $as_nop withval="no" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: XALT_SIGNAL_HANDLER=$withval" >&5 printf "%s\n" "XALT_SIGNAL_HANDLER=$withval" >&6; } XALT_SIGNAL_HANDLER="$withval" - printf "%s\n" "#define XALT_SIGNAL_HANDLER \"$withval\"" >>confdefs.h + +printf "%s\n" "#define XALT_SIGNAL_HANDLER \"$withval\"" >>confdefs.h fi @@ -4440,9 +4440,10 @@ if test $MODE != "user_default" ; then mode=0$MODE EXEC_BITS=$(( 0111 & $mode )); if test $EXEC_BITS = 0; then + MSG="Error: MODE must have at least one executable bit set (Not MODE=$MODE)|Please try setting mode to 755 or 750 or 700 or similar." + ERR_MSG="$ERR_MSG||$MSG" echo - echo "MODE must have at least one executable bit set (Not MODE=$MODE)" - echo "Please try setting mode to 755 or 750 or 700 or similar." + echo $MSG echo rm -f makefile exit 1 @@ -4630,7 +4631,7 @@ printf "%s\n" "no" >&6; } fi -for ac_prog in python3 python2 python +for ac_prog in python3 python python2 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -4680,13 +4681,11 @@ fi test -n "$PATH_TO_PYTHON" && break done - +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: PATH_TO_PYTHON: $PATH_TO_PYTHON" >&5 +printf "%s\n" "PATH_TO_PYTHON: $PATH_TO_PYTHON" >&6; } if test "x$PATH_TO_PYTHON" = "x"; then - echo - echo "=======================================================" - echo "XALT 2 requires python3, python2 or python to run." - echo "=======================================================" - echo + MSG="Error: XALT requires python3, python2 or python to run." + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile exit 1 fi @@ -4701,7 +4700,11 @@ printf "%s\n" "#define XALT_INSTALL_OS \"$XALT_INSTALL_OS\"" >>confdefs.h if test "x${PATH_TO_MKTEMP}" = "x" ; then - as_fn_error $? "Unable to build XALT without mktemp" "$LINENO" 5 + MSG="Unable to build XALT without mktemp" + ERR_MSG="$ERR_MSG||$MSG" + FOUND_ERROR=yes + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi @@ -4716,16 +4719,57 @@ for i in file file_separate_dirs syslog logger none; do done if test found = no; then - echo - echo "=======================================================" - echo "XALT 2 does not support transmission style: $TRANSMISSION" - echo "See the xalt.readthedocs.io for supported methods" - echo "=======================================================" - echo + MSG="XALT does not support transmission style: $TRANSMISSION|See the xalt.readthedocs.io for supported methods" + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile exit 1 fi +XALT_UUID_V7=no + +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for getentropy in -lc" >&5 +printf %s "checking for getentropy in -lc... " >&6; } +if test ${ac_cv_lib_c_getentropy+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_check_lib_save_LIBS=$LIBS +LIBS="-lc $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +char getentropy (); +int +main (void) +{ +return getentropy (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO" +then : + ac_cv_lib_c_getentropy=yes +else $as_nop + ac_cv_lib_c_getentropy=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_getentropy" >&5 +printf "%s\n" "$ac_cv_lib_c_getentropy" >&6; } +if test "x$ac_cv_lib_c_getentropy" = xyes +then : + XALT_UUID_V7=yes; +printf "%s\n" "#define HAVE_FUNC_GETENTROPY 1" >>confdefs.h + +fi + + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking python module: MySQLdb" >&5 @@ -4785,9 +4829,14 @@ then : printf "%s\n" "#define HAVE_UUID_UUID_H 1" >>confdefs.h else $as_nop - as_fn_error $? "Unable to build XALT without uuid/uuid.h" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to build XALT without uuid/uuid.h" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi + if test $XALT_SUPPORT_CURL = yes ; then ac_fn_c_check_header_compile "$LINENO" "curl/curl.h" "ac_cv_header_curl_curl_h" "$ac_includes_default" if test "x$ac_cv_header_curl_curl_h" = xyes @@ -4796,10 +4845,15 @@ then : printf "%s\n" "#define HAVE_CURL_CURL_H 1" >>confdefs.h else $as_nop - as_fn_error $? "Configure with --supportCURL=no if you don't want support for curl transmission style" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Configure with --supportCURL=no if you don't want support for curl transmission style" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi fi + ac_fn_c_check_header_compile "$LINENO" "openssl/sha.h" "ac_cv_header_openssl_sha_h" "$ac_includes_default" if test "x$ac_cv_header_openssl_sha_h" = xyes then : @@ -4807,7 +4861,11 @@ then : printf "%s\n" "#define HAVE_OPENSSL_SHA_H 1" >>confdefs.h else $as_nop - as_fn_error $? "Unable to build XALT without openssl/sha.h" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to build XALT without openssl/sha.h" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi @@ -4816,7 +4874,11 @@ if test "x$ac_cv_header_gelf_h" = xyes then : else $as_nop - as_fn_error $? "Unable to build XALT without gelf.h. Please install the libelf development package" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to build XALT without gelf.h. Please install the libelf development package" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi ac_fn_c_check_header_compile "$LINENO" "syslog.h" "ac_cv_header_syslog_h" "$ac_includes_default" @@ -4824,12 +4886,15 @@ if test "x$ac_cv_header_syslog_h" = xyes then : else $as_nop - as_fn_error $? "Unable to build XALT without syslog.h. Please install the glibc headers package" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to build XALT without syslog.h. Please install the glibc headers package" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi - HAVE_WORKING_LIBUUID=no if test $ac_cv_header_uuid_uuid_h = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing uuid_generate" >&5 @@ -4896,25 +4961,18 @@ fi fi if test $HAVE_WORKING_LIBUUID = no -a ! -f /proc/sys/kernel/random/uuid; then - echo - echo "=======================================================" - echo "Unable to install XALT without uuid and" - echo "without /proc/sys/kernel/random/uuid" - echo "See the manual for details" - echo "=======================================================" + FOUND_ERROR=yes; + MSG="Unable to install XALT without uuid and without /proc/sys/kernel/random/uuid|See the manual for details" + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile - exit 1 fi if test -z "$PATH_TO_FLEX" ; then - echo - echo "=======================================================" - echo "Unable to install XALT without flex" - echo "See the xalt.readthedocs.io for details" - echo "=======================================================" + FOUND_ERROR=yes; + MSG="Unable to install XALT without flex|See the xalt.readthedocs.io for details" + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile - exit 1 fi MY_TMPDIR=`mktemp -d` @@ -4936,7 +4994,11 @@ then : printf "%s\n" "#define HAVE_DCGM_AGENT_H 1" >>confdefs.h else $as_nop - as_fn_error $? "Unable to include GPU tracking without DCGM" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without DCGM" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi if test "$STATIC_LIBS" = yes; then @@ -5000,7 +5062,11 @@ then : printf "%s\n" "#define USE_DCGM 1" >>confdefs.h HAVE_DCGM=yes else $as_nop - as_fn_error $? "Unable to include GPU tracking without DCGM" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without DCGM" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi else @@ -5064,7 +5130,11 @@ then : printf "%s\n" "#define USE_DCGM 1" >>confdefs.h HAVE_DCGM=yes else $as_nop - as_fn_error $? "Unable to include GPU tracking without DCGM" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without DCGM" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi fi @@ -5082,7 +5152,11 @@ then : printf "%s\n" "#define HAVE_NVML_H 1" >>confdefs.h else $as_nop - as_fn_error $? "Unable to include GPU tracking without NVML" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without NVML" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default" @@ -5092,7 +5166,11 @@ then : printf "%s\n" "#define HAVE_DCFCN_H 1" >>confdefs.h else $as_nop - as_fn_error $? "Unable to include GPU tracking without dlfcn.h" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without dlfcn.h" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 @@ -5159,9 +5237,14 @@ printf "%s\n" "#define USE_NVML 1" >>confdefs.h HAVE_NVML=yes else $as_nop - as_fn_error $? "Unable to find dlopen" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to find dlopen" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi + for i in ' ' .9 .8 .7 .6 .5 .4 .3 .2 .1; do GPU_STR=`$LOCATE_SO libnvidia-ml.so$i` if test "$?" -eq 0; then @@ -5211,12 +5294,15 @@ fi XALT_LD_LIBRARY_PATH=$XALT_DEFAULT_DIR/lib64 echo "VERSION=$VERSION" -if test -n "$PATH_TO_GIT" -a -d $srcdir/.git ; then +if test -n "$PATH_TO_GIT" -a -e $srcdir/.git ; then xaltV=`(cd $srcdir; $PATH_TO_GIT describe)` else xaltV="@git@" fi XALT_GIT_VERSION=$xaltV +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: XALT_GIT_VERSION=$XALT_GIT_VERSION" >&5 +printf "%s\n" "XALT_GIT_VERSION=$XALT_GIT_VERSION" >&6; } + if test "$HAVE_CXX11" = no; then echo @@ -5253,8 +5339,8 @@ if test "$MYSQLDB" = yes; then echo echo "=======================================================" echo "Unable to install XALT without the python module: MySQLdb" + echo "Install a system package (debian based linux: python3-mysqldb) " echo "To install for python3 do: pip3 install mysqlclient" - echo "To install for python2 do: pip install MySQL-python" echo "=======================================================" rm -f makefile exit 1 @@ -5356,11 +5442,14 @@ then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" else $as_nop - as_fn_error $? "Unable to build XALT without libcrypto" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to build XALT without libcrypto" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi -echo if test $XALT_SUPPORT_CURL = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing curl_easy_setopt" >&5 printf %s "checking for library containing curl_easy_setopt... " >&6; } @@ -5420,7 +5509,11 @@ then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" else $as_nop - as_fn_error $? "Unable to build XALT without libcurl" "$LINENO" 5 + FOUND_ERROR=yes; + MSG="Unable to build XALT without libcurl" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi fi @@ -5447,6 +5540,7 @@ for i in ' ' .9 .8 .7 .6 .5 .4 .3 .2 .1; do fi done + $PATH_TO_PYTHON $ac_confdir/proj_mgmt/py_build_tools/xalt_prime_check.py $XALT_PRIME_NUMBER if test "$?" != 0; then echo @@ -5477,6 +5571,7 @@ if test "$?" != 0; then exit 1 fi + $PATH_TO_PYTHON $ac_confdir/proj_mgmt/py_build_tools/build_syshost_routine.py --input $SYSHOST_CONFIG --output src/__build__/xalt_syshost.c if test "$?" != 0; then rm -f makefile @@ -5548,12 +5643,30 @@ done IFS=$ORIG_SEP if test -n "$NOT_FOUND"; then - as_fn_error $? "Unable to build XALT without SYSTEM_PATH=$SYSTEM_PATH including $NOT_FOUND" "$LINENO" 5 + FOUND_ERROR=yes + MSG="Unable to build XALT without SYSTEM_PATH=$SYSTEM_PATH including $NOT_FOUND" + ERR_MSG="$ERR_MSG||$MSG" + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $MSG" >&5 +printf "%s\n" "$as_me: $MSG" >&6;} fi -rm -rf $MY_TMPDIR +if test "$FOUND_ERROR" = yes; then + echo + echo One or more errors found: + echo + echo Error Messages: + echo "------------------------------------------------------------" + echo $ERR_MSG | tr '|' '\n' | while read item; do + echo $item + done + echo "------------------------------------------------------------" + + rm -f makefile + exit 1; +fi +rm -rf $MY_TMPDIR ac_config_files="$ac_config_files makefile:Makefile.in src/__build__/xalt_config.h:src/util/xalt_config.h.in src/makefile:src/Makefile.in src/libxalt/module.mk:src/libxalt/Module.mk.in src/linker/module.mk:src/linker/Module.mk.in src/util/module.mk:src/util/Module.mk.in" @@ -6866,6 +6979,7 @@ echo "XALT_MPI_TRACKING...................................." : $XALT_MPI_TRACKIN echo "XALT_GPU_TRACKING_STYLE.............................." : $XALT_GPU_TRACKING_STYLE echo "XALT_GPU_TRACKING...................................." : $XALT_GPU_TRACKING echo "XALT_SUPPORT_CURL...................................." : $XALT_SUPPORT_CURL +echo "XALT UUID V7 Support................................." : $XALT_UUID_V7 echo "XALT 32bit support..................................." : $HAVE_32BIT echo "XALT tmpdir.........................................." : $XALT_TMPDIR echo "XALT Using DCGM......................................" : $HAVE_DCGM diff --git a/configure.ac b/configure.ac index f9815b73..ed40d1bd 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,9 @@ VALID_YN () esac } +ERR_MSG="" +FOUND_ERROR= + AC_SUBST(TRANSMISSION) AC_ARG_WITH(transmission, AS_HELP_STRING([--with-transmission=ans],[transmission style (file,syslog,file_separate_dirs,curl) [[file]]]), @@ -100,10 +103,10 @@ AC_ARG_WITH(mode, MODE="$withval" MODE=`echo $MODE | tr '@<:@:upper:@:>@' '@<:@:lower:@:>@'` AC_MSG_RESULT([MODE=$with_mode]) - AC_DEFINE_UNQUOTED(MODE, "$with_mode")dnl + AC_DEFINE_UNQUOTED(MODE, "$with_mode",[Override executable install mode])dnl , withval="user_default" - AC_MSG_RESULT([MODE=$withval]) + AC_MSG_RESULT([MODE=$withval],[Override executable install mode]) MODE="$withval" AC_DEFINE_UNQUOTED(MODE, "$withval"))dnl @@ -240,13 +243,11 @@ AC_SUBST(SYSLOG_MSG_SZ) AC_ARG_WITH(syslogMsgSz, AS_HELP_STRING([--with-syslogMsgSz=ans],[]), SYSLOG_MSG_SZ="$withval" - AC_MSG_RESULT([SYSLOG_MSG_SZ=$with_syslogMsgSz]) - AC_DEFINE_UNQUOTED(SYSLOG_MSG_SZ, "$with_syslogMsgSz")dnl + AC_MSG_RESULT([SYSLOG_MSG_SZ=$with_syslogMsgSz])dnl , withval="512" AC_MSG_RESULT([SYSLOG_MSG_SZ=$withval]) - SYSLOG_MSG_SZ="$withval" - AC_DEFINE_UNQUOTED(SYSLOG_MSG_SZ, "$withval"))dnl + SYSLOG_MSG_SZ="$withval")dnl AC_SUBST(SYSHOST_CONFIG) AC_ARG_WITH(syshostConfig, @@ -333,36 +334,34 @@ AC_ARG_WITH(tmpdir, AS_HELP_STRING([--with-tmpdir=ans],[The tmp directory to use with package records [[/dev/shm]]]), XALT_TMPDIR="$withval" AC_MSG_RESULT([XALT_TMPDIR=$with-tmpdir]) - AC_DEFINE_UNQUOTED(XALT_TMPDIR, "$with-tmpdir")dnl + AC_DEFINE_UNQUOTED(XALT_TMPDIR, "$with-tmpdir",[Allow xalt to write to /dev/shm])dnl , withval="/dev/shm" AC_MSG_RESULT([XALT_TMPDIR=$withval]) XALT_TMPDIR="$withval" - AC_DEFINE_UNQUOTED(XALT_TMPDIR, "$withval"))dnl + AC_DEFINE_UNQUOTED(XALT_TMPDIR, "$withval"),[Allow xalt to write to /dev/shm])dnl AC_SUBST(XALT_PRIME_NUMBER) AC_ARG_WITH(primeNumber, AS_HELP_STRING([--with-primeNumber=ans],[The prime number of directories when using XALT_FILE_PREFIX, [[997]]]), XALT_PRIME_NUMBER="$withval" - AC_MSG_RESULT([XALT_PRIME_NUMBER=$with-primeNumber]) - AC_DEFINE_UNQUOTED(XALT_PRIME_NUMBER, "$with-primeNumber")dnl + AC_MSG_RESULT([XALT_PRIME_NUMBER=$with-primeNumber])dnl , withval="997" AC_MSG_RESULT([XALT_PRIME_NUMBER=$withval]) - XALT_PRIME_NUMBER="$withval" - AC_DEFINE_UNQUOTED(XALT_PRIME_NUMBER, "$withval"))dnl + XALT_PRIME_NUMBER="$withval")dnl AC_SUBST(XALT_SIGNAL_HANDLER) AC_ARG_WITH(signalHandler, AS_HELP_STRING([--with-signalHandler=ans],[Have XALT capture executions that fail with a signal: [[no]]]), XALT_SIGNAL_HANDLER="$withval" AC_MSG_RESULT([XALT_SIGNAL_HANDLER=$with-signalHandler]) - AC_DEFINE_UNQUOTED(XALT_SIGNAL_HANDLER, "$with-signalHandler")dnl + AC_DEFINE_UNQUOTED(XALT_SIGNAL_HANDLER, "$with-signalHandler",[Allow XALT to interact with Signals])dnl , withval="no" AC_MSG_RESULT([XALT_SIGNAL_HANDLER=$withval]) XALT_SIGNAL_HANDLER="$withval" - AC_DEFINE_UNQUOTED(XALT_SIGNAL_HANDLER, "$withval"))dnl + AC_DEFINE_UNQUOTED(XALT_SIGNAL_HANDLER, "$withval",[Allow XALT to interact with Signals]))dnl AC_SUBST(XALT_PRIME_FMT) AC_SUBST(HAVE_32BIT) @@ -390,9 +389,10 @@ if test $MODE != "user_default" ; then mode=0$MODE EXEC_BITS=$(( 0111 & $mode )); if test $EXEC_BITS = 0; then + MSG="Error: MODE must have at least one executable bit set (Not MODE=$MODE)|Please try setting mode to 755 or 750 or 700 or similar." + ERR_MSG="$ERR_MSG||$MSG" echo - echo "MODE must have at least one executable bit set (Not MODE=$MODE)" - echo "Please try setting mode to 755 or 750 or 700 or similar." + echo $MSG echo rm -f makefile exit 1 @@ -404,14 +404,11 @@ AC_PATH_PROG(PATH_TO_GIT,git, []) AC_PATH_PROG(PATH_TO_FLEX,flex, []) AC_PATH_PROG(PATH_TO_LOGGER,logger, []) AC_PATH_PROG(PATH_TO_MKTEMP, mktemp, []) -AC_PATH_PROGS(PATH_TO_PYTHON, [python3] [python2] [python], []) - +AC_PATH_PROGS(PATH_TO_PYTHON, [python3] [python] [python2], []) +AC_MSG_RESULT([PATH_TO_PYTHON: $PATH_TO_PYTHON]) if test "x$PATH_TO_PYTHON" = "x"; then - echo - echo "=======================================================" - echo "XALT 2 requires python3, python2 or python to run." - echo "=======================================================" - echo + MSG="Error: XALT requires python3, python2 or python to run." + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile exit 1 fi @@ -424,7 +421,10 @@ AC_DEFINE_UNQUOTED(XALT_INSTALL_OS,"$XALT_INSTALL_OS",[Name of the OS that insta if test "x${PATH_TO_MKTEMP}" = "x" ; then - AC_MSG_ERROR([Unable to build XALT without mktemp]) + MSG="Unable to build XALT without mktemp" + ERR_MSG="$ERR_MSG||$MSG" + FOUND_ERROR=yes + AC_MSG_NOTICE([$MSG]) fi @@ -439,39 +439,56 @@ for i in file file_separate_dirs syslog logger none; do done if test found = no; then - echo - echo "=======================================================" - echo "XALT 2 does not support transmission style: $TRANSMISSION" - echo "See the xalt.readthedocs.io for supported methods" - echo "=======================================================" - echo + MSG="XALT does not support transmission style: $TRANSMISSION|See the xalt.readthedocs.io for supported methods" + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile exit 1 fi +XALT_UUID_V7=no +AC_SUBST(XALT_UUID_V7) +AC_CHECK_LIB([c], [getentropy], [XALT_UUID_V7=yes; AC_DEFINE([HAVE_FUNC_GETENTROPY],1, + [Define to 1 if you have getentropy in libc])],[]) + AC_SUBST(HAVE_PYMOD_MYSQLDB) AX_PYTHON_MODULE([$PATH_TO_PYTHON],[MySQLdb]) AC_CHECK_HEADER(uuid/uuid.h, [AC_DEFINE([HAVE_UUID_UUID_H], 1, [Define to 1 if you have .])], - [AC_MSG_ERROR([Unable to build XALT without uuid/uuid.h])]) + [FOUND_ERROR=yes; + MSG="Unable to build XALT without uuid/uuid.h" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) + if test $XALT_SUPPORT_CURL = yes ; then AC_CHECK_HEADER(curl/curl.h, [AC_DEFINE([HAVE_CURL_CURL_H], 1, [Define to 1 if you have .])], - [AC_MSG_ERROR([Configure with --supportCURL=no if you don't want support for curl transmission style])]) + [FOUND_ERROR=yes; + MSG="Configure with --supportCURL=no if you don't want support for curl transmission style" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) fi + AC_CHECK_HEADER(openssl/sha.h, [AC_DEFINE([HAVE_OPENSSL_SHA_H], 1, [Define to 1 if you have .])], - [AC_MSG_ERROR([Unable to build XALT without openssl/sha.h])]) + [FOUND_ERROR=yes; + MSG="Unable to build XALT without openssl/sha.h" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) AC_CHECK_HEADER(gelf.h, [], - [AC_MSG_ERROR([Unable to build XALT without gelf.h. Please install the libelf development package])]) + [FOUND_ERROR=yes; + MSG="Unable to build XALT without gelf.h. Please install the libelf development package" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) AC_CHECK_HEADER(syslog.h, [], - [AC_MSG_ERROR([Unable to build XALT without syslog.h. Please install the glibc headers package])]) - + [FOUND_ERROR=yes; + MSG="Unable to build XALT without syslog.h. Please install the glibc headers package" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) AC_SUBST(HAVE_WORKING_LIBUUID) HAVE_WORKING_LIBUUID=no @@ -480,25 +497,18 @@ if test $ac_cv_header_uuid_uuid_h = yes; then fi if test $HAVE_WORKING_LIBUUID = no -a ! -f /proc/sys/kernel/random/uuid; then - echo - echo "=======================================================" - echo "Unable to install XALT without uuid and" - echo "without /proc/sys/kernel/random/uuid" - echo "See the manual for details" - echo "=======================================================" + FOUND_ERROR=yes; + MSG="Unable to install XALT without uuid and without /proc/sys/kernel/random/uuid|See the manual for details" + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile - exit 1 fi if test -z "$PATH_TO_FLEX" ; then - echo - echo "=======================================================" - echo "Unable to install XALT without flex" - echo "See the xalt.readthedocs.io for details" - echo "=======================================================" + FOUND_ERROR=yes; + MSG="Unable to install XALT without flex|See the xalt.readthedocs.io for details" + ERR_MSG="$ERR_MSG||$MSG" rm -f makefile - exit 1 fi MY_TMPDIR=`mktemp -d` @@ -516,11 +526,20 @@ if test $XALT_GPU_TRACKING_STYLE = "dcgm" ; then AC_CHECK_HEADER(dcgm_agent.h, [AC_DEFINE([HAVE_DCGM_AGENT_H], 1, [Define to 1 if you have DCGM.])], - [AC_MSG_ERROR([Unable to include GPU tracking without DCGM])]) + [FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without DCGM" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) if test "$STATIC_LIBS" = yes; then - AC_SEARCH_LIBS([dcgmInit], [dcgm_stub], [AC_DEFINE(USE_DCGM, [1],[Using DCGM]) HAVE_DCGM=yes], [AC_MSG_ERROR([Unable to include GPU tracking without DCGM])], [-ldl]) + AC_SEARCH_LIBS([dcgmInit], [dcgm_stub], [AC_DEFINE(USE_DCGM, [1],[Using DCGM]) HAVE_DCGM=yes], [FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without DCGM" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])], [-ldl]) else - AC_SEARCH_LIBS([dcgmInit], [dcgm], [AC_DEFINE(USE_DCGM, [1],[Using DCGM]) HAVE_DCGM=yes], [AC_MSG_ERROR([Unable to include GPU tracking without DCGM])]) + AC_SEARCH_LIBS([dcgmInit], [dcgm], [AC_DEFINE(USE_DCGM, [1],[Using DCGM]) HAVE_DCGM=yes], [FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without DCGM" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) fi for i in ' ' .9 .8 .7 .6 .5 .4 .3 .2 .1; do GPU_STR=`$LOCATE_SO libdcgm.so$i` @@ -532,16 +551,26 @@ elif test $XALT_GPU_TRACKING_STYLE = "nvml" ; then AC_CHECK_HEADER(nvml.h, [AC_DEFINE([HAVE_NVML_H], 1, [Define to 1 if you have NVML.])], - [AC_MSG_ERROR([Unable to include GPU tracking without NVML])]) + [FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without NVML" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) AC_CHECK_HEADER(dlfcn.h, [AC_DEFINE([HAVE_DCFCN_H], 1, [Define to 1 if you have dlfcn.h.])], - [AC_MSG_ERROR([Unable to include GPU tracking without dlfcn.h])]) + [FOUND_ERROR=yes; + MSG="Unable to include GPU tracking without dlfcn.h" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) AC_SEARCH_LIBS([dlopen], [dl dld], [AC_DEFINE([HAVE_DLOPEN], [1],[Using dlopen library]) AC_DEFINE([USE_NVML], [1],[Using NVML library]) HAVE_NVML=yes], - [AC_MSG_ERROR([Unable to find dlopen])]) + [FOUND_ERROR=yes; + MSG="Unable to find dlopen" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) + for i in ' ' .9 .8 .7 .6 .5 .4 .3 .2 .1; do GPU_STR=`$LOCATE_SO libnvidia-ml.so$i` if test "$?" -eq 0; then @@ -591,12 +620,14 @@ fi XALT_LD_LIBRARY_PATH=$XALT_DEFAULT_DIR/lib64 echo "VERSION=$VERSION" -if test -n "$PATH_TO_GIT" -a -d $srcdir/.git ; then +if test -n "$PATH_TO_GIT" -a -e $srcdir/.git ; then xaltV=`(cd $srcdir; $PATH_TO_GIT describe)` else xaltV="@git@" fi XALT_GIT_VERSION=$xaltV +AC_MSG_RESULT([XALT_GIT_VERSION=$XALT_GIT_VERSION]) + if test "$HAVE_CXX11" = no; then echo @@ -615,7 +646,7 @@ if test "$XALT_CONFIG_PY" = no; then echo "See the xalt.readthedocs.io for details" echo "=======================================================" rm -f makefile - exit 1 + exit 1 fi if ! test -f $XALT_CONFIG_PY; then @@ -625,7 +656,7 @@ if ! test -f $XALT_CONFIG_PY; then echo "quitting!" echo "=======================================================" rm -f makefile - exit 1 + exit 1 fi if test "$MYSQLDB" = yes; then @@ -633,8 +664,8 @@ if test "$MYSQLDB" = yes; then echo echo "=======================================================" echo "Unable to install XALT without the python module: MySQLdb" + echo "Install a system package (debian based linux: python3-mysqldb) " echo "To install for python3 do: pip3 install mysqlclient" - echo "To install for python2 do: pip install MySQL-python" echo "=======================================================" rm -f makefile exit 1 @@ -678,11 +709,17 @@ if test "$USE_CONTRIB_ARGPARSE" = yes; then fi fi -AC_SEARCH_LIBS([SHA1], [crypto], [], [AC_MSG_ERROR([Unable to build XALT without libcrypto])]) +AC_SEARCH_LIBS([SHA1], [crypto], [], + [FOUND_ERROR=yes; + MSG="Unable to build XALT without libcrypto" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) -echo if test $XALT_SUPPORT_CURL = yes; then - AC_SEARCH_LIBS([curl_easy_setopt], [curl], [], [AC_MSG_ERROR([Unable to build XALT without libcurl])]) + AC_SEARCH_LIBS([curl_easy_setopt], [curl], [], [FOUND_ERROR=yes; + MSG="Unable to build XALT without libcurl" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG])]) fi AC_SUBST(CRYPTO_STR) @@ -707,6 +744,7 @@ for i in ' ' .9 .8 .7 .6 .5 .4 .3 .2 .1; do fi done + $PATH_TO_PYTHON $ac_confdir/proj_mgmt/py_build_tools/xalt_prime_check.py $XALT_PRIME_NUMBER if test "$?" != 0; then echo @@ -737,6 +775,7 @@ if test "$?" != 0; then exit 1 fi + $PATH_TO_PYTHON $ac_confdir/proj_mgmt/py_build_tools/build_syshost_routine.py --input $SYSHOST_CONFIG --output src/__build__/xalt_syshost.c if test "$?" != 0; then rm -f makefile @@ -808,12 +847,29 @@ done IFS=$ORIG_SEP if test -n "$NOT_FOUND"; then - AC_MSG_ERROR([Unable to build XALT without SYSTEM_PATH=$SYSTEM_PATH including $NOT_FOUND]) + FOUND_ERROR=yes + MSG="Unable to build XALT without SYSTEM_PATH=$SYSTEM_PATH including $NOT_FOUND" + ERR_MSG="$ERR_MSG||$MSG" + AC_MSG_NOTICE([$MSG]) fi -rm -rf $MY_TMPDIR +if test "$FOUND_ERROR" = yes; then + echo + echo One or more errors found: + echo + echo Error Messages: + echo "------------------------------------------------------------" + echo $ERR_MSG | tr '|' '\n' | while read item; do + echo $item + done + echo "------------------------------------------------------------" + rm -f makefile + exit 1; +fi + +rm -rf $MY_TMPDIR AC_CONFIG_FILES([makefile:Makefile.in \ src/__build__/xalt_config.h:src/util/xalt_config.h.in \ diff --git a/ncsa_build/3.0.2.lua b/ncsa_build/3.1.1.lua similarity index 81% rename from ncsa_build/3.0.2.lua rename to ncsa_build/3.1.1.lua index a814f16c..7208f8b8 100644 --- a/ncsa_build/3.0.2.lua +++ b/ncsa_build/3.1.1.lua @@ -1,4 +1,4 @@ --- XALT 3.0.2 Modfile +-- XALT 3.1.1 Modfile -- Setting as sticky to bypass module purge on OOD launch script add_property("lmod","sticky") @@ -32,8 +32,8 @@ prepend_path("COMPILER_PATH", bin) -- XAlT_DATE_TIME creation setenv("XALT_FILE_PREFIX", pathJoin(record_dir,formattedDate)) --- XAlT_DATE_TIME creation -setenv("XALT_ALWAYS_CREATE_START", pathJoin(record_dir,formattedDate)) +-- -- XAlT_DATE_TIME creation +-- setenv("XALT_ALWAYS_CREATE_START", pathJoin(record_dir,formattedDate)) -- Variable needed for Python tracking outside a container @@ -41,10 +41,10 @@ prepend_path("PYTHONPATH", pythonpath) -- Variables needed for XALT to get included into containers -prepend_path("APPTAINER_BINDPATH", apptainer_bind_dir) -setenv("APPTAINERENV_LD_PRELOAD", pathJoin(base, lib_dir, "libxalt_init.so")) -setenv("APPTAINERENV_PYTHONPATH", pythonpath) - +-- prepend_path("APPTAINER_BINDPATH", apptainer_bind_dir) +-- setenv("APPTAINERENV_LD_PRELOAD", pathJoin(base, lib_dir, "libxalt_init.so")) +-- setenv("APPTAINERENV_PYTHONPATH", pythonpath) +-- Disabled Apptainer in modfile on 10/31/2024 ------------------------------------------------------------ -- Only set this in production not for testing!!! diff --git a/ncsa_build/build_xalt.sh b/ncsa_build/build_xalt.sh index 7906a47c..bdb22281 100644 --- a/ncsa_build/build_xalt.sh +++ b/ncsa_build/build_xalt.sh @@ -10,7 +10,7 @@ json_dir=$base_dir/delta/json config_file=Config/Delta_Config.py git_repo=https://github.com/ncsa/xalt module_name=xalt -module_ver=3.0.2 +module_ver=3.1.1 # Unloading module @@ -33,7 +33,7 @@ else fi # Setting Source to read and execute -# chmod -R u=rwx,o=rx $src_dir +chmod -R a+rx $src_dir # Configuring XALT now echo "Configuring XALT" @@ -54,11 +54,13 @@ make install if [ $? -eq 0 ]; then echo "Installation Complete." - chmod -R u+rwx,o+rx $build_dir/xalt + chmod -R a+rx $build_dir/xalt echo "Updating Modulefile from source" cp $src_dir/ncsa_build/$module_ver.lua $build_dir/module/xalt/$module_ver.lua echo "Add ${base_dir}/module to MODULEPATH to begin using ${module_name}" cp $src_dir/ncsa_build/build_xalt.sh $build_dir/build_xalt.sh + echo "Updating record directory permissions" + chmod -R a+wx $json_dir else echo "Install Failed" diff --git a/proj_mgmt/developer/top_level_makefile b/proj_mgmt/developer/top_level_makefile index 28bff59f..cb4151ab 100644 --- a/proj_mgmt/developer/top_level_makefile +++ b/proj_mgmt/developer/top_level_makefile @@ -7,8 +7,8 @@ dist: gittag: cd my_build; $(MAKE) gittag TAG=$(TAG) +tags: + cd my_build; $(MAKE) tags + world_update: cd my_build; $(MAKE) world_update - - - diff --git a/proj_mgmt/tools_for_lua/.luatools_modules.list b/proj_mgmt/tools_for_lua/.luatools_modules.list new file mode 100644 index 00000000..ebb8b153 --- /dev/null +++ b/proj_mgmt/tools_for_lua/.luatools_modules.list @@ -0,0 +1,15 @@ +#!/bin/bash +# -*- shell-script -*- + +fileA=( + BeautifulTbl.lua + Dbg.lua + Optiks.lua + Optiks_Option.lua + TermWidth.lua + capture.lua + declare.lua + haveTermSupport.lua + strict.lua + string_utils.lua + ) diff --git a/proj_mgmt/tools_for_lua/BeautifulTbl.lua b/proj_mgmt/tools_for_lua/BeautifulTbl.lua index 081acff9..d24597ab 100644 --- a/proj_mgmt/tools_for_lua/BeautifulTbl.lua +++ b/proj_mgmt/tools_for_lua/BeautifulTbl.lua @@ -45,7 +45,7 @@ require("strict") ------------------------------------------------------------------------ -- --- Copyright (C) 2008-2014 Robert McLay +-- Copyright (C) 2008-2018 Robert McLay -- -- Permission is hereby granted, free of charge, to any person obtaining -- a copy of this software and associated documentation files (the @@ -132,7 +132,7 @@ function M._build_tbl(self, tblIn) for icol = 1, numC do local v = a[icol] if (numC > 1) then - columnCnt[icol] = max(length(v), columnCnt[icol] or 0) + columnCnt[icol] = max(length(tostring(v)), columnCnt[icol] or 0) end end end diff --git a/proj_mgmt/tools_for_lua/TermWidth.lua b/proj_mgmt/tools_for_lua/TermWidth.lua index 581fc1e6..6325cd4e 100644 --- a/proj_mgmt/tools_for_lua/TermWidth.lua +++ b/proj_mgmt/tools_for_lua/TermWidth.lua @@ -75,7 +75,7 @@ function TermWidth() if (s_width) then return s_width end - local ltw = tonumber(getenv("LMOD_TERM_WIDTH")) + local ltw = tonumber(getenv("LMOD_TERM_WIDTH")) -- Note tonumber(nil) is nil not zero if (ltw) then s_width = ltw return s_width diff --git a/py_src/xalt_syslog_to_db.in.py b/py_src/xalt_syslog_to_db.in.py index e76ec340..beb41906 100644 --- a/py_src/xalt_syslog_to_db.in.py +++ b/py_src/xalt_syslog_to_db.in.py @@ -220,7 +220,7 @@ class ParseSyslog(object): def __init__(self, leftoverFn): self.__recordT = {} self.__leftoverFn = leftoverFn - self.__frntPatt = re.compile("(^.* V:\d+ *)") + self.__frntPatt = re.compile(r"(^.* V:\d+ *)") def num_leftover(self): return len(self.__recordT) diff --git a/rt/common_funcs.sh b/rt/common_funcs.sh index add4e8da..a6fd0c04 100644 --- a/rt/common_funcs.sh +++ b/rt/common_funcs.sh @@ -9,6 +9,8 @@ initialize() module --quiet unload $LMOD_FAMILY_MPI $LMOD_FAMILY_COMPILER ORIG_HOME=`(cd $HOME; /bin/pwd)` HOME=`/bin/pwd` + rm -rf $HOME/.local + ln -s $ORIG_HOME/.local $HOME numStep=0 COUNT=0 diff --git a/src/Makefile.in b/src/Makefile.in index 569cc9f0..c4824f5d 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -38,7 +38,8 @@ ifneq ($(MY_HOSTNAME_PARSER),no) endif endif -CFLAGS := --std=gnu99 $(COMMON_FLGS) $(HAVE_EXTERNAL_HOSTNAME_PARSER) +#CFLAGS := --std=gnu99 $(COMMON_FLGS) $(HAVE_EXTERNAL_HOSTNAME_PARSER) +CFLAGS := $(COMMON_FLGS) $(HAVE_EXTERNAL_HOSTNAME_PARSER) # Collect information from each module in these four variables. # Initialize them here as simple variables. diff --git a/src/libxalt/run_submission.c b/src/libxalt/run_submission.c index 288fd62c..52fcae8a 100644 --- a/src/libxalt/run_submission.c +++ b/src/libxalt/run_submission.c @@ -270,7 +270,7 @@ void run_submission(xalt_timer_t *xalt_timer, pid_t pid, pid_t ppid, double star my_free(syshost, strlen(syshost)); DEBUG(my_stderr," }\n\n"); - if (xalt_tracing) + if (xalt_tracing && my_stderr) fflush(my_stderr); } diff --git a/src/libxalt/xalt_initialize.c b/src/libxalt/xalt_initialize.c index 0c1d447d..c629a677 100644 --- a/src/libxalt/xalt_initialize.c +++ b/src/libxalt/xalt_initialize.c @@ -782,38 +782,6 @@ void myinit(int argc, char **argv) DEBUG(stderr," -> MPI_SIZE: %d < MPI_ALWAYS_RECORD: %d, XALT is build to %s, Current %s -> Not producing a start record\n", num_tasks, (int) always_record, xalt_build_descriptA[build_mask], xalt_run_descriptA[run_mask]); } - - // ====================================================== MODIFICATION ============================================= - // Create Start Records for all programs - v = getenv("XALT_ALWAYS_CREATE_START"); - DEBUG(stderr, " -> XALT_START_ALL set to %s \n", v); - if (v) - { - DEBUG(stderr, " -> Recording start record!\n", - num_tasks, (int) always_record); - - if ( ! have_uuid ) - { - build_uuid(&uuid_str[0]); - have_uuid = 1; - } - - if (xalt_tracing || xalt_run_tracing) - { - fprintf(stderr, " Recording state at beginning of %s user program:\n %s\n", - xalt_run_short_descriptA[run_mask], exec_path); - } - - run_submission(&xalt_timer, orig_pid, ppid, start_time, end_time, probability, exec_path, num_tasks, num_gpus, - xalt_run_short_descriptA[xalt_kind], uuid_str, watermark, usr_cmdline, xalt_tracing, - always_record, stderr); - - DEBUG(stderr," -> uuid: %s\n", uuid_str); - } - // ====================================================== MODIFICATION ENDS ======================================== - - - /********************************************************** * Restore LD_PRELOAD after running xalt_run_submission. @@ -877,18 +845,14 @@ void wrapper_for_myfini(int signum) sigaction(signum, &action, NULL); signal_hdlr_called = signum; myfini(); - - /* If you have the signal handler enabled and are using say - * USR1 to preempt logging on XALT, DO NOT RAISE the signal again - * as the user may not have written a handler for the signal - * leading to the process dieing on preemptiong - */ raise(signum); - } static void close_out(FILE* fp, int xalt_err) { + if (! fp) + return; + fflush(fp); if (xalt_err) { @@ -913,10 +877,8 @@ void myfini() close(STDERR_FILENO); dup2(errfd, STDERR_FILENO); my_stderr = fdopen(errfd,"w"); - if (!xalt_err) - { - xalt_err = stderr; - } + if ( !my_stderr ) + my_stderr = stderr; } @@ -938,7 +900,7 @@ void myfini() } if (signal_hdlr_called) - DEBUG(my_stderr," -> my_fini() called via signal handler with signum: %d\n", signal_hdlr_called); + DEBUG(my_stderr," -> myfini() called via signal handler with signum: %d\n", signal_hdlr_called); /* Stop tracking if my mpi rank is not zero or the path was rejected. */ if (reject_flag != XALT_SUCCESS) @@ -976,7 +938,7 @@ void myfini() DEBUG(my_stderr, " -> exiting because sampling. " "run_time: %g, (my_rand: %g > prob: %g) for program: %s\n}\n\n", run_time, my_rand, probability, exec_path); - if (xalt_err) + if (xalt_err && my_stderr) { fclose(my_stderr); close(errfd); @@ -1157,21 +1119,23 @@ void myfini() } if (xalt_tracing || xalt_run_tracing ) - fprintf(my_stderr," Recording State at end of %s user program\n", - xalt_run_short_descriptA[run_mask]); + DEBUG(my_stderr," Recording State at end of %s user program\n", + xalt_run_short_descriptA[run_mask]); - fflush(my_stderr); + if (my_stderr) + fflush(my_stderr); xalt_timer.fini = epoch() - t0; run_submission(&xalt_timer, orig_pid, ppid, start_time, end_time, probability, exec_path, num_tasks, num_gpus, xalt_run_short_descriptA[xalt_kind], uuid_str, watermark, usr_cmdline, xalt_tracing, always_record, my_stderr); DEBUG(my_stderr," -> leaving myfini\n}\n\n"); build_uuid_cleanup(); - fflush(my_stderr); + if (my_stderr) + fflush(my_stderr); my_free(watermark,strlen(watermark)); my_free(usr_cmdline,strlen(usr_cmdline)); - if (xalt_err) + if (xalt_err && my_stderr) { fclose(my_stderr); close(errfd); @@ -1376,4 +1340,4 @@ static double prgm_sample_probability(int ntasks, double runtime) __attribute__((section(".init_array"))) __typeof__(myinit) *__init = myinit; __attribute__((section(".fini_array"))) __typeof__(myfini) *__fini = myfini; #endif -#endif +#endif \ No newline at end of file diff --git a/src/tmpl/xalt_config.py b/src/tmpl/xalt_config.py index d028ac42..5a42f0fc 100644 --- a/src/tmpl/xalt_config.py +++ b/src/tmpl/xalt_config.py @@ -34,6 +34,15 @@ ['SKIP', r'.*\/xalt_configuration_report.x'], ['SKIP', r'.*\/xalt_syshost'], ['SKIP', r'.*\/xalt_record_pkg'], + ['SKIP', r'.*\/sh'], + ['SKIP', r'.*\/dash'], + ['SKIP', r'.*\/bash'], + ['SKIP', r'.*\/zsh'], + ['SKIP', r'.*\/csh'], + ['SKIP', r'.*\/tcsh'], + ['SKIP', r'.*\/nu'], + ['SKIP', r'.*\/fish'], + ['SKIP', r'.*\/rc'], ['SKIP', "XALT_INSTALL_DIR" ], ] diff --git a/src/util/build_uuid.c b/src/util/build_uuid.c index 1c08aa8e..339124ff 100644 --- a/src/util/build_uuid.c +++ b/src/util/build_uuid.c @@ -1,63 +1,134 @@ +#define _DEFAULT_SOURCE #include #include #include +#include +#include +#include #include #include "xalt_obfuscate.h" #include "build_uuid.h" #include "xalt_config.h" +#include "xalt_header.h" #include "xalt_dir.h" #include "xalt_c_utils.h" #include #define BAD_UUID "deadbeaf-dead-beef-1111-deadbeef1111" -static void* handle = NULL; -static void (*my_uuid_generate_random)(uuid_t) = NULL; -static void (*my_uuid_unparse_lower)(uuid_t, char*) = NULL; +static void* handle = NULL; -void build_uuid(char * my_uuid_str) -{ - char *error; - uuid_t uuid; + +#ifdef HAVE_FUNC_GETENTROPY + int uuidv7(uint8_t *value) + { + // random bytes + int err = getentropy(value, 16); + if (err != EXIT_SUCCESS) + return EXIT_FAILURE; - if (! my_uuid_generate_random) - { - char* fn = xalt_dir("lib64/libuuid.so"); - handle = dlopen (fn, RTLD_LAZY); - if (fn) - my_free(fn, strlen(fn)); - if ( ! handle) - { - handle = dlopen ("libuuid.so", RTLD_LAZY); - if (!handle) - { - fputs (dlerror(), stderr); - strcpy(my_uuid_str, BAD_UUID); - return; - } - } - my_uuid_generate_random = dlsym(handle,"uuid_generate_random"); - if ((error = dlerror()) != NULL) - { - fputs(error, stderr); - strcpy(my_uuid_str,BAD_UUID); - return; - } + // current timestamp in seconds and nano-seconds + struct timespec ts; + int ok = timespec_get(&ts, TIME_UTC); + if (ok == 0) + return EXIT_FAILURE; - my_uuid_unparse_lower = dlsym(handle,"uuid_unparse_lower"); - if ((error = dlerror()) != NULL) - { - fputs(error, stderr); - strcpy(my_uuid_str,BAD_UUID); - return; - } - } - - (*my_uuid_generate_random)(uuid); - (*my_uuid_unparse_lower)(uuid, my_uuid_str); - /* Uncomment for testing duplicated uuid's - * strcpy(my_uuid_str,"3ae43486-bfe2-11eb-8a3a-b376be588fbc"); - */ -} + uint64_t timestamp = (uint64_t)ts.tv_sec * 1000 + ts.tv_nsec / 1000000; + + // timestamp + value[0] = (timestamp >> 40) & 0xFF; + value[1] = (timestamp >> 32) & 0xFF; + value[2] = (timestamp >> 24) & 0xFF; + value[3] = (timestamp >> 16) & 0xFF; + value[4] = (timestamp >> 8) & 0xFF; + value[5] = timestamp & 0xFF; + + // version and variant + value[6] = (value[6] & 0x0F) | 0x70; + value[8] = (value[8] & 0x3F) | 0x80; + + return EXIT_SUCCESS; + } + + void uuidv7_unparse_lower(uint8_t* u, char* uuidStr) + { + //01234567-0123-0123-0123-012345678901 + //01915724-4c55-74cd-872a-bbb4d58bc892 + // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 + //01234567-0123-0123-0123-012345678901 + // 1 2 3 + // 8901234567890123456789012345 + int tbl[] = {0, 4, 6, 8, 10, 16}; + int j = 0; + for (int k = 0; k < 5; ++k) + { + int istart = tbl[k]; + int iend = tbl[k+1]; + for (int i = istart; i < iend; ++i) + { + sprintf(&uuidStr[j], "%02x", u[i]); + j += 2; + } + uuidStr[j++] = '-'; + } + uuidStr[36] = '\0'; + } + + void build_uuid(char * my_uuid_str) + { + uint8_t my_uuid[16]; + + uuidv7(&my_uuid[0]); + uuidv7_unparse_lower(&my_uuid[0], my_uuid_str); + } + +#else + static void (*my_uuid_generate_random)(uuid_t) = NULL; + static void (*my_uuid_unparse_lower)(uuid_t, char*) = NULL; + void build_uuid(char * my_uuid_str) + { + char *error; + uuid_t uuid; + + if (! my_uuid_generate_random) + { + char* fn = xalt_dir("lib64/libuuid.so"); + handle = dlopen (fn, RTLD_LAZY); + if (fn) + my_free(fn, strlen(fn)); + if ( ! handle) + { + handle = dlopen ("libuuid.so", RTLD_LAZY); + if (!handle) + { + fputs (dlerror(), stderr); + strcpy(my_uuid_str, BAD_UUID); + return; + } + } + my_uuid_generate_random = dlsym(handle,"uuid_generate_random"); + if ((error = dlerror()) != NULL) + { + fputs(error, stderr); + strcpy(my_uuid_str,BAD_UUID); + return; + } + + my_uuid_unparse_lower = dlsym(handle,"uuid_unparse_lower"); + if ((error = dlerror()) != NULL) + { + fputs(error, stderr); + strcpy(my_uuid_str,BAD_UUID); + return; + } + } + + (*my_uuid_generate_random)(uuid); + (*my_uuid_unparse_lower)(uuid, my_uuid_str); + /* Uncomment for testing duplicated uuid's + * strcpy(my_uuid_str,"3ae43486-bfe2-11eb-8a3a-b376be588fbc"); + */ + } +#endif void build_uuid_cleanup() { diff --git a/src/util/debug_macros.h b/src/util/debug_macros.h index 7f09d634..ea7e68cb 100644 --- a/src/util/debug_macros.h +++ b/src/util/debug_macros.h @@ -4,7 +4,7 @@ #define STRINGIFY_base(x) #x #define STRINGIFY(x) STRINGIFY_base(x) -#define HERE_fp(fp) do { fprintf((fp),"%s:%s\n",__FILE__,STRINGIFY(__LINE__)); fflush((fp)); } while(0) +#define HERE_fp(fp) do { if (fp) {fprintf((fp),"%s:%s\n",__FILE__,STRINGIFY(__LINE__)); fflush((fp));} } while(0) #define HERE HERE_fp(stderr) #define ARGS_FIRST(...) ARGS_FIRST0(__VA_ARGS__, 0) @@ -15,7 +15,7 @@ #define MAIN_DEBUG(tracing, fp, ...) MAIN_DEBUG_base(tracing, fp, ARGS_FIRST(__VA_ARGS__) "%.0d", ARGS_REST(__VA_ARGS__)) -#define MAIN_DEBUG_base(tracing, fp, ...) if (tracing) do { fprintf((fp), __VA_ARGS__ ); fflush(fp); } while (0) +#define MAIN_DEBUG_base(tracing, fp, ...) if (tracing && fp) do { fprintf((fp), __VA_ARGS__ ); fflush(fp); } while (0) #endif //DEBUG_MACROS diff --git a/src/util/transmit.c b/src/util/transmit.c index a0cd6eb2..7bd78b5d 100644 --- a/src/util/transmit.c +++ b/src/util/transmit.c @@ -66,7 +66,7 @@ void transmit(const char* transmission, const char* jsonStr, const char* kind, c if (xalt_tracing) { perror("Error: "); - fprintf(my_stderr," unable to mkpath(%s) -> No XALT output\n", resultDir); + DEBUG(my_stderr," unable to mkpath(%s) -> No XALT output\n", resultDir); } return; } @@ -79,19 +79,14 @@ void transmit(const char* transmission, const char* jsonStr, const char* kind, c FILE* fp = fopen(tmpFn,"w"); if (fp == NULL) { - if (xalt_tracing) - fprintf(my_stderr," Unable to open: %s -> No XALT output\n", fn); + DEBUG(my_stderr," Unable to open: %s -> No XALT output\n", fn); } else { fprintf(fp, "%s\n", jsonStr); fclose(fp); rename(tmpFn, fn); - if (xalt_tracing) - { - const char * method = xalt_file_transmission_method(); - fprintf(my_stderr, " Using %s method to store json file\n",method); - } + DEBUG(my_stderr," Using %s method to store json file\n",xalt_file_transmission_method()); DEBUG(my_stderr," Wrote json %s file : %s\n",kind, fn); } my_free(tmpFn,strlen(tmpFn)); diff --git a/src/util/xalt_config.h.in b/src/util/xalt_config.h.in index 7cb1c008..94e3c192 100644 --- a/src/util/xalt_config.h.in +++ b/src/util/xalt_config.h.in @@ -12,6 +12,7 @@ #define GPU_STR "@GPU_STR@" #define HAVE_32BIT "@HAVE_32BIT@" #define HAVE_DCGM "@HAVE_DCGM@" +#define XALT_UUID_V7 "@XALT_UUID_V7@" #define HAVE_NVML "@HAVE_NVML@" #define HAVE_WORKING_LIBUUID "@HAVE_WORKING_LIBUUID@" #define MY_HOSTNAME_PARSER "@MY_HOSTNAME_PARSER@" diff --git a/src/util/xalt_configuration_report.C b/src/util/xalt_configuration_report.C index 686ddcd7..0cc90094 100644 --- a/src/util/xalt_configuration_report.C +++ b/src/util/xalt_configuration_report.C @@ -149,6 +149,8 @@ int main(int argc, char* argv[]) if (xalt_etc_dir == NULL) xalt_etc_dir = XALT_ETC_DIR; + const char* xalt_uuid_v7 = XALT_UUID_V7; + const char * rmapT_str = "false"; bool found_rmapT = false; std::string rmapD = ""; // If this is an empty string then XALT_ETC_DIR is used to specify location of rmapD @@ -248,6 +250,7 @@ int main(int argc, char* argv[]) json_add_char_str(&json, my_sep, "XALT_CONFIG_PY", XALT_CONFIG_PY); json_add_char_str(&json, my_sep, "XALT_CMDLINE_RECORD", cmdline_record); json_add_char_str(&json, my_sep, "XALT_SIGNAL_HANDLER", xalt_signal_handler); + json_add_char_str(&json, my_sep, "XALT_UUID_V7", xalt_uuid_v7); json_add_char_str(&json, my_sep, "XALT_SYSTEM_PATH", XALT_SYSTEM_PATH); json_add_char_str(&json, my_sep, "XALT_SYSHOST_CONFIG", SYSHOST_CONFIG); json_add_char_str(&json, my_sep, "XALT_MPI_TRACKING", xalt_mpi_tracking); @@ -313,6 +316,7 @@ int main(int argc, char* argv[]) std::cout << "XALT_SCALAR_TRACKING: " << xalt_scalar_tracking << "\n"; std::cout << "XALT_SAMPLING: " << xalt_sampling << "\n"; std::cout << "MPI_ALWAYS_RECORD: " << always_record << "\n"; + std::cout << "XALT_UUID_V7: " << xalt_uuid_v7 << "\n"; std::cout << "XALT_SIGNAL_HANDLER: " << xalt_signal_handler << "\n"; std::cout << "XALT_SYSTEM_PATH: " << XALT_SYSTEM_PATH << "\n"; std::cout << "XALT_SYSHOST_CONFIG: " << SYSHOST_CONFIG << "\n"; diff --git a/src/util/xalt_header.h.in b/src/util/xalt_header.h.in index f9064e4e..62bfd778 100644 --- a/src/util/xalt_header.h.in +++ b/src/util/xalt_header.h.in @@ -1,11 +1,10 @@ -/* src/xalt_header.h.in. Generated from configure.ac by autoheader. */ +/* src/util/xalt_header.h.in. Generated from configure.ac by autoheader. */ + /* Remember that AC_DEFINE() end up in xalt_header.h.in * AC_SUBST() end up in xalt_config.h.in */ -/* A site that insist to install XALT incorrectly */ -#undef SITE_CONTROLLED_PREFIX /* Build 32bit libraries as well */ #undef BIT32 @@ -13,12 +12,12 @@ /* Compute SHAs sums on libraries */ #undef COMPUTE_SHA1SUM -/* LD_LIBRARY_PATH for c++ programs */ -#undef CXX_LD_LIBRARY_PATH - /* Directory where xalt_db.conf and reverseMapD can be found */ #undef ETC_DIR +/* Define to 1 if you have . */ +#undef HAVE_CURL_CURL_H + /* Define to 1 if you have dlfcn.h. */ #undef HAVE_DCFCN_H @@ -28,15 +27,15 @@ /* Using dlopen library */ #undef HAVE_DLOPEN +/* Define to 1 if you have getentropy in libc */ +#undef HAVE_FUNC_GETENTROPY + /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* libuuid exist */ #undef HAVE_LIBUUID -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - /* Define to 1 if you have NVML. */ #undef HAVE_NVML_H @@ -46,6 +45,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H +/* Define to 1 if you have the header file. */ +#undef HAVE_STDIO_H + /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H @@ -67,6 +69,9 @@ /* Define to 1 if you have . */ #undef HAVE_UUID_UUID_H +/* Override executable install mode */ +#undef MODE + /* Require the mysqlclient/MySQL-python module */ #undef MYSQLDB @@ -94,10 +99,15 @@ /* Only use XALT in preload only mode */ #undef PRELOAD_ONLY +/* A site that insist to install XALT incorrectly */ +#undef SITE_CONTROLLED_PREFIX + /* Link with static libraries (currently only dcgm) */ #undef STATIC_LIBS -/* Define to 1 if you have the ANSI C header files. */ +/* Define to 1 if all of the C90 standard headers exist (not just the ones + required in a freestanding environment). This macro is provided for + backward compatibility; new code need not use it. */ #undef STDC_HEADERS /* How to determine syshost */ @@ -115,6 +125,9 @@ /* Using NVML library */ #undef USE_NVML +/* Record the program's execution command line */ +#undef XALT_CMDLINE_RECORD + /* A python file defining the site configuration */ #undef XALT_CONFIG_PY @@ -125,7 +138,7 @@ #undef XALT_FUNCTION_TRACKING /* Track GPU executables */ -#undef XALT_GPU_TRACKING +#undef XALT_GPU_TRACKING_STYLE /* Name of the OS that installed XALT */ #undef XALT_INSTALL_OS @@ -138,3 +151,12 @@ /* Track non-mpi executables */ #undef XALT_SCALAR_TRACKING + +/* Allow XALT to interact with Signals */ +#undef XALT_SIGNAL_HANDLER + +/* Track non-mpi executables */ +#undef XALT_SUPPORT_CURL + +/* Allow xalt to write to /dev/shm */ +#undef XALT_TMPDIR diff --git a/src/util/xalt_version.h b/src/util/xalt_version.h index 115036b4..ab9d8132 100644 --- a/src/util/xalt_version.h +++ b/src/util/xalt_version.h @@ -1 +1 @@ -#define XALT_VERSION_STR "XALT 3.0.2 2024-04-23 10:27" +#define XALT_VERSION_STR "XALT 3.1.1 2024-10-14 15:21" diff --git a/xalt.spec b/xalt.spec index bca830e4..1fbe1a92 100644 --- a/xalt.spec +++ b/xalt.spec @@ -50,7 +50,7 @@ Summary: The XALT software usage tracking tool Name: xalt -Version: 3.0.2 +Version: 3.1.1 Release: 1%{?dist} License: LGPLv2+ Group: System Environment/Base @@ -190,3 +190,6 @@ EOF + + +