This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| * Weld Runtime C Interface. | |
| * Link the Weld library with -lweld. | |
| * | |
| */ | |
| #ifndef _WELD_H_ | |
| #define _WELD_H_ | |
| #include <stdint.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| run_times_file = sys.argv[1] | |
| compile_times_file = sys.argv[2] | |
| with open(run_times_file, 'r') as f: | |
| run_times = f.readlines() | |
| with open(compile_times_file, 'r') as f: | |
| compile_times = f.readlines() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| PORT=59966 | |
| NUM_RUNS=3 | |
| QUERY_DIR=/export/scratch1/home/mihai/queries | |
| DBFARM_DIR=/scratch24r1/mihai/dbfarm | |
| COMPILE_TIMES_OUT=compile_times | |
| RUN_TIMES_OUT=run_times | |
| MCLIENT_OUT=mclient_out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| declare -a sfs=("SF-1" "SF-3" "SF-10" "SF-30" "SF-100" "SF-300" "SF-1000") | |
| for sf in "${sfs[@]}" | |
| do | |
| monetdb destroy -f "tpch-$sf" | |
| monetdb create "tpch-$sf" | |
| monetdb release "tpch-$sf" | |
| mclient -lsql -d "tpch-$sf" < /scratch24r1/manegold/ssbm-tpch/TPCH/scripts/1.create_tables.$sf.sql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>MAL-Weld</title> | |
| <style type="text/css"> | |
| .plot { | |
| min-width: 310px; | |
| height: 400px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install libcups2-dev libfontconfig1-dev gperf libxslt1-dev \ | |
| libxml2-utils python3-dev libxt-dev libxext-dev libxrender-dev libxrandr-dev \ | |
| bison flex libgconf2-dev libdbus-glib-1-dev libgtk-3-dev libgtk2.0-dev \ | |
| libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev ant junit4 libglew-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| import json | |
| import httplib2 | |
| import os | |
| import pprint | |
| import time | |
| import urllib2 | |
| import pytz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-add-repository ppa:xorg-edgers/ppa | |
| sudo apt-get update | |
| sudo apt-get install nvidia-331 | |
| sudo apt-get install nvidia-settings | |
| sudo nvidia-xconfig | |
| sudo apt-get install bumblebee | |
| sudo bumblebeed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/python | |
| # citeste de la stdin log-ul | |
| # afiseaza la stdout log-ul sortat | |
| import fileinput | |
| import re | |
| output = [] | |
| header = "" | |
| content = "" | |
| for line in fileinput.input(): |
NewerOlder