HomeSort by relevance Sort by last modified time
    Searched refs:topology (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
__init__.py 15 """The Keras Engine: graph topology and training loop functionality.
21 from tensorflow.python.keras._impl.keras.engine.topology import get_source_inputs
22 from tensorflow.python.keras._impl.keras.engine.topology import Input
23 from tensorflow.python.keras._impl.keras.engine.topology import InputLayer
24 from tensorflow.python.keras._impl.keras.engine.topology import InputSpec
25 from tensorflow.python.keras._impl.keras.engine.topology import Layer
29 # Note: topology.Node is an internal class,
  /external/valgrind/none/tests/s390x/
ecag.c 19 get_level_info(uint64_t topology, unsigned level)
21 return (topology >> (56 - level * 8)) & 0xff;
28 uint64_t topology; local
30 topology = ecag(0, 0, 0); // get summary
35 unsigned info = get_level_info(topology, level);
57 printf("L%u topology: %s; %s\n", level+1, type, scope);
  /external/trappy/tests/
test_stats.py 17 from trappy.stats.Topology import Topology
35 topology = Topology()
36 topology.add_to_level(level, level_groups)
37 check_groups = topology.get_level(level)
39 self.assertTrue(topology.has_level(level))
43 """Test Topology: flatten"""
47 topology = Topology()
    [all...]
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
device_assignment.py 25 from tensorflow.contrib.tpu.python.tpu.topology import Topology
45 """Mapping from logical cores in a computation to the physical TPU topology.
52 def __init__(self, topology, core_assignment):
56 topology: A `Topology` object that describes the physical TPU topology.
62 ValueError: If `topology` is not `Topology` object.
65 if not isinstance(topology, Topology)
134 def topology(self): member in class:DeviceAssignment
    [all...]
tpu_system_metadata.py 43 'topology',
99 topology = None
108 topology = _obtain_topology(master_address, run_config)
114 topology=topology,
131 logging.info('Initializing TPU system (master: %s) to fetch topology '
139 topology = sess.run(tpu.initialize_system())
140 return topology
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_builder_3d.h 39 enum gen_3dprim_type topology; member in struct:gen6_3dprimitive_info
61 info->topology << GEN6_3DPRIM_DW0_TYPE__SHIFT;
85 dw[1] = info->topology << GEN7_3DPRIM_DW1_TYPE__SHIFT;
  /external/bart/tests/
test_sched_assert.py 20 from trappy.stats.Topology import Topology
35 self.topology = Topology(clusters=self.clusters)
51 s = SchedAssert(r, self.topology, execname=process)
77 sa = SchedAssert("trace.dat", self.topology, execname="ls")
86 self.topology = Topology(clusters=self.clusters)
101 sma = SchedMultiAssert(tr, self.topology, pids=pids)
  /external/trappy/trappy/stats/
Aggregator.py 89 def __init__(self, triggers, topology, aggfunc=None):
94 :param topology (trappy.stat.Topology): A topology object for aggregation
96 :type topology: :mod:`trappy.stat.Topology`
99 For each topology node, a series will be generated and this
104 self.topology = topology
131 level_groups = self.topology.get_level(level
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
models.py 32 from tensorflow.python.keras._impl.keras.engine import topology
33 from tensorflow.python.keras._impl.keras.engine.topology import Input
34 from tensorflow.python.keras._impl.keras.engine.topology import InputLayer
35 from tensorflow.python.keras._impl.keras.engine.topology import Layer
36 from tensorflow.python.keras._impl.keras.engine.topology import TFBaseLayer
62 - the model's configuration (topology)
139 topology.save_weights_to_hdf5_group(model_weights_group, model_layers)
252 topology.load_weights_from_hdf5_group(f['model_weights'], model.layers)
509 self.inputs = topology.get_source_inputs(self.outputs[0])
513 topology.Node
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineInputAssemblyTests.cpp 79 virtual void createBufferData (VkPrimitiveTopology topology,
102 virtual void createBufferData (VkPrimitiveTopology topology,
122 virtual void createBufferData (VkPrimitiveTopology topology,
286 void PrimitiveTopologyTest::createBufferData (VkPrimitiveTopology topology, int primitiveCount, VkIndexType indexType, std::vector<deUint32>& indexData, std::vector<Vertex4RGBA>& vertexData) const
304 switch (topology)
340 switch (topology)
640 void PrimitiveRestartTest::createBufferData (VkPrimitiveTopology topology, int primitiveCount, VkIndexType indexType, std::vector<deUint32>& indexData, std::vector<Vertex4RGBA>& vertexData) const
659 switch (topology)
681 switch (topology)
1462 const rr::PrimitiveType topology = mapVkPrimitiveTopology(m_primitiveTopology); local
1555 const VkPrimitiveTopology topology = InputAssemblyTest::s_primitiveTopologies[topologyNdx]; local
1584 const VkPrimitiveTopology topology = primitiveRestartTopologies[topologyNdx]; local
    [all...]
vktPipelineMultisampleTests.cpp 115 VkPrimitiveTopology topology,
138 VkPrimitiveTopology topology,
162 VkPrimitiveTopology topology,
184 VkPrimitiveTopology topology,
204 VkPrimitiveTopology topology,
226 VkPrimitiveTopology topology,
244 const VkPrimitiveTopology topology,
339 VkPrimitiveTopology topology,
364 VkPrimitiveTopology topology,
388 VkPrimitiveTopology topology,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawTestCaseUtil.hpp 65 vk::VkPrimitiveTopology topology; member in struct:vkt::Draw::TestSpecBase
vktBasicDrawTests.cpp 104 vk::VkPrimitiveTopology topology; member in struct:vkt::Draw::__anon17670::DrawParamsBase
110 : topology (top)
252 inline bool imageCompare (tcu::TestLog& log, const tcu::ConstPixelBufferAccess& reference, const tcu::ConstPixelBufferAccess& result, const vk::VkPrimitiveTopology topology)
254 if (topology == vk::VK_PRIMITIVE_TOPOLOGY_POINT_LIST)
325 (m_data.topology == vk::VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY ||
326 m_data.topology == vk::VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY ||
327 m_data.topology == vk::VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY ||
328 m_data.topology == vk::VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY)
455 pipelineCreateInfo.addState(PipelineCreateInfo::InputAssemblerState(m_data.topology));
517 rr::PrimitiveList(mapVkPrimitiveTopology(m_data.topology), (deUint32)vertices.size(), 0)))
1188 const vk::VkPrimitiveTopology topology; member in struct:vkt::Draw::__anon17670::TestCaseParams
1203 const vk::VkPrimitiveTopology topology = caseParams.topology; local
1286 const vk::VkPrimitiveTopology topology = vk::VkPrimitiveTopology(idx); local
    [all...]
vktDrawBaseClass.hpp 108 DrawTestsBaseClass (Context& context, const char* vertexShaderName, const char* fragmentShaderName, vk::VkPrimitiveTopology topology = vk::VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP);
  /external/tensorflow/tensorflow/contrib/tpu/
__init__.py 38 @@Topology
57 from tensorflow.contrib.tpu.python.tpu.topology import *
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
api.cpp 841 switch (pState->state.topology)
    [all...]
api.h 452 /// @param topology - Specifies topology for draw.
457 PRIMITIVE_TOPOLOGY topology,
464 /// @param topology - Specifies topology for draw.
471 PRIMITIVE_TOPOLOGY topology,
480 /// @param topology - Specifies topology for draw.
486 PRIMITIVE_TOPOLOGY topology,
494 /// @param topology - Specifies topology for draw
    [all...]
  /hardware/qcom/msm8994/kernel-headers/linux/
msm_audio_calibration.h 179 int32_t topology; member in struct:audio_cal_info_adm_top
209 int32_t topology; member in struct:audio_cal_info_afe_top
216 int32_t topology; member in struct:audio_cal_info_asm_top
285 int32_t topology; member in struct:audio_cal_info_lsm_top
297 int32_t topology; member in struct:audio_cal_info_voc_top
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_audio_calibration.h 193 int32_t topology; member in struct:audio_cal_info_adm_top
225 int32_t topology; member in struct:audio_cal_info_afe_top
233 int32_t topology; member in struct:audio_cal_info_asm_top
303 int32_t topology; member in struct:audio_cal_info_lsm_top
317 int32_t topology; member in struct:audio_cal_info_voc_top
  /device/linaro/bootloader/arm-trusted-firmware/lib/psci/
psci_setup.c 110 static void populate_power_domain_tree(const unsigned char *topology)
138 num_children = topology[parent_node_index];
166 * power domain topology tree by querying the platform. The power domain nodes
169 * exports its static topology map through the
172 * topology map. On a platform that implements two clusters of 2 cpus each,
195 /* Query the topology map from the platform */
198 /* Populate the power domain arrays using the platform topology map */
  /external/bart/bart/sched/
SchedMatrix.py 93 :param topology: A topology that describes the arrangement of
97 :type topology: :mod:`trappy.stats.Topology.Topology`
136 SchedMatrix(r_trace, trace, topology,
142 SchedMatrix(r_trace, trace, topology,
151 topology,
162 self._topology = topology
  /external/deqp/external/vulkancts/modules/vulkan/
vktDrawUtil.hpp 45 vk::VkPrimitiveTopology topology; member in struct:vkt::drawutil::DrawState
181 std::string getPrimitiveTopologyShortName (const vk::VkPrimitiveTopology topology);
  /hardware/qcom/msm8x26/kernel-headers/linux/
msm_audio_calibration.h 174 int32_t topology; member in struct:audio_cal_info_adm_top
202 int32_t topology; member in struct:audio_cal_info_asm_top
262 int32_t topology; member in struct:audio_cal_info_lsm_top
275 int32_t topology; member in struct:audio_cal_info_voc_top
  /hardware/qcom/msm8x26/original-kernel-headers/linux/
msm_audio_calibration.h 189 int32_t topology; member in struct:audio_cal_info_adm_top
220 int32_t topology; member in struct:audio_cal_info_asm_top
282 int32_t topology; member in struct:audio_cal_info_lsm_top
296 int32_t topology; member in struct:audio_cal_info_voc_top
  /external/lisa/libs/utils/
test.py 140 self.get_trace(experiment).ftrace, self.te.topology, execname=task)
152 self.te.topology,
200 sched_assert = SchedAssert(ftrace, self.te.topology, execname=task)

Completed in 444 milliseconds

1 2 3 4 5 6 7 8