MESSAGE
DATE | 2016-10-31 |
FROM | Ruben Safir
|
SUBJECT | Subject: [Learn] cudaMallac
|
From learn-bounces-at-nylxs.com Mon Oct 31 14:55:15 2016 Return-Path: X-Original-To: archive-at-mrbrklyn.com Delivered-To: archive-at-mrbrklyn.com Received: from www.mrbrklyn.com (www.mrbrklyn.com [96.57.23.82]) by mrbrklyn.com (Postfix) with ESMTP id 46CD5161312; Mon, 31 Oct 2016 14:55:15 -0400 (EDT) X-Original-To: learn-at-nylxs.com Delivered-To: learn-at-nylxs.com Received: from [10.0.0.62] (flatbush.mrbrklyn.com [10.0.0.62]) by mrbrklyn.com (Postfix) with ESMTP id 2F8B7160E77; Mon, 31 Oct 2016 14:55:13 -0400 (EDT) To: Samir Iabbassen , learn-at-nylxs.com From: Ruben Safir Message-ID: Date: Mon, 31 Oct 2016 14:55:13 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 Subject: [Learn] cudaMallac X-BeenThere: learn-at-nylxs.com X-Mailman-Version: 2.1.17 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: learn-bounces-at-nylxs.com Sender: "Learn"
#include
int main(int argc, char ** argv) { const int ARRAY_SIZE = 64; const int ARRAY_BYTES = sizeof(float) * ARRAY_SIZE; //generate the input array on host float h_in[ARRAY_SIZE]; float h_out[ARRAY_SIZE]; for( int i = 0; i < ARRAY_SIZE; i++) { h_in[i] = float(i); } //declare gpu memory pointers float *d_in *d_out; cudaMalloc(( void **) &d_in, ARRAY_BYTES ); cudaMalloc(( void **) &d_out, ARRAY_BYTES ); }
Why are we using the ADDRESS of a pointer to a float as in &d_in
-- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in the mind of the world - RI Safir 1998 http://www.mrbrklyn.com
DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 http://www.nylxs.com - Leadership Development in Free Software http://www2.mrbrklyn.com/resources - Unpublished Archive http://www.coinhangout.com - coins! http://www.brooklyn-living.com
Being so tracked is for FARM ANIMALS and and extermination camps, but incompatible with living as a free human being. -RI Safir 2013 _______________________________________________ Learn mailing list Learn-at-nylxs.com http://lists.mrbrklyn.com/mailman/listinfo/learn
|
|