Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 468 for movbe (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      }
    
      xla::DeviceAssignmentProto device_assignment_proto;
      device_assignment.Serialize(&device_assignment_proto);
    
      return std::pair<TPUDevicesAndHosts, xla::DeviceAssignmentProto>(
          std::move(devices_and_hosts), std::move(device_assignment_proto));
    }
    
    mlir::LogicalResult GetTopology(mlir::tf_device::ClusterOp cluster,
                                    std::string& topology) {
      mlir::StringAttr topology_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/optimize.cc

    void OptimizeIntGraph::runOnOperation() {
      RewritePatternSet patterns(&getContext());
      populateWithGenerated(patterns);
      auto func = getOperation();
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateOptimizeIntGraphPass() {
      return std::make_unique<OptimizeIntGraph>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 24 02:26:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/register.go

    // ConfigSchemeGroupVersion is group version used to register these objects
    var ConfigSchemeGroupVersion = schema.GroupVersion{Group: ConfigGroupName, Version: "v1beta1"}
    
    var (
    	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
    	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
    	SchemeBuilder      runtime.SchemeBuilder
    	localSchemeBuilder = &SchemeBuilder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/c/tf_status_helper.h

        return;                                                              \
      }                                                                      \
      lhs = std::move(*statusor)
    
    #define TF_STATUS_RETURN_IF_ERROR(rexpr, c_status)                         \
      _TF_STATUS_RETURN_IF_ERROR_IMPL(_TF_STATUS_CONCAT(_status, __COUNTER__), \
                                      rexpr, c_status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/compress/bzip2/bzip2.go

    	// tree indexes telling us which tree to use for each 50 symbol block.
    	numSelectors := br.ReadBits(15)
    	treeIndexes := make([]uint8, numSelectors)
    
    	// The tree indexes are move-to-front transformed and stored as unary
    	// numbers.
    	mtfTreeDecoder := newMTFDecoderWithRange(numHuffmanTrees)
    	for i := range treeIndexes {
    		c := 0
    		for {
    			inc := br.ReadBits(1)
    			if inc == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

     public:
      explicit MlirFunction(std::unique_ptr<MLIRContext> context,
                            OwningOpRef<mlir::ModuleOp> module, func::FuncOp func)
          : AbstractFunction(kMlir),
            context_(std::move(context)),
            module_(std::move(module)),
            func_(func) {}
    
      Status GetFunctionDef(const tensorflow::FunctionDef** f) override;
    
      absl::StatusOr<tensorflow::core::RefCountPtr<tensorflow::FunctionRecord>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForDeclaration.kt

            get() = builder.rootSession
    
        override fun isEmpty(): Boolean = withValidityAssertion {
            // isEmpty check needs to be performed on an analyzed declaration
            // (annotations can move to a nested declaration after code analysis).
            // See 'FirTypeResolveTransformer.moveOrDeleteIrrelevantAnnotations()'
            return backingAnnotations.isEmpty()
        }
    
        override val size: Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/main/SimpleAnalysisEvaluator.kt

        val stepRunner = AnalysisStepRunner()
    
        private
        val conventionStorage = ConventionStorage()
    
        private
        val analysisContext = AnalysisStepContext(
            supportedDocumentChecks = emptyList(), // TODO: move the settings blocks check here,
            supportedResolutionResultHandlers = listOf(ConventionDefinitionCollector(conventionStorage), ConventionApplicationHandler(conventionStorage))
        )
    
        fun evaluate(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

      if (!file) {
        return absl::InvalidArgumentError(
            absl::StrCat("Failed to open input file: ", error_message));
      }
    
      if (input_mlir) {
        source_mgr->AddNewSourceBuffer(std::move(file), llvm::SMLoc());
        return OwningOpRef<ModuleOp>(
            mlir::parseSourceFile<mlir::ModuleOp>(*source_mgr, context));
      }
    
      // Register extra TF ops passed as OpDef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse move(final ListForm form) {
            saveToken();
            return doMove(form, 0);
        }
    
        protected HtmlResponse doMove(final ListForm form, final int move) {
            form.initialize();
            Integer pageNumber = form.pn;
            if (pageNumber != null && pageNumber > 0) {
                pageNumber = pageNumber + move;
                if (pageNumber < 1) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top