f8a7c0edb2c4123d032fa32073c7356a7a17d9f0,theano/configdefaults.py,,,#,1796

Before Change


// part of the roaming part of the user profile. Instead we use the local part
// of the user profile, when available.
if sys.platform == "win32" and os.getenv("LOCALAPPDATA") is not None:
    default_base_compiledir = os.path.join(os.getenv("LOCALAPPDATA"), "Theano")
else:
    default_base_compiledir = os.path.join(get_home_dir(), ".theano")

After Change


// Allow to have easily one compiledir per device.
compiledir_format_dict["device"] = config.device
compiledir_format_keys = ", ".join(sorted(compiledir_format_dict.keys()))
default_compiledir_format = ("compiledir_%(short_platform)s-%(processor)s-"
                             "%(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)
Italian Trulli
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: Theano/Theano
Commit Name: b7d23606db54f1b60d0efae50922549234b20661
Time: 2017-07-31
Author: abergeron@gmail.com
File Name: theano/configdefaults.py
Class Name:
Method Name:


Project Name: rodluger/starry
Commit Name: c7d1e651b5af067fd955bbf7d65196c5f3ce54fa
Time: 2018-06-09
Author: rodluger@gmail.com
File Name: setup.py
Class Name:
Method Name: