This file contains 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
""" | |
`Learn the Basics <intro.html>`_ || | |
**Quickstart** || | |
`Tensors <tensorqs_tutorial.html>`_ || | |
`Datasets & DataLoaders <data_tutorial.html>`_ || | |
`Transforms <transforms_tutorial.html>`_ || | |
`Build Model <buildmodel_tutorial.html>`_ || | |
`Autograd <autogradqs_tutorial.html>`_ || | |
`Optimization <optimization_tutorial.html>`_ || | |
`Save & Load Model <saveloadrun_tutorial.html>`_ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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/env python | |
"""TAU trial data for TAU Profile.x.y.z format profiles | |
Parses a set of TAU profile files and yields multi-indexed Pandas dataframes for the | |
interval and atomic events. | |
""" | |
from __future__ import print_function | |
import csv | |
import glob | |
import mmap |
This file contains 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/env python | |
"""TAU trial data for TAU Profile.x.y.z format profiles | |
Parses a set of TAU profile files and yields multi-indexed Pandas dataframes for the | |
interval and atomic events. | |
""" | |
from __future__ import print_function | |
import csv | |
import glob | |
import mmap |
This file contains 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
#ifndef _GNU_SOURCE | |
#define _GNU_SOURCE | |
#endif | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <arpa/inet.h> | |
#include <netdb.h> |
This file contains 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
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <netdb.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <arpa/inet.h> | |
int lookup_host (const char *host, int use_canonname) { | |
struct addrinfo hints, *res; |
I hereby claim:
- I am nchaimov on github.
- I am nchaimov (https://keybase.io/nchaimov) on keybase.
- I have a public key whose fingerprint is D64A E10A 7F24 BC7D 3E1A 7F8A 96F5 E0A5 BC6A 8B88
To claim this, I am signing this object:
This file contains 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
#include "rose.h" | |
class InheritedAttribute { | |
}; | |
class visitorTraversal : public AstTopDownProcessing<InheritedAttribute>{ | |
public: | |
virtual InheritedAttribute evaluateInheritedAttribute(SgNode* n, InheritedAttribute inheritedAttribute); | |
}; | |
InheritedAttribute visitorTraversal::evaluateInheritedAttribute(SgNode* n, InheritedAttribute inheritedAttribute) { SgExprStatement * expr = isSgExprStatement(n); | |
if(expr != NULL) { |