Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 280 for Canonicalize (2.74 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

        tbl_outs = [
            (
                ["-gen-rewriters"],
                "generated_canonicalize.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "canonicalize.td",
        deps = [
            ":rewrite_util_td_files",
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_ops_td_files",
        ],
    )
    
    gentbl_cc_library(
        name = "tensorflow_reduce_patterns_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    // (unlike the rest), since this is the primary use case for such ops and
    // verification of shapes and broadcasts is desired.
    // RUN: tf-opt "-xla-legalize-tf=legalize-chlo=true" -canonicalize %s | FileCheck %s
    // RUN: tf-opt "-xla-legalize-tf=legalize-chlo=false" %s | FileCheck --check-prefix CHLO %s
    
    //===----------------------------------------------------------------------===//
    // Binary op legalizations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          if (failed(result)) return WalkResult::interrupt();
          return WalkResult::advance();
        });
      });
    
      if (walk_result.wasInterrupted()) return signalPassFailure();
    
      // Clean up and canonicalize to remove dead local variables as some local
      // variables might be dead after hoisting resource loads/stores.
      if (failed(TF::CleanupAndCanonicalizeForResourceOpLifting(module)))
        return signalPassFailure();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/volume/util/subpath/subpath_linux.go

    			}
    		}
    	}()
    
    	kubeletPid := os.Getpid()
    	mountSource := fmt.Sprintf("/proc/%d/fd/%v", kubeletPid, fd)
    
    	// Do the bind mount
    	options := []string{"bind"}
    	mountFlags := []string{"--no-canonicalize"}
    	klog.V(5).Infof("bind mounting %q at %q", mountSource, bindPathTarget)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  5. build/common.sh

    unset CDPATH
    
    USER_ID=$(id -u)
    GROUP_ID=$(id -g)
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    IFS=" " read -r -a DOCKER <<< "docker ${DOCKER_OPTS}"
    DOCKER_HOST=${DOCKER_HOST:-""}
    GOPROXY=${GOPROXY:-""}
    
    # This will canonicalize the path
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd -P)
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Constants
    readonly KUBE_BUILD_IMAGE_REPO=kube-build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    type Header map[string][]string
    
    // Get gets the first value associated with the given key.
    // It is case insensitive; CanonicalMIMEHeaderKey is used
    // to canonicalize the provided key.
    // If there are no values associated with the key, Get returns "".
    // To access multiple values of a key, or to use non-canonical keys,
    // access the map directly.
    func (h Header) Get(key string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	i int64Amount
    	// d is the quantity in inf.Dec form if d.Dec != nil
    	d infDecAmount
    	// s is the generated value of this quantity to avoid recalculation
    	s string
    
    	// Change Format at will. See the comment for Canonicalize for
    	// more details.
    	Format
    }
    
    // CanonicalValue allows a quantity amount to be converted to a string.
    type CanonicalValue interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

        auto output_tensor_type = output_type.dyn_cast<TensorType>();
        if (!input_tensor_type || !output_tensor_type) {
          return failure();
        }
    
        // Canonicalize two tfr.cast pairs with different element type to
        // two tfr.casts with the same element type followed by a tf.Cast.
        if ((input_tensor_type.getElementType() !=
             output_tensor_type.getElementType()) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.cc

          has_ref_vars_(has_ref_vars) {}
    
    void XlaLocalLaunchBase::ComputeAsync(OpKernelContext* ctx, DoneCallback done) {
      VLOG(1) << "XlaLocalLaunchOpBase::Compute "
              << Canonicalize(function_.name(), AttrSlice(&function_.attr()));
      xla_launch_counter->GetCell(platform_info_.device_type().type_string())
          ->IncrementBy(1);
    
      std::vector<const Tensor*> inputs = InputsFromContext(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-quant.mlir

    // RUN: tf-opt -convert-tf-quant-types -quant-convert-tf-quant-ops-to-mhlo -canonicalize "-xla-legalize-tf=legalize-chlo=false" -split-input-file %s | FILECHECK_OPTS="" FileCheck %s
    
    
    //===----------------------------------------------------------------------===//
    // tf.UniformQuantizedDotHybrid legalization
    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @quantized_matmul_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 01:25:29 UTC 2024
    - 37.3K bytes
    - Viewed (0)
Back to top