Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for fadds (0.12 sec)

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

    (FNEGS  (FNMULS x y)) => (FMULS  x y)
    (FNEGD  (FNMULD x y)) => (FMULD  x y)
    (FNMULS (FNEGS  x) y) => (FMULS  x y)
    (FNMULD (FNEGD  x) y) => (FMULD  x y)
    
    (FADDS a (FMULS  x y)) && a.Block.Func.useFMA(v) => (FMADDS  a x y)
    (FADDD a (FMULD  x y)) && a.Block.Func.useFMA(v) => (FMADDD  a x y)
    (FSUBS a (FMULS  x y)) && a.Block.Func.useFMA(v) => (FMSUBS  a x y)
    (FSUBD a (FMULD  x y)) && a.Block.Func.useFMA(v) => (FMSUBD  a x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueRISCV64_OpRISCV64FADDS(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (FADDS a (FMULS x y))
    	// cond: a.Block.Func.useFMA(v)
    	// result: (FMADDS x y a)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			a := v_0
    			if v_1.Op != OpRISCV64FMULS {
    				continue
    			}
    			y := v_1.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	{ASDIV, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{ASDIV, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    
    	{AFADDS, C_FREG, C_NONE, C_NONE, C_FREG, C_NONE, 54, 4, 0, 0, 0},
    	{AFADDS, C_FREG, C_FREG, C_NONE, C_FREG, C_NONE, 54, 4, 0, 0, 0},
    	{AFMSUBD, C_FREG, C_FREG, C_FREG, C_FREG, C_NONE, 15, 4, 0, 0, 0},
    	{AFCMPS, C_FREG, C_FREG, C_NONE, C_NONE, C_NONE, 56, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status PrepareConvert(const Graph& graph,
                            std::unique_ptr<GraphDef> graph_def = nullptr);
    
      // Converts the prepared graph to a Function and adds it to the module. A set
      // of nodes from the graph are given to converted to the arguments and returns
      // of the function.
      Status Convert(llvm::StringRef func_name, mlir::FunctionType func_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // Tidy makes sure go.mod matches the source code in the module.
    // It adds any missing modules necessary to build the current module's
    // packages and dependencies, and it removes unused modules that
    // don't provide any relevant packages. It also adds any missing entries
    // to go.sum and removes any unnecessary ones.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	pool.ResizeWorkers(workers, 0)
    	pool.ResizeFailedWorkers(failedWorkers)
    	go pool.resyncer.PersistToDisk(ctx, o)
    	go pool.processMRF()
    	go pool.persistMRF()
    	return pool
    }
    
    // AddMRFWorker adds a pending/failed replication worker to handle requests that could not be queued
    // to the other workers
    func (p *ReplicationPool) AddMRFWorker() {
    	for {
    		select {
    		case <-p.ctx.Done():
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	// comment at the top of the file for details.
    	wakep()
    }
    
    // injectglist adds each runnable G on the list to some run queue,
    // and clears glist. If there is no current P, they are added to the
    // global queue, and up to npidle M's are started to run them.
    // Otherwise, for each idle P, this adds a G to the global queue
    // and starts an M. Any remaining G's are added to the current P's
    // local run queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        level MLIR module, with function renamings to avoid naming conflicts.
    
        After the outlining, it updates tf.XlaCallModule's module attribute to be
        empty, adds an `_entry_function` attribute referring to the entry function.
        It also adds a `_from_xla_call_module: true` attribute to each lifted
        StableHLO function.
      }];
    
      // These dialects are needed by stablehlo deserialization.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers_test.go

    			Priority:   &priority,
    		},
    	}
    }
    
    // nodeConditionList is a simple alias to support equality checking independent of order
    type nodeConditionList []v1.NodeConditionType
    
    // Equal adds the ability to check equality between two lists of node conditions.
    func (s1 nodeConditionList) Equal(s2 nodeConditionList) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for _, item := range s1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    		if !fc {
    			ds.Close()
    		}
    	}
    }
    
    // debugGetPut determines whether getConn & putConn calls' stack traces
    // are returned for more verbose crashes.
    const debugGetPut = false
    
    // putConn adds a connection to the db's free pool.
    // err is optionally the last error that occurred on this connection.
    func (db *DB) putConn(dc *driverConn, err error, resetSession bool) {
    	if !errors.Is(err, driver.ErrBadConn) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top