Home
last modified time | relevance | path

Searched defs:Shape (Results 1 – 25 of 54) sorted by relevance

123

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
DCoroInternal.h67 struct LLVM_LIBRARY_VISIBILITY Shape { struct
68 CoroBeginInst *CoroBegin;
69 SmallVector<CoroEndInst *, 4> CoroEnds;
70 SmallVector<CoroSizeInst *, 2> CoroSizes;
71 SmallVector<CoroSuspendInst *, 4> CoroSuspends;
96 Shape() = default; argument
97 explicit Shape(Function &F) { buildFrom(F); } in Shape() function
DCoroSplit.cpp76 static BasicBlock *createResumeEntryBlock(Function &F, coro::Shape &Shape) { in createResumeEntryBlock()
186 static void replaceUnwindCoroEnds(coro::Shape &Shape, ValueToValueMapTy &VMap) { in replaceUnwindCoroEnds()
221 coro::Shape &Shape, SwitchInst *Switch, in handleFinalSuspend()
245 static Function *createClone(Function &F, Twine Suffix, coro::Shape &Shape, in createClone()
339 static void removeCoroEnds(coro::Shape &Shape) { in removeCoroEnds()
352 static void replaceFrameSize(coro::Shape &Shape) { in replaceFrameSize()
400 static void updateCoroFrame(coro::Shape &Shape, Function *ResumeFn, in updateCoroFrame()
604 static void simplifySuspendPoints(coro::Shape &Shape) { in simplifySuspendPoints()
712 coro::Shape Shape(F); in splitCoroutine() local
DCoroFrame.cpp158 SuspendCrossingInfo::SuspendCrossingInfo(Function &F, coro::Shape &Shape) in SuspendCrossingInfo()
372 static StructType *buildFrameType(Function &F, coro::Shape &Shape, in buildFrameType()
472 static Instruction *insertSpills(SpillInfo &Spills, coro::Shape &Shape) { in insertSpills()
865 void coro::buildCoroutineFrame(Function &F, Shape &Shape) { in buildCoroutineFrame() argument
/external/tensorflow/tensorflow/go/
Dshape.go29 type Shape struct { struct
30 dims []int64
50 func (s Shape) NumDimensions() int {
61 func (s Shape) Size(dim int) int64 {
70 func (s Shape) IsFullySpecified() bool {
84 func (s Shape) ToSlice() ([]int64, error) {
93 func (s Shape) String() string {
Dtensor_handle.go75 func (th *TensorHandle) Shape() ([]int64, error) { func
Doperation.go97 func (p Output) Shape() Shape { func
/external/gemmlowp/test/
Dbenchmark_meta_gemm.cc64 struct Shape { struct
73 Shape(std::int32_t n, std::int32_t m, std::int32_t k) in Shape() argument
76 void init() { in init()
104 double run_gemms(std::vector<Shape>* shapes) { in run_gemms() argument
Dbenchmark_all_sizes.cc202 struct Shape { struct
208 bool operator==(const Shape& s1, const Shape& s2) { in operator ==() argument
316 void run_benchmarks(std::map<Shape, float>* results) { in run_benchmarks()
/external/tensorflow/tensorflow/core/kernels/
Ddeep_conv2d.h55 struct Shape { struct
56 Shape(int64 r, int64 c) : rows(r), cols(c) {} in Shape() function
61 virtual const Shape& filter_shape() const = 0; argument
Dwinograd_transform.h31 typedef typename DeepConv2DTransform<T>::Shape Shape; typedef
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DShape.java21 public final class Shape { class
108 Shape(long[] shape) { in Shape() method in Shape
/external/tensorflow/tensorflow/compiler/xla/service/
Dstable_sort_expander_test.cc248 [](const Shape&, const Shape&) { return false; })); in TEST_F()
285 [](const Shape&, const Shape&) { return false; })); in TEST_F()
Dbfloat16_propagation.cc342 const ShapeIndex& index) { in DetermineInstructionPrecision()
378 [hlo, this](const Shape& /* subshape */, const ShapeIndex& index) { in DetermineInstructionPrecision()
418 const ShapeIndex& index) { in AdjustCalledComputationParameters()
458 const ShapeIndex& index) { in AdjustCalledComputationRoot()
512 const ShapeIndex& index) { in ResolveInconsistencyOfAliasingBuffersHelper()
Dallocation_tracker.cc81 [&](const Shape& /*subshape*/, const ShapeIndex& index) { in RegisterInternal()
114 [&shape_indices](const Shape& /*subshape*/, const ShapeIndex& index) { in Unregister()
Dhlo_matchers.h351 inline ::testing::Matcher<const ::xla::HloInstruction*> Shape( in Shape() function
355 inline ::testing::Matcher<const ::xla::HloInstruction*> Shape( in Shape() function
Dbuffer_assignment.cc463 [&](const Shape& /*subshape*/, const ShapeIndex& index) { in HaveDisjointSlices()
1567 const ShapeIndex& index) { in BuildColocatedBufferSets()
1598 [&](const Shape& /*subshape*/, const ShapeIndex& index) { in BuildColocatedBufferSets()
1627 const Shape& /*subshape*/, const ShapeIndex& index) { in BuildColocatedBufferSets()
1650 const ShapeIndex& index) { in BuildColocatedBufferSets()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
DShape.java18 public interface Shape { interface
/external/clang/test/CodeGenObjC/
Ddebug-info-impl.m7 @interface Shape : NSObject interface
/external/clang/test/PCH/
Denum.h9 enum Shape { enum
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
DShape.java18 public class Shape { class
/external/tensorflow/tensorflow/compiler/xla/python_api/
Dxla_shape.py29 class Shape(object): class
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DExample2_24Test.java163 private class Shape { class in Example2_24Test
170 public Shape(List<Entity> entities) { in Shape() method in Example2_24Test.Shape
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dalias_analysis.cc145 [&](const Shape& /*shape*/, const ShapeIndex& index) { in GetNoaliasMetadataForBuffer()
/external/tensorflow/tensorflow/compiler/xla/
Dshape.cc24 Shape::Shape(const ShapeProto& shape_proto) { in Shape() function in xla::Shape
/external/tensorflow/tensorflow/go/op/
Dwrappers.go1084 func PlaceholderWithDefault(scope *Scope, input tf.Output, shape tf.Shape) (output tf.Output) {
1114 func PlaceholderV2(scope *Scope, dtype tf.DataType, shape tf.Shape) (output tf.Output) {
1136 func PlaceholderShape(value tf.Shape) PlaceholderAttr {
1740 func EnsureShape(scope *Scope, input tf.Output, shape tf.Shape) (output tf.Output) {
3061 func ParallelConcat(scope *Scope, values []tf.Output, shape tf.Shape) (output tf.Output) {
4076 …ut tf.Output, group_size int64, group_key int64, instance_key int64, shape tf.Shape) (data tf.Outp…
4093 …ut tf.Output, group_size int64, group_key int64, instance_key int64, shape tf.Shape) (data tf.Outp…
6175 func TensorArrayConcatV2ElementShapeExcept0(value tf.Shape) TensorArrayConcatV2Attr {
6242 func TensorArrayV2ElementShape(value tf.Shape) TensorArrayV2Attr {
6387 func TensorArrayConcatV3ElementShapeExcept0(value tf.Shape) TensorArrayConcatV3Attr {
[all …]

123