b7d23606db54f1b60d0efae50922549234b20661,theano/configdefaults.py,,,#,1603
Before Change
return struct.calcsize("l") * 8
compiledir_format_dict = {
"platform": platform.platform(),
"processor": platform.processor(),
"python_version": platform.python_version(),
"python_bitwidth": local_bitwidth(),
"python_int_bitwidth": python_int_bitwidth(),
"theano_version": theano.__version__,
"numpy_version": np.__version__,
"gxx_version": gcc_version_str.replace(" ", "_"),
"hostname": socket.gethostname()}
def short_platform(r=None, p=None):
After Change
try:
p_out = output_subprocess_Popen([config.cxx, "-dumpversion"])
gcc_version_str = p_out[0].strip().decode()
except OSError:
// Typically means gcc cannot be found.
gcc_version_str = "GCC_NOT_FOUND"
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: Theano/Theano
Commit Name: b7d23606db54f1b60d0efae50922549234b20661
Time: 2017-07-31
Author: abergeron@gmail.com
File Name: theano/configdefaults.py
Class Name:
Method Name:
Project Name: Theano/Theano
Commit Name: f8a7c0edb2c4123d032fa32073c7356a7a17d9f0
Time: 2017-08-07
Author: stevenbocco@gmail.com
File Name: theano/configdefaults.py
Class Name:
Method Name:
Project Name: hachmannlab/chemml
Commit Name: 30bce6638a5840e6a67f0d996c6c51b809cd5c0c
Time: 2019-03-05
Author: mojtabah@buffalo.edu
File Name: chemml/chem/molecule.py
Class Name: Molecule
Method Name: to_smiles