Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for int32Ptr (0.15 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    			SideEffects:    &noSideEffect,
    			TimeoutSeconds: int32Ptr(1),
    		}, {
    			Name:           "webhook2.k8s.io",
    			ClientConfig:   validClientConfig,
    			SideEffects:    &noSideEffect,
    			TimeoutSeconds: int32Ptr(15),
    		}, {
    			Name:           "webhook3.k8s.io",
    			ClientConfig:   validClientConfig,
    			SideEffects:    &noSideEffect,
    			TimeoutSeconds: int32Ptr(30),
    		},
    		}, true),
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    					Name:     utilpointer.StringPtr("http"),
    					Port:     utilpointer.Int32Ptr(80),
    					Protocol: &tcpProtocol,
    				}, {
    					Name:     utilpointer.StringPtr("https"),
    					Port:     utilpointer.Int32Ptr(443),
    					Protocol: &tcpProtocol,
    				}, {
    					Name:     utilpointer.StringPtr("extra1"),
    					Port:     utilpointer.Int32Ptr(3000),
    					Protocol: &tcpProtocol,
    				}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mlir::TF::IfOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      // Build while operator where cond & body are regions.
      std::optional<BufferOffset<tflite::Operator>> BuildWhileOperator(
          mlir::TFL::WhileOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      // Build call once operator.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      SmallVector<int64_t> InferPaddedTensorShape(
          const ArrayRef<int64_t> tensor_shape,
          const ArrayRef<int32_t> tfl_pad_values) const {
        SmallVector<int64_t> padded_shape(tensor_shape.begin(), tensor_shape.end());
        for (int i = 0; i < padded_shape.size(); ++i) {
          // Left padding + right padding.
          int32_t padding = tfl_pad_values[i * 2] + tfl_pad_values[i * 2 + 1];
          padded_shape[i] += padding;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // Add reshape op to be aligned with the input restriction with
        // TFL::resize_nearest_neighor op.
        const int32_t image_size = static_cast<int32_t>(params_type.getShape()[0]);
        const int32_t feature_size =
            static_cast<int32_t>(params_type.getShape()[3]);
        SmallVector<int32_t, 4> reshape_shape(
            {1, image_size, image_size, feature_size});
        SmallVector<int64_t, 4> reshape_shape_in_int64(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      llvm::SmallVector<int32_t, 4> flattened_out_segids =
          llvm::SmallVector<int32_t, 4>(operand_rank, static_cast<int32_t>(-1));
      for (int64_t i : dot_dimensions_info.out_dimensions().AxesArray()) {
        flattened_out_segids[i] = 0;
      }
      llvm::SmallVector<int32_t, 4> flattened_contracting_segids =
          llvm::SmallVector<int32_t, 4>(operand_rank, static_cast<int32_t>(-1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      int32_t concat_dim = (*concat_dim_attr.getValues<int32_t>().begin());
      if (concat_dim < 0) concat_dim += num_dims;
      if (concat_dim >= num_dims || concat_dim < 0) return failure();
    
      // Check all elements besides at concat_dim match across all shape tensors.
      SmallVector<int32_t, 4> shape0;
      shape0.reserve(num_dims);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        MutableArrayRef<int64_t> input_shape, ArrayRef<int64_t> sparse_begin,
        ArrayRef<int64_t> sparse_end, ArrayRef<int64_t> sparse_strides,
        int32_t begin_mask, int32_t end_mask, int32_t ellipsis_mask,
        int32_t new_axis_mask, int32_t shrink_axis_mask,
        SmallVectorImpl<int64_t> *begin, SmallVectorImpl<int64_t> *end,
        SmallVectorImpl<int64_t> *stride) {
      int64_t num_sparse_indices = sparse_begin.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      absl::flat_hash_map<int32_t, int32_t> permutation_map;
    
      for (size_t before_dim_idx = 0, after_dim_idx = 0;
           before_dim_idx < input_shape.size(); ++before_dim_idx) {
        if (input_shape[before_dim_idx] == 1) {
          continue;
        }
        permutation_map.insert({before_dim_idx, after_dim_idx++});
      }
    
      SmallVector<int32_t> squeezed_permutation;
      DenseElementsAttr input_perm_const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	// cond: !config.BigEndian
    	// result: (LoweredAtomicOr (AND <typ.UInt32Ptr> (MOVWconst [^3]) ptr) (SLL <typ.UInt32> (ZeroExt8to32 val) (SLLconst <typ.UInt32> [3] (ANDconst <typ.UInt32> [3] ptr))) mem)
    	for {
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(!config.BigEndian) {
    			break
    		}
    		v.reset(OpMIPSLoweredAtomicOr)
    		v0 := b.NewValue0(v.Pos, OpMIPSAND, typ.UInt32Ptr)
    		v1 := b.NewValue0(v.Pos, OpMIPSMOVWconst, typ.UInt32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
Back to top