Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 821 for bargs (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      %while = "tf.WhileRegion"(%max_size) ({
        // CHECK: ^bb0(%[[BARG0:.*]]: tensor<i32>
        ^bb0(%barg0: tensor<i32>):
         // CHECK: "tf._SomeOp"(%[[BARG0]])
         %pred = "tf._SomeOp"(%barg0) : (tensor<i32>) -> tensor<i1>
        "tf.Yield"(%pred) : (tensor<i1>) -> ()
      }, {
        // CHECK: ^bb0(%[[BARG0:.*]]: tensor<i32>
        ^bb0(%barg0: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

                ^bb1(%barg0: tensor<i32>, %barg1: !tf_ref, %barg2: !tf_ref, %barg3: !tf_ref):
                  %read0 = "tf.ReadVariableOp"(%barg1) : (!tf_ref) -> tensor<f32>
                  %add0 = "tf.AddV2"(%read0, %read0) : (tensor<f32>, tensor<f32>) -> tensor<f32>
                  "tf.AssignVariableOp"(%barg1, %add0) : (!tf_ref, tensor<f32>) -> ()
                  %read1 = "tf.ReadVariableOp"(%barg1) : (!tf_ref) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

              "tf.Yield"(%0) : (tensor<i1>) -> ()
             },{
              ^bb0(%barg0: !tf_res, %barg1: !tf_res, %barg2: !tf_res):
              // expected-remark@below {{Result #0, ID 1 : Unknown}}
              %u0 = "tf._UnknownSideEffectingOp_"() : () -> !tf_res
              "tf.Yield"(%u0, %barg2, %barg1) : (!tf_res, !tf_res, !tf_res) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. src/cmd/internal/sys/args.go

    Daniel Martí <******@****.***> 1610820211 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/assets/templates/args.html

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 451 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    				// add partial list of type arguments, if any
    				if i < len(atargs) {
    					targs = append(targs, atargs[i]...)
    				}
    				// make sure targs and tparams have the same length
    				for len(targs) < len(tparams) {
    					targs = append(targs, nil)
    				}
    				genericArgs = append(genericArgs, i)
    			}
    		}
    	}
    	assert(len(tparams) == len(targs))
    
    	// at the moment we only support implicit instantiations of argument functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. pkg/ctrlz/topics/args.go

    	return "arg"
    }
    
    func (argsTopic) Activate(context fw.TopicContext) {
    	tmpl := assets.ParseTemplate(context.Layout(), "templates/args.html")
    
    	_ = context.HTMLRouter().StrictSlash(true).NewRoute().Path("/").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		fw.RenderHTML(w, tmpl, os.Args)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. internal/s3select/csv/args.go

    }
    
    // IsEmpty - returns whether reader args is empty or not.
    func (args *ReaderArgs) IsEmpty() bool {
    	return !args.unmarshaled
    }
    
    // UnmarshalXML - decodes XML data.
    func (args *ReaderArgs) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error) {
    	args.FileHeaderInfo = none
    	args.RecordDelimiter = defaultRecordDelimiter
    	args.FieldDelimiter = defaultFieldDelimiter
    	args.QuoteCharacter = defaultQuoteCharacter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/context.go

    	h.typ(orig)
    	if len(targs) > 0 {
    		// TODO(rfindley): consider asserting on isGeneric(typ) here, if and when
    		// isGeneric handles *Signature types.
    		h.typeList(targs)
    	}
    
    	return strings.ReplaceAll(buf.String(), " ", "#")
    }
    
    // lookup returns an existing instantiation of orig with targs, if it exists.
    // Otherwise, it returns nil.
    func (ctxt *Context) lookup(h string, orig Type, targs []Type) Type {
    	ctxt.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/installer.go

    }
    
    func (i *installer) Install(c cluster.Cluster, args installArgs) error {
    	kubeConfigFile, err := kubeConfigFileForCluster(c)
    	if err != nil {
    		return err
    	}
    
    	iArgs := &mesh.InstallArgs{
    		InFilenames:   args.Files,
    		Set:           args.Set,
    		ManifestsPath: filepath.Join(testenv.IstioSrc, "manifests"),
    		Revision:      args.Revision,
    	}
    	if i.ctx.Settings().Ambient {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top