Searched defs:opName (Results 1 - 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
H A DScope.java113 * name/opName[_suffix]}. This lets you name a specific operator more meaningfully.
117 * @param opName name for an operator in the returned scope
118 * @return a new Scope that uses opName for operations.
121 public Scope withName(String opName) { argument
122 return new Scope(graph, nameScope.withName(opName));
H A DNameScope.java41 // Override with opName if it exists.
42 String actualName = (opName != null) ? opName : scopeName;
49 // All context except for the opName is shared with the new scope.
55 // Override with opName if it exists.
56 String actualName = (opName != null) ? opName : name;
70 private NameScope(String opPrefix, String opName, Map<String, Integer> ids) { argument
72 this.opName = opName;
116 private final String opName; field in class:NameScope
[all...]
/external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
H A DInterpreter.java144 public int getInputIndex(String opName) { argument
148 return wrapper.getInputIndex(opName);
157 public int getOutputIndex(String opName) { argument
161 return wrapper.getOutputIndex(opName);
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
H A DSession.java353 private Operation operationByName(String opName) { argument
354 Operation op = graph.operation(opName);
356 throw new IllegalArgumentException("No Operation named [" + opName + "] in the Graph");
362 private Output<?> parseOutput(String opName) { argument
363 int colon = opName.lastIndexOf(':');
364 if (colon == -1 || colon == opName.length() - 1) {
365 return new Output(operationByName(opName), 0);
368 String op = opName.substring(0, colon);
369 int index = Integer.parseInt(opName.substring(colon + 1));
372 return new Output(operationByName(opName),
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DEDEmitter.cpp378 /// @opName - The name of the operand
383 const char *opName,
387 opIndex = inst.Operands.getOperandNamed(std::string(opName));
392 #define DECORATE1(opName, opFlag) decorate1(operandFlags, inst, opName, opFlag)
380 decorate1( FlagsConstantEmitter *(&operandFlags)[EDIS_MAX_OPERANDS], const CodeGenInstruction &inst, const char *opName, const char *opFlag) argument
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationOperation.cpp3548 bool isResourceSupported (const OperationName opName, const ResourceDescription& resourceDesc) argument
3550 switch (opName)
3644 std::string getOperationName (const OperationName opName) argument
3646 switch (opName)
3717 de::MovePtr<OperationSupport> makeOperationSupport (const OperationName opName, const ResourceDescription& resourceDesc) argument
3719 switch (opName)
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 407 milliseconds