Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for dim_idx (0.12 sec)

  1. tensorflow/compiler/mlir/lite/utils/utils.h

      SmallVector<int32_t> shape;
      shape.reserve(output_shape.size());
    
      bool needs_truncation = true;
      for (size_t dim_idx = 0; dim_idx < output_shape.size(); ++dim_idx) {
        int64_t dim = output_shape[dim_idx];
        if (truncate && needs_truncation && dim == 1) {
          continue;
        } else if (needs_truncation && dim != 1) {
          needs_truncation = false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

      }
    
      const int64_t rank = input_type.getRank();
    
      IntegerAttr dim_int = ExtractSingleElementAsInteger(split_dim_attr);
    
      // "axis" operand could be a i64 tensor. Resolve it here.
      IntegerAttr dim_i32;
      if (failed(ConvertToI32Attr(dim_int, &dim_i32))) return failure();
    
      int dim = dim_i32.getInt();
      if (dim < 0) dim += rank;
    
      const SmallVector<Value, 4>& slice_outputs = SliceOutputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. tensorflow/c/tf_tensor.cc

          dims, num_dims);
    }
    
    int TF_NumDims(const TF_Tensor* t) { return t->tensor->NumDims(); }
    
    int64_t TF_Dim(const TF_Tensor* t, int dim_index) {
      return t->tensor->Dim(dim_index);
    }
    
    size_t TF_TensorByteSize(const TF_Tensor* t) { return t->tensor->ByteSize(); }
    
    void* TF_TensorData(const TF_Tensor* t) { return t->tensor->Data(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. cmd/endpoint.go

    			if err = checkCrossDeviceMounts(eps); err != nil {
    				return nil, setupType, config.ErrInvalidErasureEndpoints(nil).Msg(err.Error())
    			}
    
    			for diskIdx := range eps {
    				eps[diskIdx].SetPoolIndex(poolIdx)
    				eps[diskIdx].SetSetIndex(setIdx)
    				eps[diskIdx].SetDiskIndex(diskIdx)
    			}
    
    			endpoints = append(endpoints, eps...)
    		}
    
    		if len(endpoints) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        tensor_tile_rank--;
      }
    
      std::map<int, int> dimension_to_splits_map;
      for (int dim_index = 0; dim_index < tensor_tile_rank; ++dim_index) {
        if (sharding.tile_assignment_dimensions(dim_index) > 1) {
          dimension_to_splits_map.emplace(
              dim_index, sharding.tile_assignment_dimensions(dim_index));
        }
      }
    
      if (dimension_to_splits_map.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::XlaReduceWindowOp, 2, 3, 4, 5, 6>,
          // $dim_index
          CompileTimeConstantOperand<TF::XlaRemoveDynamicDimensionSizeOp, 1>,
          // $window_dimensions, $window_strides, $padding
          CompileTimeConstantOperand<TF::XlaSelectAndScatterOp, 1, 2, 3>,
          CompileTimeConstantOperand<TF::XlaSetBoundOp, 1>,  // $bound
          // $dim_index
          CompileTimeConstantOperand<TF::XlaSetDynamicDimensionSizeOp, 1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api.cc

      return num_elements;
    }
    
    int64_t TFE_TensorHandleDim(TFE_TensorHandle* h, int dim_index,
                                TF_Status* status) {
      if (h == nullptr) {
        status->status = tensorflow::errors::InvalidArgument("Invalid handle");
        return -1;
      }
    
      int64_t dim = -1;
      status->status = tensorflow::unwrap(h)->Dim(dim_index, &dim);
      return dim;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/array_grad.cc

                            const std::vector<Output>& grad_inputs,
                            std::vector<Output>* grad_outputs,
                            int start_value_index, int end_value_index,
                            int dim_index) {
      if (end_value_index >= op.num_inputs()) {
        return errors::Internal("Invalid input index");
      }
      std::vector<Output> inputs;
      inputs.reserve(end_value_index - start_value_index);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/build_xla_ops_pass.cc

          merged_output = merged_outputs[oidx] = xla_merge_op.output;
        }
    
        Node* dst = e->dst();
        int dst_idx = e->dst_input();
    
        s.graph()->RemoveEdge(e);
        s.graph()->AddEdge(merged_output.node(), merged_output.index(), dst,
                           dst_idx);
      }
    }
    
    // Replaces each control successor of `old_node` to execute whenever either
    // `old_node` or `new_node` is executed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    }
    
    type DmNameList struct {
    	Dev  uint64
    	Next uint32
    }
    
    const (
    	FADV_DONTNEED = 0x4
    	FADV_NOREUSE  = 0x5
    )
    
    type RawSockaddrNFCLLCP struct {
    	Sa_family        uint16
    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint32
    }
    
    type RawSockaddr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top