Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 506 for capi (0.04 sec)

  1. tensorflow/c/eager/c_api_debug.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <vector>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/tfe_tensor_debug_info_internal.h"
    #include "tensorflow/c/eager/tfe_tensorhandle_internal.h"
    #include "tensorflow/c/tf_status_internal.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/c/version_script.lds

    VERS_1.0 {
      # Export symbols in c_api.h.
      global:
        *TF_*;
        *TFE_*;
    
      # Hide everything else.
      local:
        *;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 22:26:58 UTC 2017
    - 121 bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // C API for TensorFlow.
    //
    // The API leans towards simplicity and uniformity instead of convenience
    // since most usage will be by language specific wrappers.
    //
    // Conventions:
    // * We use the prefix TF_ for everything in the API.
    // * Objects are always passed around as pointers to opaque structs
    //   and these structs are allocated/deallocated via the API.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/parallel_device/parallel_device.h

    #ifndef TENSORFLOW_C_EAGER_PARALLEL_DEVICE_PARALLEL_DEVICE_H_
    #define TENSORFLOW_C_EAGER_PARALLEL_DEVICE_PARALLEL_DEVICE_H_
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/c_api_experimental.h"
    
    namespace tensorflow {
    namespace parallel_device {
    
    // Allocate a parallel device named `device_name` which forwards operations to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 04 21:49:16 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. src/syscall/exec_linux.go

    	effective   uint32
    	permitted   uint32
    	inheritable uint32
    }
    type caps struct {
    	hdr  capHeader
    	data [2]capData
    }
    
    // See CAP_TO_INDEX in linux/capability.h:
    func capToIndex(cap uintptr) uintptr { return cap >> 5 }
    
    // See CAP_TO_MASK in linux/capability.h:
    func capToMask(cap uintptr) uint32 { return 1 << uint(cap&31) }
    
    // cloneArgs holds arguments for clone3 Linux syscall.
    type cloneArgs struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. operator/pkg/helm/helm.go

    		return "", fmt.Errorf("failed to unmarshal values: %v", err)
    	}
    
    	caps := *chartutil.DefaultCapabilities
    
    	// overwrite helm default capabilities
    	operatorVersion, _ := chartutil.ParseKubeVersion("1." + strconv.Itoa(k8sversion.MinK8SVersion) + ".0")
    	caps.KubeVersion = *operatorVersion
    
    	if version != nil {
    		caps.KubeVersion = chartutil.KubeVersion{
    			Version: version.GitVersion,
    			Major:   version.Major,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/next_pluggable_device/c_api.h

    #include "tensorflow/c/tf_buffer.h"
    #include "tensorflow/c/tf_status.h"
    #include "xla/pjrt/c/pjrt_c_api.h"
    
    // --------------------------------------------------------------------------
    // C API for device. The API is under active development and eventually
    // should allow registering a plugin device with TensorFlow.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. ci/official/wheel_test/README.md

    description will be provided once it's integrated into presubmit.
    
    ### test_import_api_packages
    
    This Python test verifies whether the API v2 packages can be imported from the
    current build. It utilizes the `_api/v2/api_packages.txt` list of packages from
    the local wheel file specified in the `requirements_lock_<python_version>.txt`.
    
    Packages are imported one by one in alphabetical order during runtime.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/runtime/vlrt.go

    }
    
    //go:nosplit
    func slowdodiv(n, d uint64) (q, r uint64) {
    	if d == 0 {
    		panicdivide()
    	}
    
    	// Set up the divisor and find the number of iterations needed.
    	capn := n
    	if n >= sign64 {
    		capn = sign64
    	}
    	i := 0
    	for d < capn {
    		d <<= 1
    		i++
    	}
    
    	for ; i >= 0; i-- {
    		q <<= 1
    		if n >= d {
    			n -= d
    			q |= 1
    		}
    		d >>= 1
    	}
    	return q, n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/api.go

    Bryan C. Mills <******@****.***> 1659164072 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top