Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for int32Ptr (0.41 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				},
    				RegistryPullQPS:                           utilpointer.Int32Ptr(5),
    				RegistryBurst:                             10,
    				EventRecordQPS:                            utilpointer.Int32Ptr(50),
    				EventBurst:                                100,
    				EnableDebuggingHandlers:                   utilpointer.Bool(true),
    				HealthzPort:                               utilpointer.Int32Ptr(10248),
    				HealthzBindAddress:                        "127.0.0.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Port:     pointer.Int32Ptr(int32(3456)),
    				},
    				{
    					Name:     pointer.StringPtr("udp-example"),
    					Protocol: protoPtr(v1.ProtocolUDP),
    					Port:     pointer.Int32Ptr(int32(161)),
    				},
    				{
    					Name:     pointer.StringPtr("tcp-example"),
    					Protocol: protoPtr(v1.ProtocolTCP),
    					Port:     pointer.Int32Ptr(int32(80)),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritedec64.go

    	// result: (Int64Make (Load <typ.Int32> (OffPtr <typ.Int32Ptr> [4] ptr) mem) (Load <typ.UInt32> ptr mem))
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is64BitInt(t) && !config.BigEndian && t.IsSigned()) {
    			break
    		}
    		v.reset(OpInt64Make)
    		v0 := b.NewValue0(v.Pos, OpLoad, typ.Int32)
    		v1 := b.NewValue0(v.Pos, OpOffPtr, typ.Int32Ptr)
    		v1.AuxInt = int64ToAuxInt(4)
    		v1.AddArg(ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        int64_t revised_new_axis_mask = 0;
    
        SmallVector<int32_t, 4> padded_begin;
        SmallVector<int32_t, 4> padded_end;
        SmallVector<int32_t, 4> padded_stride;
    
        // Before the ellipsis.
        int index = 0;
        int new_index = 0;
        while (((ellipsis_mask >> index) & 1) == 0) {
          padded_begin.push_back(begin_dense_elem_attr.getValues<int32_t>()[index]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    StatusOr<absl::flat_hash_set<const tflite::OperatorT*>> PruneSubgraph(
        const tflite::SubGraphT& subgraph, ArrayRef<int32_t> input_indices,
        ArrayRef<int32_t> output_indices) {
      // Create a map from tensor index to defining op.
      absl::flat_hash_map<int32_t, const tflite::OperatorT*> defining_op;
      for (const auto& op : subgraph.operators) {
        for (int32_t output : op->outputs) {
          if (!llvm::is_contained(input_indices, output)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      const float* bias_float_buffer =
          reinterpret_cast<const float*>(original_bias_buffer->data()->data());
    
      if (tensor_type_ == TensorType_INT8) {
        int32_t* bias_values = reinterpret_cast<int32_t*>(bias_buffer->data.data());
        for (size_t i = 0; i < out_channel_size; i++) {
          auto dequantized_value = bias_values[i] * bias_scales[i];
          EXPECT_THAT(dequantized_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        int input_rank = input_shape.size();
        SmallVector<int32_t, 4> shift_map(input_rank, 0);
        for (int i = 0; i < axis_attr.getNumElements(); ++i) {
          int32_t axis_i = axis_attr.getValues<int32_t>()[i];
          if (axis_i < 0) axis_i += input_rank;
          int32_t shift_i = shift_attr.getValues<int32_t>()[i];
          shift_map[axis_i] += shift_i;
        }
    
        SmallVector<int32_t, 4> adjusted_axis;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        lines.push_back("================================");
        for (StringRef op_name : func_count_map.keys()) {
          const int32_t quantized_count = func_count_map[op_name].num_quant;
          const int32_t total_count =
              quantized_count + func_count_map[op_name].num_float;
          lines.push_back(absl::StrFormat("%s %d/%d",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

          EXPECT_EQ(0, TF_NumDims(out));  // scalar
          ASSERT_EQ(sizeof(int32_t), TF_TensorByteSize(out));
          int32_t* output_contents = static_cast<int32_t*>(TF_TensorData(out));
          EXPECT_EQ(expected_results[i], *output_contents);
        }
      }
    
      void CompareInt32Tensor(const std::vector<int32_t>& expected, TF_Tensor* t) {
        int32_t* data = static_cast<int32_t*>(TF_TensorData(t));
        size_t size = TF_TensorByteSize(t);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis_test.cc

    InductionVarInfo CreateInductionVariable(const Scope& root,
                                             const string& prefix,
                                             const string& frame_name,
                                             int32_t init) {
      return CreateInductionVariable(
          root, prefix, frame_name,
          ops::Const(root.WithOpName(prefix + "/init"), init));
    }
    
    // Creates an induction variable with the following structure:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top