Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for addOne (0.37 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          // for the algorithm to work.
          // (Note: -ffast-math is a superset of -funsafe-math-optimizations.)
          if (std::abs(sum) >= std::abs(addend)) {
            compensation += (sum - new_sum) + addend;
          } else {
            compensation += (addend - new_sum) + sum;
          }
          sum = new_sum;
        }
        result_values.push_back(sum + compensation);
        weights_row_it += input_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    language governing permissions and # limitations under the License. WD=$(dirname "$0") WD=$(cd "$WD"; pwd) set -eux # This script sets up the plain text rendered deployments for addons # See samples/addons/README.md for more information ADDONS="${WD}/../../samples/addons" DASHBOARDS="${WD}/dashboards" mkdir -p "${ADDONS}" TMP=$(mktemp -d) LOKI_VERSION=${LOKI_VERSION:-"4.8.0"} GRAFANA_VERSION=${GRAFANA_VERSION:-"6.61.1"} # Set up kiali { helm3 template kiali-server \ --namespace istio-system \ --version...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			"node1": {medPriorityPodInfo, unschedulablePodInfo},
    		},
    	}
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); diff != "" {
    		t.Errorf("Unexpected diff after adding pods (-want, +got):\n%s", diff)
    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != highPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", highPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return printOneResultOp(getOperation(), p);
        }
      }];
    
      let hasOptions = 1;
    }
    
    def TFL_AddNOp : TFL_Op<"add_n", [
        Commutative,
        Pure,
        SameOperandsAndResultsScale,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>]> {
      let summary = "add_n operator";
    
      let description = [{
        Adds all input tensors element-wise.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

          while (valueReferenceQueue.poll() != null) {}
        }
    
        // recency queue, shared by expiration and eviction
    
        /**
         * Records the relative order in which this read was performed by adding {@code entry} to the
         * recency queue. At write-time, or when the queue is full past the threshold, the queue will be
         * drained and the entries therein processed.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status RemoveBackedges();
    
      // Restores backedges removed during shape inference to the final Function.
      Status AddBackedges();
    
      // Restores a single backedge in the Function by adding a replicated
      // operation before the dst operation.
      Status AddBackedge(mlir::Operation* sink, mlir::Operation* dst,
                         int dst_input);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

          while (valueReferenceQueue.poll() != null) {}
        }
    
        // recency queue, shared by expiration and eviction
    
        /**
         * Records the relative order in which this read was performed by adding {@code entry} to the
         * recency queue. At write-time, or when the queue is full past the threshold, the queue will be
         * drained and the entries therein processed.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation_test.go

    			},
    		},
    		"update not modifying TZ but adding .spec.timeZone should fail": {
    			cronJob:   invalidCronJob,
    			createErr: "cannot use TZ or CRON_TZ in schedule, use timeZone field instead",
    			update: func(cj *batch.CronJob) {
    				cj.Spec.TimeZone = &timeZoneUTC
    			},
    			updateErr: "cannot use both timeZone field and TZ or CRON_TZ in schedule",
    		},
    		"update adding TZ should fail": {
    			cronJob: validCronJob,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	TestmainGo        *[]byte              // content for _testmain.go
    	Embed             map[string][]string  // //go:embed comment mapping
    	OrigImportPath    string               // original import path before adding '_test' suffix
    	PGOProfile        string               // path to PGO profile
    	ForMain           string               // the main package if this package is built specifically for it
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top