Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Concatenates (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	fs.StringVar(&s.ServerCert.CertKey.CertFile, "tls-cert-file", s.ServerCert.CertKey.CertFile, ""+
    		"File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated "+
    		"after server cert). If HTTPS serving is enabled, and --tls-cert-file and "+
    		"--tls-private-key-file are not provided, a self-signed certificate and key "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

      auto concat_result_type = RankedTensorType::get(
          {static_cast<int32_t>(
               dot_dimensions_info.batch_dimensions().AxesArray().size()) +
           2},
          builder.getIntegerType(32));
      // Concatenate the batch dimensions, flattened out dimension and flattened
      // contracting dimension.
      return builder.create<TFL::ConcatenationOp>(
          concat_result_type, flattend_shape_values, /*axis*/ 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    		in.PrintText(&buf)
    	}
    	return buf.String()
    }
    
    // Merge combines the markdown documents (files ending in ".md") in the tree rooted
    // at fs into a single document.
    // The blocks of the documents are concatenated in lexicographic order by filename.
    // Heading with no content are removed.
    // The link keys must be unique, and are combined into a single map.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    				return 0, br.err
    			}
    			if bz2.fileCRC != wantFileCRC {
    				br.err = StructuralError("file checksum mismatch")
    				return 0, br.err
    			}
    
    			// Skip ahead to byte boundary.
    			// Is there a file concatenated to this one?
    			// It would start with BZ.
    			if br.bits%8 != 0 {
    				br.ReadBits(br.bits % 8)
    			}
    			b, err := br.r.ReadByte()
    			if err == io.EOF {
    				br.err = io.EOF
    				bz2.eof = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        // CHECK: %[[Q2:.*]] = "quantfork.qcast"(%[[ARG1]]) {volatile} : (tensor<1x2xf32>) -> tensor<1x2x!quant.uniform<i8:f32, 5.000000e-03:-1>>
        // CHECK: %[[CONCAT:.*]] = stablehlo.concatenate %[[Q1]], %[[Q2]], dim = 0
        // CHECK-SAME: (tensor<3x2x!quant.uniform<i8:f32, 5.000000e-03:-1>>, tensor<1x2x!quant.uniform<i8:f32, 5.000000e-03:-1>>) -> tensor<4x2x!quant.uniform<i8:f32, 5.000000e-03:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            Returns:
              A map of: output key -> output result.
            """
            out = math_ops.matmul(input_tensor, self.filters, name='sample/matmul')
    
            if self.same_scale_op == 'concatenate':
              ones = array_ops.ones_like(out)
              out = array_ops.concat([out, ones], 0)
            elif self.same_scale_op == 'gather':
              out = array_ops.gather(out, indices=[0], axis=0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	s.err = err
    	return s
    }
    
    // Code returns code of the Status.
    func (s *Status) Code() Code {
    	if s == nil {
    		return Success
    	}
    	return s.code
    }
    
    // Message returns a concatenated message on reasons of the Status.
    func (s *Status) Message() string {
    	if s == nil {
    		return ""
    	}
    	return strings.Join(s.Reasons(), ", ")
    }
    
    // SetPlugin sets the given plugin name to s.plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/go/ast/filter.go

    		}
    		// otherwise assume a function instead
    	}
    	return f.Name.Name
    }
    
    // separator is an empty //-style comment that is interspersed between
    // different comment groups when they are concatenated into a single group
    var separator = &Comment{token.NoPos, "//"}
    
    // MergePackageFiles creates a file AST by merging the ASTs of the
    // files belonging to a package. The mode flags control merging behavior.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top