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

  /art/test/627-checker-unroll/src/
Main.java 25 /// CHECK-START: void Main.unroll() loop_optimization (before)
29 /// CHECK-START: void Main.unroll() loop_optimization (after)
32 /// CHECK-START: void Main.unroll() instruction_simplifier$after_bce (after)
36 /// CHECK-START: void Main.unroll() loop_optimization (after)
38 public static void unroll() { method in class:Main
105 unroll(); method
  /external/tensorflow/tensorflow/contrib/summary/
summary_test_util.py 96 return unroll(db.execute(q, p).fetchall())
99 def unroll(list_of_tuples): function
  /external/eigen/Eigen/src/Core/
BooleanRedux.h 85 unroll = SizeAtCompileTime != Dynamic enumerator in enum:Eigen::__anon20859
89 if(unroll)
90 return internal::all_unroller<Evaluator, unroll ? int(SizeAtCompileTime) : Dynamic>::run(evaluator);
109 unroll = SizeAtCompileTime != Dynamic enumerator in enum:Eigen::__anon20860
113 if(unroll)
114 return internal::any_unroller<Evaluator, unroll ? int(SizeAtCompileTime) : Dynamic>::run(evaluator);
Visitor.h 113 unroll = SizeAtCompileTime != Dynamic enumerator in enum:Eigen::__anon21030
116 return internal::visitor_impl<Visitor, ThisEvaluator, unroll ? int(SizeAtCompileTime) : Dynamic>::run(thisEval, visitor);
TriangularMatrix.h 802 unroll = DstXprType::SizeAtCompileTime != Dynamic enumerator in enum:Eigen::internal::__anon21021
807 triangular_assignment_loop<Kernel, Mode, unroll ? int(DstXprType::SizeAtCompileTime) : Dynamic, SetOpposite>::run(kernel);
    [all...]
  /art/test/656-checker-simd-opt/src/
Main.java 24 /// CHECK-START: void Main.unroll(float[], float[]) loop_optimization (before)
31 /// CHECK-START-ARM64: void Main.unroll(float[], float[]) loop_optimization (after)
45 private static void unroll(float[] x, float[] y) { method in class:Main
186 unroll(x, y); method
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldo.c 433 static void unroll (lua_State *L, void *ud) { function
529 unroll(L, NULL);
549 status = luaD_rawrunprotected(L, unroll, NULL); /* run continuation */
  /external/lua/src/
ldo.c 548 static void unroll (lua_State *L, void *ud) { function
643 unroll(L, NULL); /* run continuation */
669 /* unroll continuation */
670 status = luaD_rawrunprotected(L, unroll, &status);
  /art/compiler/optimizing/
loop_optimization.cc 747 // Unroll the loop-body, which sees initial value of the index.
846 // Fully unroll loops with a known and small trip count.
1047 uint32_t unroll = arch_loop_helper_->GetSIMDUnrollingFactor( local
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
OutputASM.cpp 1851 bool unroll = (loop.iterations <= 4); local
    [all...]
  /external/deqp-deps/glslang/glslang/Include/
intermediate.h 1110 unroll(false),
1123 void setUnroll() { unroll = true; }
1125 bool getUnroll() const { return unroll; }
1137 bool unroll; // true if unroll requested member in class:glslang::TIntermLoop
1138 bool dontUnroll; // true if request to not unroll
    [all...]

Completed in 882 milliseconds