Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for concatenation (0.18 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

        return true;
      }
    };
    
    std::unique_ptr<TargetHardwareOperation> CreateBasicOpNoCost() {
      return std::make_unique<NNAPIBasicSupportedOpNoCost>();
    }
    
    // Currently used for these ops:
    // tfl.concatenation / tfl.reshape / tfl.pack
    class NNAPIConcatOp : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override {
        int64_t count;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/errors/join.go

    package errors
    
    import (
    	"unsafe"
    )
    
    // Join returns an error that wraps the given errors.
    // Any nil error values are discarded.
    // Join returns nil if every value in errs is nil.
    // The error formats as the concatenation of the strings obtained
    // by calling the Error method of each element of errs, with a newline
    // between each string.
    //
    // A non-nil error returned by Join implements the Unwrap() []error method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 18:37:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/string_utils.h

      std::vector<char> data_;
      // Offset of the starting index of each string in data buffer.
      std::vector<size_t> offset_;
      // Max length in number of characters that we permit the total
      // buffer containing the concatenation of all added strings to be.
      // For historical reasons this is limited to 32bit length. At this files
      // inception, sizes were represented using 32bit which forced an implicit cap
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // Both are incremented by calling Inc().
    //
    // Basic counters are very cheap. Stack counters are more expensive, as they
    // require parsing the stack. (Stack counters are implemented as basic counters
    // whose names are the concatenation of the name and the stack trace. There is
    // an upper limit on the size of this name, about 4K bytes. If the name is too
    // long the stack will be truncated and "truncated" appended.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/labels.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is a modified concatenation of the files
    // $GOROOT/test/label.go and $GOROOT/test/label1.go.
    
    package labels
    
    var x int
    
    func f0() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	for {
    	}
    L2 /* ERROR "label L2 declared and not used" */ :
    	select {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/cpu_hardware.cc

    };
    std::unique_ptr<TargetHardwareOperation> CreateArithmeticOp() {
      return std::make_unique<CpuArithmeticOp>();
    }
    
    // Currently used for these ops:
    // tfl.concatenation / tfl.reshape / tfl.pack
    class CpuConcatOp : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override {
        float cost = 0.0;
        int64_t count;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                    // We assume that the declaration is not empty.
                    line.startsWith("DEFAULT_JVM_OPTS='") && line.endsWith('\'') -> {
                        ++replacementsCount
                        // Use shell's string concatenation: '...'"..." glues contents of quoted and double-quoted strings together.
                        // The result would be something like DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/foobar.jar\""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    			return true
    		}
    	}
    	return false
    }
    
    // IsNamedType reports whether t is the named type with the given package path
    // and one of the given names.
    // This function avoids allocating the concatenation of "pkg.Name",
    // which is important for the performance of syntax matching.
    func IsNamedType(t types.Type, pkgPath string, names ...string) bool {
    	n, ok := aliases.Unalias(t).(*types.Named)
    	if !ok {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // Programs using telemetry should call Open exactly once.
    func Open() {
    	counter.Open()
    }
    
    // CountFlags creates a counter for every flag that is set
    // and increments the counter. The name of the counter is
    // the concatenation of prefix and the flag name.
    //
    //	For instance, CountFlags("gopls/flag:", *flag.CommandLine)
    func CountFlags(prefix string, fs flag.FlagSet) {
    	fs.Visit(func(f *flag.Flag) {
    		New(prefix + f.Name).Inc()
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

        }
        return true;
      }
    };
    std::unique_ptr<TargetHardwareOperation> CreateArithmeticOp() {
      return std::make_unique<GpuArithmeticOp>();
    }
    
    // Currently used for these ops:
    // tfl.concatenation / tfl.reshape
    class GpuConcatOp : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override {
        int64_t count;
        if (ArithmeticCountUtilHelper::GetInputTensorTotalSize(op, &count))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top