Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for movbe (1.25 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& clobber(move)
    	=> (Zero {t} [n] dst1 mem)
    (Move {t} [n] dst1 src1 move:(Move {t} [n] dst2 _ mem))
    	&& move.Uses == 1
    	&& isSamePtr(dst1, dst2) && disjoint(src1, n, dst2, n)
    	&& clobber(move)
    	=> (Move {t} [n] dst1 src1 mem)
    (Zero {t} [n] dst1 vardef:(VarDef {x} move:(Move {t} [n] dst2 _ mem)))
    	&& move.Uses == 1 && vardef.Uses == 1
    	&& isSamePtr(dst1, dst2)
    	&& clobber(move, vardef)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // strip off fractional word move
    (Move [s] dst src mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Move [8]
    		(OffPtr <dst.Type> dst [s-8])
    		(OffPtr <src.Type> src [s-8])
    		(Move [s-s%16] dst src mem))
    (Move [s] dst src mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Move [16]
    		(OffPtr <dst.Type> dst [s-16])
    		(OffPtr <src.Type> src [s-16])
    		(Move [s-s%16] dst src mem))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Expected %v in the podBackoffQ", hpp1.Name)
    	}
    
    	// Move clock by podInitialBackoffDuration, so that pods in the unschedulablePods would pass the backing off,
    	// and the pods will be moved into activeQ.
    	c.Step(q.podInitialBackoffDuration)
    	q.flushBackoffQCompleted(logger) // flush the completed backoffQ to move hpp1 to activeQ.
    	q.MoveAllToActiveOrBackoffQueue(logger, NodeAdd, nil, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_MVI     uint32 = 0x9200 // FORMAT_SI         MOVE (immediate)
    	op_MVIY    uint32 = 0xEB52 // FORMAT_SIY        MOVE (immediate)
    	op_MVN     uint32 = 0xD100 // FORMAT_SS1        MOVE NUMERICS
    	op_MVO     uint32 = 0xF100 // FORMAT_SS2        MOVE WITH OFFSET
    	op_MVPG    uint32 = 0xB254 // FORMAT_RRE        MOVE PAGE
    	op_MVST    uint32 = 0xB255 // FORMAT_RRE        MOVE STRING
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    Node* Unary(ops::NodeOut a, const GraphDefBuilder::Options& opts) {
      return ops::UnaryOp("UnaryTest", std::move(a), opts);
    }
    
    Node* Binary(ops::NodeOut a, ops::NodeOut b,
                 const GraphDefBuilder::Options& opts) {
      return ops::BinaryOp("BinaryTest", std::move(a), std::move(b), opts);
    }
    
    Node* BinaryUnknownShape(ops::NodeOut a, ops::NodeOut b,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                               std::move(graph));
      }
    
      SimpleSavedModelMLIRImportInput(const MetaGraphDef* meta_graph_def,
                                      const GraphDebugInfo& debug_info,
                                      std::unique_ptr<Graph> graph)
          : SavedModelMLIRImportInput(meta_graph_def, debug_info),
            graph_(std::move(graph)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return {};
      }
      return std::move(status_or_node_def.value());
    }
    
    // Converts a mlir padding StringRef to TfLitePadding.
    // Returns std::nullopt if conversion fails.
    static std::optional<TfLitePadding> GetTflitePadding(Operation* inst,
                                                         llvm::StringRef padding) {
      const tflite::Padding padding_attr =
          std::move(llvm::StringSwitch<tflite::Padding>(padding)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		case AMOVW: /* load/store/move word with sign extension; move 32-bit literals  */
    			opset(AMOVWZ, r0) /* Same as above, but zero extended */
    
    		case AVCLZLSBB:
    			opset(AVCTZLSBB, r0)
    
    		case AADD,
    			AADDIS,
    			AANDCC, /* and. Rb,Rs,Ra; andi. $uimm,Rs,Ra */
    			AANDISCC,
    			AFMOVSX,
    			AFMOVSZ,
    			ALSW,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/eviction_manager_test.go

    		if result := manager.Admit(&lifecycle.PodAdmitAttributes{Pod: pod}); expected[i] != result.Admit {
    			t.Errorf("Admit pod: %v, expected: %v, actual: %v", pod, expected[i], result.Admit)
    		}
    	}
    
    	// move the clock past transition period to ensure that we stop reporting pressure
    	fakeClock.Step(5 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("2Gi", podStats)
    	podKiller.pod = nil // reset state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

          if (flags::Global().more_stack_traces.value()) {
            *graph_def.mutable_debug_info() = graph.BuildDebugInfo();
          }
          session->graph->mu.unlock();
          status->status = session->session->Extend(std::move(graph_def));
          if (!status->status.ok()) {
            // Contract is we always delete input_values[i].
            return false;
          }
          // Note: session->session is not modified if Extend() fails, so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top