Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for movbe (0.04 sec)

  1. test/codegen/bits.go

    func signextendAndMask8to64(a int8) (s, z uint64) {
    	// ppc64x: "MOVB", "ANDCC\t[$]1015,"
    	s = uint64(a) & 0x3F7
    	// ppc64x: -"MOVB", "ANDCC\t[$]247,"
    	z = uint64(uint8(a)) & 0x3F7
    	return
    }
    
    // Verify zero-extended values are not sign-extended under a bit mask (#61297)
    func zeroextendAndMask8to64(a int8, b int16) (x, y uint64) {
    	// ppc64x: -"MOVB\t", -"ANDCC", "MOVBZ"
    	x = uint64(a) & 0xFF
    	// ppc64x: -"MOVH\t", -"ANDCC", "MOVHZ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.cc

          new stream_executor::CPlatform(
              std::move(platform), params.destroy_platform, std::move(platform_fns),
              params.destroy_platform_fns, std::move(device_fns), std::move(se),
              std::move(timer_fns)));
      TF_CHECK_OK(
          stream_executor::PlatformManager::RegisterPlatform(std::move(cplatform)));
      // TODO(annarev): Return `use_bfc_allocator` value in some way so that it is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. pkg/controller/job/success_policy.go

    			// The current succeeded interval is behind, so we can move to the next.
    			succeededPointer++
    		} else if succeededIndexes[succeededPointer].Last > ruleIndexes[rulePointer].Last {
    			// The current rule interval is behind, so we can move to the next.
    			rulePointer++
    		} else {
    			// Both intervals end at the same position, we can move to the next succeeded, and next rule.
    			succeededPointer++
    			rulePointer++
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

          std::vector<uint8_t>(expected_value.begin(), expected_value.end());
      input_model.buffers.push_back(std::move(model_metadata_buffer));
      auto metadata_t = std::make_unique<tflite::MetadataT>();
      metadata_t->name = tflite::optimize::kTfLiteReducedPrecisionKey;
      metadata_t->buffer = input_model.buffers.size() - 1;
      input_model.metadata.push_back(std::move(metadata_t));
    
      // Sparsify and create output model
      flatbuffers::FlatBufferBuilder output_builder;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_data_optimization.td

    ==============================================================================*/
    
    include "mlir/IR/OpBase.td"
    include "mlir/IR/PatternBase.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // TODO(jpienaar): Move this somewhere general.
    class GetI64ScalarElementsAttr<int value> :
      NativeCodeCall<"DenseElementsAttr::get<int64_t>(RankedTensorType::get({}, $_builder.getIntegerType(64)), " # value # ")">;
    
    def FuseMapAndBatch : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  9. src/runtime/gc_test.go

    			// Passed.
    			return
    		}
    	}
    	t.Fatal("stack did not move")
    }
    
    // This must not be inlined because the point is to force a stack
    // growth check and move the stack.
    //
    //go:noinline
    func moveStackCheck(t *testing.T, new *int, old uintptr) bool {
    	// new should have been updated by the stack move;
    	// old should not have.
    
    	// Capture new's value before doing anything that could
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                          ConvertTFDialectOpToNodeDef(
                              inst, name, /*ignore_unregistered_attrs=*/false));
      UseOriginalFunctionNames(*node_def);
    
      TF_ASSIGN_OR_RETURN(Node * node, graph_->AddNode(std::move(*node_def)));
      DCHECK(node != nullptr);
      nodes_[inst] = node;
      return absl::OkStatus();
    }
    
    bool IsEntryFunctionArg(BlockArgument arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top