From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 47C0FA0C4E; Mon, 8 Nov 2021 20:02:06 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C35EE410E8; Mon, 8 Nov 2021 20:02:05 +0100 (CET) Received: from mail-pf1-f171.google.com (mail-pf1-f171.google.com [209.85.210.171]) by mails.dpdk.org (Postfix) with ESMTP id 3FD1240E5A for ; Mon, 8 Nov 2021 20:02:05 +0100 (CET) Received: by mail-pf1-f171.google.com with SMTP id z6so1204089pfe.7 for ; Mon, 08 Nov 2021 11:02:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=RQ1yMHLbgqTaF7MpdGgKAzsGXYnvsnMBEcRAUQrP44M=; b=NlDT849CzJN6BcdQfScmRY9rUoxDAN5tLevBSJlQeDfQYONwacCZKcKYAsUFsXCqbI db17Vu25kz7Cm2yy5iE161BVGWb1czfsvqLWWbswB5R4HqespCtLu6bMuR/EAmyVNu7m 0P1hBfsHhVYwF0SaRrOQcHS33P72bHytaCpRCkqSr2z3Ar4SLtzN8kyczglFhaZPm2ee bd9ujYMBKvdlfIlA9CXy+GqmAMK2Ub617sxH3i4n4rOK+hmPLmjjGpbsPSTF0KOmcaiz WC3d12thclZ8pRbwU4m0+jcB10hDhkjWRqsX38Zot6/HRTX1z7/Gr0U7Jo1OCtTuiTWp Sllg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=RQ1yMHLbgqTaF7MpdGgKAzsGXYnvsnMBEcRAUQrP44M=; b=VZ+OuxRKaV6SnB/4Muy0onf2Fk6+OS+sn4+pdYMFDUpk5gpxXuzAN1NNEYNjDwugdH huCskS2aJIKToaPI0ax9A4vIsxAsREh767rasG7z+TidfI/OXtE91APfuBF9Y3zfULJH +JcrnK3VBOqejwIhGP6C+RbFA5qHzXHIwh6A/VpAwBpN60s1HvCfCVIqbo065LJDcqcT cs6zFGzdk/ULufjV83p9SdiLHq+LxAL1DI9L6W4pGcszmGshPgvXTmTkcgsHQsk2QkzE lcmjutixJwrJigGP2g59BubwMD2mKupBRAdGvyXxwzgdgn1VvUOUrTPFlh5hfzS3EKJf PfbA== X-Gm-Message-State: AOAM530qkIfG7xaeR4s5+ZLhsaO8dX8etbZ93K3Gm5MvzFqE7u/716WS 29wqW52A0AYSjUmReJIZ92FGCw== X-Google-Smtp-Source: ABdhPJzWAxAJVafRlWPsTFJ47+lH7jG3iSgCOkrZ0xPa+r8jDgzwhi7VEU3bpZZhHJJquAHzdAwpgg== X-Received: by 2002:a05:6a00:1903:b0:47c:34c1:c6b6 with SMTP id y3-20020a056a00190300b0047c34c1c6b6mr1099914pfi.17.1636398124420; Mon, 08 Nov 2021 11:02:04 -0800 (PST) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id z71sm16896434pfc.19.2021.11.08.11.02.03 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 08 Nov 2021 11:02:04 -0800 (PST) Date: Mon, 8 Nov 2021 11:02:01 -0800 From: Stephen Hemminger To: Cc: Message-ID: <20211108110201.1e31df05@hermes.local> In-Reply-To: <20211005224905.13505-1-eagostini@nvidia.com> References: <20211005224905.13505-1-eagostini@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [RFC PATCH] gpu/cuda: introduce CUDA driver X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 5 Oct 2021 22:49:05 +0000 wrote: > From: Elena Agostini > > This is the CUDA implementation of the gpudev library. > Funcitonalities implemented through CUDA Driver API are: > > - Device probe and remove > - Manage device memory allocations > - Register/unregister external CPU memory in the device memory area > > Signed-off-by: Elena Agostini > --- What is the license of the CUDA Driver?