Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for platform1 (0.22 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "tensorflow/lite/tools/versioning/op_version.h"
    #include "tensorflow/lite/tools/versioning/runtime_version.h"
    #include "tensorflow/lite/version.h"
    #include "tsl/platform/fingerprint.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/tstring.h"
    
    using absl::StatusOr;
    using llvm::dyn_cast;
    using llvm::formatv;
    using llvm::isa;
    using llvm::StringRef;
    using mlir::Dialect;
    using mlir::ElementsAttr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    fine to redirect there since we opt-out istiod, ztunnel, and istio-cni excludeNamespaces: - kube-system manifests/charts/install-OpenShift.md # Installing Istio on OpenShift using Helm > Note: Be aware of the [platform setup required for OpenShift](https://istio.io/latest/docs/setup/platform-setup/openshift/) when installing Istio. To install with Helm, you must first create the namespace that you wish to install in if the namespace does not exist already. The default namespace used is `istio-system`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		isPIE = true
    	} else if cfg.BuildBuildmode == "default" && platform.DefaultPIE(cfg.BuildContext.GOOS, cfg.BuildContext.GOARCH, cfg.BuildRace) {
    		isPIE = true
    	}
    	// If we are building a PIE, and we are on a system
    	// that does not support PIE with internal linking mode,
    	// then we must use external linking.
    	if isPIE && !platform.InternalLinkPIESupported(cfg.BuildContext.GOOS, cfg.BuildContext.GOARCH) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      case "${HOST_PLATFORM}" in
        Linux|linux)
          HOST_PLATFORM="linux"
          ;;
        *)
          echo "Unknown, unsupported platform: ${HOST_PLATFORM}." >&2
          echo "Supported platform(s): linux." >&2
          echo "Bailing out." >&2
          exit 2
      esac
    
      HOST_ARCH=${HOST_ARCH_OVERRIDE:-"$(uname -m)"}
      case "${HOST_ARCH}" in
        x86_64*|i?86_64*|amd64*)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        func.return %0 : tensor<*xf32>
      }
    
      // CHECK-LABEL: func.func private @main_00(%arg0: tensor<?x1024xf32>) -> tensor<?x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/side_effect_analysis_util.h"
    #include "tensorflow/core/framework/kernel_shape_util.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/util/padding.h"
    #include "tensorflow/core/util/tensor_format.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	KF_FLAG_ALIAS_ONLY                       = 0x80000000
    )
    
    type OsVersionInfoEx struct {
    	osVersionInfoSize uint32
    	MajorVersion      uint32
    	MinorVersion      uint32
    	BuildNumber       uint32
    	PlatformId        uint32
    	CsdVersion        [128]uint16
    	ServicePackMajor  uint16
    	ServicePackMinor  uint16
    	SuiteMask         uint16
    	ProductType       byte
    	_                 byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    			}
    		case objabi.R_DWARFSECREF:
    			if ldr.SymSect(rs) == nil {
    				st.err.Errorf(s, "missing DWARF section for relocation target %s", ldr.SymName(rs))
    			}
    
    			if target.IsExternal() {
    				// On most platforms, the external linker needs to adjust DWARF references
    				// as it combines DWARF sections. However, on Darwin, dsymutil does the
    				// DWARF linking, and it understands how to follow section offsets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/lib/gtl/cleanup.h"
    #include "tensorflow/core/platform/macros.h"
    #include "tensorflow/core/util/dump_graph.h"
    
    namespace tensorflow {
    
    namespace {
    
    // Control return mapping function for outside compilation host graphs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    from tensorflow.python.ops import math_ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.ops import random_ops
    from tensorflow.python.ops import variables
    from tensorflow.python.platform import test
    from tensorflow.python.platform import tf_logging as logging
    from tensorflow.python.saved_model import builder
    from tensorflow.python.saved_model import loader_impl as saved_model_loader
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top