aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authora-bocharov <a-bocharov@yandex-team.ru>2022-02-10 16:51:42 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:51:42 +0300
commitcf85d9ecf529a02f41258fd39cbc1a1cee24525d (patch)
treef3c4df7bf12865ad24e1101cf22dbb1f3c8a920b /build
parent5e08c1c74c0a13a60738d33e4a9c4e0b21986b75 (diff)
downloadydb-cf85d9ecf529a02f41258fd39cbc1a1cee24525d.tar.gz
Restoring authorship annotation for <a-bocharov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build')
-rwxr-xr-xbuild/scripts/build_mn.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/build/scripts/build_mn.py b/build/scripts/build_mn.py
index 5bb03c247c..081b9d97ac 100755
--- a/build/scripts/build_mn.py
+++ b/build/scripts/build_mn.py
@@ -50,10 +50,10 @@ class BuildMnBase(object):
mncpptmpPath = self.mncppPath + ".tmp"
mncpptmp = open(mncpptmpPath, 'w')
- if self.multi:
- mncpptmp.write("#include <kernel/matrixnet/mn_multi_categ.h>\n")
- else:
- mncpptmp.write("#include <kernel/matrixnet/mn_sse.h>\n")
+ if self.multi:
+ mncpptmp.write("#include <kernel/matrixnet/mn_multi_categ.h>\n")
+ else:
+ mncpptmp.write("#include <kernel/matrixnet/mn_sse.h>\n")
rodatapath = os.path.dirname(self.mncppPath) + "/" + dataprefix + self.mnname + ".rodata"
mncpptmp.write("namespace{\n")
@@ -257,7 +257,7 @@ class BuildMns(BuildMnBase):
if ext == ".info":
mnnames.append(mnfilename)
elif ext == ".mnmc":
- mnmultinames.append(mnfilename)
+ mnmultinames.append(mnfilename)
tmpSrcFile.write(self.autogen)
tmpSrcFile.write("#include \"{0}\"\n\n".format(hdrrel))