f8a7c0edb2c4123d032fa32073c7356a7a17d9f0,theano/configdefaults.py,,,#,1704
Before Change
"%(python_version)s-%(python_bitwidth)s")
AddConfigVar("compiledir_format",
textwrap.fill(textwrap.dedent(\
Format string for platform-dependent compiled
module subdirectory (relative to base_compiledir).
Available keys: %s. Defaults to %r.
% (compiledir_format_keys, default_compiledir_format))),
StrParam(default_compiledir_format, allow_override=False),
in_c_key=False)
After 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):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
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: pantsbuild/pants
Commit Name: d8f0bd52827ec673a7f07ef818ea5ea740acd908
Time: 2019-01-25
Author: 1305167+cosmicexplorer@users.noreply.github.com
File Name: tests/python/pants_test/backend/python/tasks/test_build_local_python_distributions.py
Class Name: TestBuildLocalDistsNativeSources
Method Name: TestBuildLocalDistsNativeSources_1
Project Name: Theano/Theano
Commit Name: b7d23606db54f1b60d0efae50922549234b20661
Time: 2017-07-31
Author: abergeron@gmail.com
File Name: theano/configdefaults.py
Class Name:
Method Name: