HomeSort by relevance Sort by last modified time
    Searched defs:ops (Results 1 - 25 of 448) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/kfac/python/ops/
op_queue.py 21 from tensorflow.python.data.ops import dataset_ops
22 from tensorflow.python.framework import ops as tf_ops
28 Constructs an infinitely repeating sequence of Ops in shuffled order.
34 def __init__(self, ops, seed=None):
38 ops: list of TensorFlow Ops. Ops to be selected from. All workers must
39 initialize with the same set of ops.
40 seed: int or None. Random seed used when shuffling order of ops.
42 self._ops_by_name = {op.name: op for op in ops}
51 def ops(self): member in class:OpQueue
    [all...]
  /external/avb/libavb_ab/
avb_ab_ops.h 49 AvbOps* ops; member in struct:AvbABOps
  /external/tensorflow/tensorflow/cc/ops/
while_loop.h 19 #include "tensorflow/cc/framework/ops.h"
23 namespace ops { namespace in namespace:tensorflow
71 } // namespace ops
const_op.h 19 #include "tensorflow/cc/framework/ops.h"
24 namespace ops { namespace in namespace:tensorflow
82 } // namespace ops
  /device/linaro/bootloader/arm-trusted-firmware/drivers/delay_timer/
delay_timer.c 14 static const timer_ops_t *ops; variable
22 assert(ops != NULL &&
23 (ops->clk_mult != 0) &&
24 (ops->clk_div != 0) &&
25 (ops->get_timer_value != NULL));
29 assert(usec < UINT32_MAX / ops->clk_div);
31 start = ops->get_timer_value();
33 total_delta = (usec * ops->clk_div) / ops->clk_mult;
40 delta = start - ops->get_timer_value(); /* Decreasing counter *
    [all...]
generic_delay_timer.c 18 static timer_ops_t ops; variable
33 ops.get_timer_value = get_timer_value;
34 ops.clk_mult = mult;
35 ops.clk_div = div;
37 timer_init(&ops);
  /external/avb/libavb_atx/
avb_atx_ops.h 47 AvbOps* ops; member in struct:AvbAtxOps
  /external/libese/apps/boot/tests/
ese_operations_wrapper.h 30 static const struct EseOperations ops; member in class:EseOperationsWrapperData
  /external/libese/libese-teq1/tests/
ese_operations_wrapper.h 30 static const struct EseOperations ops; member in class:EseOperationsWrapperData
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/gen/
arithConstGen.go 49 var ops = []op{ var
174 for _, o := range ops {
242 for _, o := range ops {
277 for _, o := range ops {
constFoldGen.go 47 var ops = []op{ var
128 for _, o := range ops {
176 for _, o := range ops {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/gen/
arithConstGen.go 49 var ops = []op{ var
174 for _, o := range ops {
242 for _, o := range ops {
277 for _, o := range ops {
constFoldGen.go 47 var ops = []op{ var
128 for _, o := range ops {
176 for _, o := range ops {
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/
PrimitiveOpTest.java 54 Set<PrimitiveOp> ops = new HashSet<>(); local
55 assertTrue(ops.add(test1));
56 assertTrue(ops.add(test2));
57 assertFalse(ops.add(test3));
  /device/linaro/bootloader/arm-trusted-firmware/drivers/gpio/
gpio.c 19 static const gpio_ops_t *ops; variable
23 assert(ops);
24 assert(ops->get_direction != 0);
27 return ops->get_direction(gpio);
32 assert(ops);
33 assert(ops->set_direction != 0);
37 ops->set_direction(gpio, direction);
42 assert(ops);
43 assert(ops->get_value != 0);
46 return ops->get_value(gpio)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/io/
io_block.h 12 /* block devices ops */
20 io_block_ops_t ops; member in struct:io_block_dev_spec
  /external/adhd/cras/src/server/
cras_mix.c 12 static const struct cras_mix_ops *ops = &mixer_ops; variable in typeref:struct:cras_mix_ops
39 ops = get_mixer_ops(flags);
50 ops->scale_buffer_increment(fmt, buff, frame * channel, scaler,
57 ops->scale_buffer(fmt, buff, count, scaler);
64 ops->add(fmt, dst, src, count, index, mute, mix_vol);
71 ops->add_scale_stride(fmt, dst, src, count, dst_stride, src_stride,
79 return ops->mute_buffer(dst, frame_bytes, count);
  /external/avb/examples/uefi/
main.c 35 AvbOps* ops; local
51 ops = uefi_avb_ops_new(ImageHandle);
52 if (ops == NULL) {
56 if (ops->read_is_device_unlocked(ops, &unlocked) != AVB_IO_RESULT_OK) {
59 avb_printv("read_is_device_unlocked() ops returned that device is ",
69 ab_result = avb_ab_flow(ops->ab_ops,
126 uefi_avb_ops_free(ops);
uefi_avb_ops.h 33 AvbOps ops; member in struct:UEFIAvbOpsData
46 void uefi_avb_ops_free(AvbOps* ops);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
select_reactor.hpp 62 op_queue<operation> ops; local
63 std::size_t n = queue.cancel_timer(timer, ops, max_cancelled);
65 io_service_.post_deferred_completions(ops);
  /external/skia/src/gpu/
GrAuditTrail.cpp 9 #include "ops/GrOp.h"
29 Ops** opsLookup = fClientIDLookup.find(fClientID);
30 Ops* ops = nullptr; local
32 ops = new Ops;
33 fClientIDLookup.set(fClientID, ops);
35 ops = *opsLookup;
38 ops->push_back(auditOp);
45 // We use the op pointer as a key to find the OpNode we are 'glomming' ops ont
    [all...]
  /external/skqp/src/gpu/
GrAuditTrail.cpp 9 #include "ops/GrOp.h"
29 Ops** opsLookup = fClientIDLookup.find(fClientID);
30 Ops* ops = nullptr; local
32 ops = new Ops;
33 fClientIDLookup.set(fClientID, ops);
35 ops = *opsLookup;
38 ops->push_back(auditOp);
45 // We use the op pointer as a key to find the OpNode we are 'glomming' ops ont
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen_main.cc 33 OpList ops; local
34 OpRegistry::Global()->Export(include_internal, &ops);
35 ApiDefMap api_def_map(ops);
38 // Only load files that correspond to "ops".
39 for (const auto& op : ops.op()) {
52 WriteCCOps(ops, api_def_map, dot_h, dot_cc);
67 " include_internal: 1 means include internal ops\n",
grad_op_registry.cc 19 namespace ops { namespace in namespace:tensorflow
47 } // end namespace ops
grad_op_registry.h 21 #include "tensorflow/cc/framework/ops.h"
25 namespace ops { namespace in namespace:tensorflow
45 /// Note that 'func' can be null for ops that have registered no-gradient with
57 } // namespace ops
59 // Macros used to define gradient functions for ops.
71 ::tensorflow::ops::GradOpRegistry::Global()->Register(name, fn)

Completed in 828 milliseconds

1 2 3 4 5 6 7 8 91011>>