Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 297 for Builtin (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Arg {n} [off]) && is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin") =>
      (Int64Make
        (Arg <typ.Int32> {n} [off+4])
        (Arg <typ.UInt32> {n} [off]))
    (Arg {n} [off]) && is64BitInt(v.Type) && !config.BigEndian && !v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")  =>
      (Int64Make
        (Arg <typ.UInt32> {n} [off+4])
        (Arg <typ.UInt32> {n} [off]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginIdExtensions.kt

        pluginDependencySpecQualifiedName: String,
    ): Sequence<String> {
        return pluginExtensionsFrom(jars)
            .map { (memberName, pluginId, implementationClass) ->
                """
                /**
                 * The builtin Gradle plugin implemented by [$implementationClass].
                 *
                 * @see $implementationClass
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu-multiple-while-body-func.mlir

    // Since it is possible that this warning may become an error in the future,
    // only check the message content here.
    
    // CHECK-NOT: expected control flow function {{.*}} to have exactly 1 use, found 2
    
    "builtin.module"() ({
      "func.func"() ({
      ^bb0(%arg0: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/mlrt/inline.mlir

    // RUN: tf-tfrt-opt -split-input-file -pass-pipeline='builtin.module(tf-to-mlrt, inline)' %s | FileCheck %s -dump-input=fail
    
    // Test generated tf_mlrt while body and predicate is inlined.
    
    func.func @then(%x: tensor<i1>, %y: tensor<i1>, %z: tensor<i32>) -> tensor<i1> {
      return %x: tensor<i1>
    }
    
    func.func @else(%x: tensor<i1>, %y: tensor<i1>, %z: tensor<i32>) -> tensor<i1> {
      return %y: tensor<i1>
    }
    
    // CHECK-LABEL: func @while_cond_if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 01:01:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/type.go

    type exprFlags uint16
    
    func (f exprFlags) IsVoid() bool          { return f&1 != 0 }
    func (f exprFlags) IsType() bool          { return f&2 != 0 }
    func (f exprFlags) IsBuiltin() bool       { return f&4 != 0 } // a language builtin that resembles a function call, e.g., "make, append, new"
    func (f exprFlags) IsValue() bool         { return f&8 != 0 }
    func (f exprFlags) IsNil() bool           { return f&16 != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

      // CHECK: "tf._TPUCompileMlir"{{.*}}B
      // CHECK: "tf.OpA"([[launch_key]]#1)
      %0:4 = "tf_device.replicate"() ({
        %a = builtin.unrealized_conversion_cast to tensor<!tf_type.string>
        %b = builtin.unrealized_conversion_cast to tensor<!tf_type.string>
        %c = builtin.unrealized_conversion_cast to tensor<!tf_type.string>
        %0:2 = "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  7. src/go/types/builtins_test.go

    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for %s", name)
    		}
    	}
    	for _, name := range Unsafe.Scope().Names() {
    		if _, ok := Unsafe.Scope().Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for unsafe.%s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins_test.go

    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for %s", name)
    		}
    	}
    	for _, name := range Unsafe.Scope().Names() {
    		if _, ok := Unsafe.Scope().Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for unsafe.%s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/switchn.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    "builtin.module"() ({
      "func.func"() ({
        "tf_executor.graph"() ({
          %outputs, %control = "tf_executor.island"() ({
            %0 = "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
            "tf_executor.yield"(%0) : (tensor<i32>) -> ()
          }) : () -> (tensor<i32>, !tf_executor.control)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/completion.go

    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__kubeadm_compopt" ]; then
    			echo builtin
    			return 0
    		fi
    	fi
    	type "$@"
    }
    
    __kubeadm_compgen() {
    	local completions w
    	completions=( $(compgen "$@") ) || return $?
    
    	# filter by given word as prefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top