Skip to content

Commit 3136d10

Browse files
committed
Initial commit to resolve merge conflicts
1 parent 1eb0b4b commit 3136d10

File tree

6 files changed

+0
-80
lines changed

6 files changed

+0
-80
lines changed

tensorflow/core/public/version.h

-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@ limitations under the License.
2626

2727
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
2828
// "-beta", "-rc", "-rc.1")
29-
<<<<<<< HEAD
30-
#define TF_VERSION_SUFFIX ".620-dev20241212"
31-
=======
3229
#define TF_VERSION_SUFFIX "-rc0"
33-
>>>>>>> upstream/r2.19
3430

3531
#define TF_STR_HELPER(x) #x
3632
#define TF_STR(x) TF_STR_HELPER(x)

tensorflow/tensorflow.bzl

-4
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,7 @@ def register_extension_info(**kwargs):
9595
# not contain rc or alpha, only numbers.
9696
# Also update tensorflow/core/public/version.h
9797
# and tensorflow/tools/pip_package/setup.py
98-
<<<<<<< HEAD
99-
WHEEL_VERSION = "2.19.0.620-dev20241212"
100-
=======
10198
WHEEL_VERSION = "2.19.0-rc0"
102-
>>>>>>> upstream/r2.19
10399
VERSION = "2.19.0"
104100
VERSION_MAJOR = VERSION.split(".")[0]
105101
two_gpu_tags = ["requires-gpu-nvidia:2", "manual", "no_pip"]

tensorflow/tools/pip_package/setup.py

-4
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,7 @@
4848
# result for pip.
4949
# Also update tensorflow/tensorflow.bzl and
5050
# tensorflow/core/public/version.h
51-
<<<<<<< HEAD
52-
_VERSION = '2.19.0.620-dev20241212'
53-
=======
5451
_VERSION = '2.19.0-rc0'
55-
>>>>>>> upstream/r2.19
5652

5753
# Update this version when a new libtpu stable version is released.
5854
LATEST_RELEASE_LIBTPU_VERSION = '0.0.9'

third_party/llvm/generated.patch

-60
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,4 @@
11
Auto generated patch. Do not edit or delete it, even if empty.
2-
<<<<<<< HEAD
3-
diff -ruN --strip-trailing-cr a/lld/ELF/Config.h b/lld/ELF/Config.h
4-
--- a/lld/ELF/Config.h
5-
+++ b/lld/ELF/Config.h
6-
@@ -619,7 +619,6 @@
7-
};
8-
ElfSym sym{};
9-
std::unique_ptr<SymbolTable> symtab;
10-
- SmallVector<Symbol *, 0> synthesizedSymbols;
11-
12-
SmallVector<std::unique_ptr<MemoryBuffer>> memoryBuffers;
13-
SmallVector<ELFFileBase *, 0> objectFiles;
14-
diff -ruN --strip-trailing-cr a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp
15-
--- a/lld/ELF/Writer.cpp
16-
+++ b/lld/ELF/Writer.cpp
17-
@@ -149,7 +149,6 @@
18-
if (!s || s->isDefined() || s->isCommon())
19-
return nullptr;
20-
21-
- ctx.synthesizedSymbols.push_back(s);
22-
s->resolve(ctx, Defined{ctx, ctx.internalFile, StringRef(), STB_GLOBAL,
23-
stOther, STT_NOTYPE, val,
24-
/*size=*/0, sec});
25-
@@ -283,7 +282,6 @@
26-
static void demoteSymbolsAndComputeIsPreemptible(Ctx &ctx) {
27-
llvm::TimeTraceScope timeScope("Demote symbols");
28-
DenseMap<InputFile *, DenseMap<SectionBase *, size_t>> sectionIndexMap;
29-
- bool hasDynSymTab = ctx.arg.hasDynSymTab;
30-
for (Symbol *sym : ctx.symtab->getSymbols()) {
31-
if (auto *d = dyn_cast<Defined>(sym)) {
32-
if (d->section && !d->section->isLive())
33-
@@ -296,12 +294,11 @@
34-
sym->type)
35-
.overwrite(*sym);
36-
sym->versionId = VER_NDX_GLOBAL;
37-
- if (sym->includeInDynsym(ctx))
38-
- sym->isExported = true;
39-
}
40-
}
41-
42-
- if (hasDynSymTab)
43-
+ sym->isExported = sym->includeInDynsym(ctx);
44-
+ if (ctx.arg.hasDynSymTab)
45-
sym->isPreemptible = sym->isExported && computeIsPreemptible(ctx, *sym);
46-
}
47-
}
48-
@@ -1839,11 +1836,6 @@
49-
}
50-
}
51-
52-
- // If the previous code block defines any non-hidden symbols (e.g.
53-
- // __global_pointer$), they may be exported.
54-
- for (Symbol *sym : ctx.synthesizedSymbols)
55-
- sym->isExported = sym->includeInDynsym(ctx);
56-
-
57-
demoteSymbolsAndComputeIsPreemptible(ctx);
58-
59-
if (ctx.arg.copyRelocs && ctx.arg.discard != DiscardPolicy::None)
60-
=======
612
diff -ruN --strip-trailing-cr a/clang/include/clang/Basic/BuiltinsX86.td b/clang/include/clang/Basic/BuiltinsX86.td
623
--- a/clang/include/clang/Basic/BuiltinsX86.td
634
+++ b/clang/include/clang/Basic/BuiltinsX86.td
@@ -189,4 +130,3 @@ diff -ruN --strip-trailing-cr a/clang/lib/Headers/xmmintrin.h b/clang/lib/Header
189130
#define _mm_prefetch(a, sel) (__builtin_prefetch((const void *)(a), \
190131
((sel) >> 2) & 1, (sel) & 0x3))
191132
#endif
192-
>>>>>>> upstream/r2.19

third_party/llvm/workspace.bzl

-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@ load("//third_party:repo.bzl", "tf_http_archive")
44

55
def repo(name):
66
"""Imports LLVM."""
7-
<<<<<<< HEAD
8-
LLVM_COMMIT = "2e5a5237daf82a657561c490845c406e13657311"
9-
LLVM_SHA256 = "e0622b7f81a046e1576d8d07c5ba916346c2a1c06528655d3ddd45a1028eac89"
10-
=======
117
LLVM_COMMIT = "f8287f6c373fcf993643dd6f0e30dde304c1be73"
128
LLVM_SHA256 = "add2841174abc79c45aa309bdf0cf631aa8f97e7a4df57dcfca57c60df27527f"
13-
>>>>>>> upstream/r2.19
149

1510
tf_http_archive(
1611
name = name,

third_party/triton/llvm_integration/series.bzl

-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,8 @@ LLVM nor MLIR integrator, please do not add any patches to this list.
88
"""
99

1010
llvm_patch_list = [
11-
<<<<<<< HEAD
1211
"//third_party/triton:llvm_integration/cl718257410.patch",
1312
"//third_party/triton:llvm_integration/cl718838076.patch",
14-
=======
1513
"//third_party/triton:llvm_integration/cl722861209.patch",
16-
>>>>>>> upstream/r2.19
1714
# Add new patches just above this line
1815
]

0 commit comments

Comments
 (0)