Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 168 for Concatenates (0.17 sec)

  1. src/runtime/mgcwork.go

    // disabling preemption (systemstack or acquirem).
    type gcWork struct {
    	// wbuf1 and wbuf2 are the primary and secondary work buffers.
    	//
    	// This can be thought of as a stack of both work buffers'
    	// pointers concatenated. When we pop the last pointer, we
    	// shift the stack up by one work buffer by bringing in a new
    	// full buffer and discarding an empty one. When we fill both
    	// buffers, we shift the stack down by one work buffer by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        return %6 : tensor<2x2xf32>
      }
    
      // CHECK-LABEL: func @concat_v2
      func.func @concat_v2(%arg0: tensor<3x3xf32>, %arg1: tensor<3x3xf32>) -> tensor<6x3xf32> {
        // CHECK: "mhlo.concatenate"({{.*}}) <{dimension = 0 : i64}> : (tensor<3x3xf32>, tensor<3x3xf32>) -> tensor<6x3xf32>
        %axis = "tf.Const"() { value = dense<0> : tensor<i64> } : () -> tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. pkg/collateral/control.go

    		outFile, err := os.Create(c.OutputDir + "/_" + root.Name())
    		if err != nil {
    			return fmt.Errorf("unable to create zsh completion file: %v", err)
    		}
    		defer func() { _ = outFile.Close() }()
    
    		// Concatenate the head, initialization, generated bash, and tail to the file
    		if _, err = outFile.WriteString(zshInitialization); err != nil {
    			return fmt.Errorf("unable to output zsh initialization: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/net/textproto/reader_test.go

    func TestReadMIMEHeaderTrimContinued(t *testing.T) {
    	// In this header, \n and \r\n terminated lines are mixed on purpose.
    	// We expect each line to be trimmed (prefix and suffix) before being concatenated.
    	// Keep the spaces as they are.
    	r := reader("" + // for code formatting purpose.
    		"a:\n" +
    		" 0 \r\n" +
    		"b:1 \t\r\n" +
    		"c: 2\r\n" +
    		" 3\t\n" +
    		"  \t 4  \r\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

      // 3. filter any non-tensor, non-variable inputs:
      // https://github.com/tensorflow/tensorflow/blob/1c064ab76064c58e54261b805027474885a1534d/tensorflow/python/eager/function.py#L1840-L1841
      // 4. concatenate any captured inputs:
      // https://github.com/tensorflow/tensorflow/blob/1c064ab76064c58e54261b805027474885a1534d/tensorflow/python/eager/function.py#L1912
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

        tf_device::ParallelExecuteOp* new_parallel_execute,
        int* cluster_idx) {
      const int num_cores_per_replica = tpu_devices.front().size();
      // parallel_execute op returns concatenated list of return values of
      // all its regions.
      //
      // TODO(b/149102702): Correctly map inputs to parallel_execute op via
      // identifying xla_sharding op in the cluster_func function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. docs/bn/docs/python-types.md

    ফাংশনটি নিম্নলিখিত কাজ করে:
    
    * `first_name` এবং `last_name` নেয়।
    * প্রতিটির প্রথম অক্ষরকে `title()` ব্যবহার করে বড় হাতের অক্ষরে রূপান্তর করে।
    * তাদেরকে মাঝখানে একটি স্পেস দিয়ে <abbr title="একটার পরে একটা একত্রিত করা">concatenate</abbr> করে।
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### এটি সম্পাদনা করুন
    
    এটি একটি খুব সাধারণ প্রোগ্রাম।
    
    কিন্তু এখন কল্পনা করুন যে আপনি এটি শুরু থেকে লিখছিলেন।
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 15:34:37 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. operator/README.md

    You can see these sources for the compiled-in profiles and charts in the repo under `manifests/`. These profiles and charts are also included in the Istio release tar.
    
    #### Output to dirs
    
    The output of the manifest is concatenated into a single file. To generate a directory hierarchy with subdirectory
    levels representing a child dependency, use the following command:
    
    ```bash
    istioctl manifest generate -o istio_manifests
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    }
    
    var errUnrecognized = fmt.Errorf("unrecognized profile format")
    var errMalformed = fmt.Errorf("malformed profile format")
    var errNoData = fmt.Errorf("empty input file")
    var errConcatProfile = fmt.Errorf("concatenated profiles detected")
    
    func parseLegacy(data []byte) (*Profile, error) {
    	parsers := []func([]byte) (*Profile, error){
    		parseCPU,
    		parseHeap,
    		parseGoCount, // goroutine, threadcreate
    		parseThread,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/dwarf.go

    			pcdelta := p.Pc - pc
    			lastpc = p.Pc
    			putpclcdelta(ctxt, dctxt, lines, uint64(pcdelta), int64(newLine)-line)
    			line, pc = int64(newLine), p.Pc
    		}
    	}
    
    	// Because these symbols will be concatenated together by the
    	// linker, we need to reset the state machine that controls the
    	// debug symbols. Do this using an end-of-sequence operator.
    	//
    	// Note: at one point in time, Delve did not support multiple end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top