Searched refs:opName (Results 1 - 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
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...]
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));
/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/tensorflow/tensorflow/core/kernels/fuzzing/
H A Dfuzz_session.h38 #define SINGLE_INPUT_OP_BUILDER(dtype, opName) \
43 tensorflow::ops::opName(scope.WithOpName("output"), op_node); \
57 // input Tensor, use the SINGLE_INPUT_OP_BUILDER(dtype, opName) macro in place
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationOperation.hpp252 bool isResourceSupported (const OperationName opName, const ResourceDescription& resourceDesc);
253 de::MovePtr<OperationSupport> makeOperationSupport (const OperationName opName, const ResourceDescription& resourceDesc);
254 std::string getOperationName (const OperationName opName);
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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs125 string opName = this.GetType().Name;
126 int index = opName.IndexOf('$');
127 opName = opName.Substring(index + 1);
128 return "<" + opName + "@" + this.index + ":\"" + text + "\">";
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java112 String opName = getClass().getName();
113 int $index = opName.indexOf('$');
114 opName = opName.substring($index+1, opName.length());
115 return "<"+opName+"@"+tokens.get(index)+
/external/tensorflow/tensorflow/go/op/
H A Dscope.go157 func (s *Scope) opName(typ string) string {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs141 string opName = this.GetType().Name;
142 int dindex = opName.IndexOf( '$' );
143 opName = opName.Substring( dindex + 1 );
144 return string.Format("<{0}@{1}:\"{2}\">", opName, stream._tokens[index], text);
/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/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py974 opName = self.__class__.__name__
976 opName, self.index, self.text)
/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp1336 const char* const opName = m_op == "+" ? "addition"
1341 DE_ASSERT(opName != DE_NULL);
1344 << opName << " operations in one loop iteration than the small program; "
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp1340 const char* const opName = m_op == "+" ? "addition"
1345 DE_ASSERT(opName != DE_NULL);
1348 << opName << " operations in one loop iteration than the small program; "
/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 849 milliseconds