HomeSort by relevance Sort by last modified time
    Searched defs:Concatenate (Results 1 - 5 of 5) sorted by null

  /external/v8/tools/
concatenate-files.py 41 def Concatenate(filenames):
42 """Concatenate files.
68 parser.set_usage("""Concatenate several files into one.
71 exit(0 if Concatenate(args) else 1)
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
merge.py 142 new_shape = K.concatenate([x_shape[1:], K.expand_dims(batch_size)])
165 new_shape = K.concatenate(
211 return K.all(K.concatenate(masks, axis=0), axis=0, keepdims=False)
347 @tf_export('keras.layers.Concatenate')
348 class Concatenate(_Merge):
356 axis: Axis along which to concatenate.
361 super(Concatenate, self).__init__(**kwargs)
370 raise ValueError('A `Concatenate` layer should be called '
380 raise ValueError('A `Concatenate` layer requires '
386 return K.concatenate(inputs, axis=self.axis
666 def concatenate(inputs, axis=-1, **kwargs): function
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/python/
xla_client.py 612 def Concatenate(self, operands, dimension):
613 """Enqueues a concatenate operation onto the computation.
616 operands: the operands to concatenate.
620 A ComputationDataHandle representing the added concatenate op.
    [all...]
  /external/tensorflow/tensorflow/core/framework/
shape_inference.cc 640 Status InferenceContext::Concatenate(ShapeHandle s1, ShapeHandle s2,
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
remote_method_tests.cpp 158 PDX_REMOTE_METHOD(Concatenate, kOpConcatenate,
182 PDX_REMOTE_API(API, Add, Foo, Concatenate, SumVector, StringLength,
200 std::string Concatenate(const std::string& a, const std::string& b) {
204 InvokeRemoteMethod<TestInterface::Concatenate>(a, b);
357 case TestInterface::Concatenate::Opcode:
358 DispatchRemoteMethod<TestInterface::Concatenate>(
600 const auto cat = client->Concatenate("This is a string", ", that it is.");

Completed in 815 milliseconds