Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 168 for Concatenates (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go

    		}
    	}
    }
    
    func getFromEtcd(keys clientv3.KV, prefix, localPath string) (*metaObject, error) {
    	internalPath := path.Join("/", prefix, localPath) // TODO: Double check, should we concatenate two prefixes?
    	response, err := keys.Get(context.Background(), internalPath)
    	if err != nil {
    		return nil, err
    	}
    	if response.More || response.Count != 1 || len(response.Kvs) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 11:58:05 UTC 2022
    - 15.4K 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. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            }
        }
    
        /**
         * Resolves the given expression to zero or more expressions that have been macro expanded and token concatenated.
         */
        private Collection<Expression> resolveExpressionToTokens(MacroLookup visibleMacros, Expression expression, ExpressionVisitor visitor, TokenLookup tokenLookup) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/README

    	$ WORK=/tmp/cmd-go-test-745953508/script-install_rebuild_gopath
    	$ cd $WORK/d1/src/p1
    	$ cat p1.go
    	package p1
    	import "p2"
    	func F() { p2.F() }
    	$
    
    The available commands are:
    cat files...
    	concatenate files and print to the script's stdout buffer
    
    
    cc args...
    	run the platform C compiler
    
    
    cd dir
    	change the working directory
    
    
    chmod perm paths...
    	change file mode bits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top