Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for tfadd (0.05 sec)

  1. tensorflow/compiler/mlir/lite/tests/lift_tflite_flex_ops.mlir

    // RUN: tf-opt %s -tfl-lift-tflite-flex-ops | FileCheck %s
    
    // CHECK-LABEL: TfAdd
    func.func @TfAdd(%arg0: tensor<4xf64>, %arg1: tensor<4xf64>) -> tensor<4xf64> {
      %0 = "tfl.custom"(%arg0, %arg1) {
        custom_code = "FlexAdd",
        custom_option = #tfl<const_bytes : "0x03416464001412034164641A001A002A070A015412023002320000021B171414042801">
      } : (tensor<4xf64>, tensor<4xf64>) -> tensor<4xf64>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/make_test_graphs.py

    from tensorflow.python.ops import nn_ops
    from tensorflow.python.ops import variable_v1
    from tensorflow.python.ops import variables
    from tensorflow.python.training import saver as saver_lib
    
    FLAGS = None
    
    
    def tfadd(_):
      x = constant_op.constant([1], name='x_const')
      y = constant_op.constant([2], name='y_const')
      math_ops.add(x, y, name='x_y_sum')
    
    
    def tfadd_with_ckpt(out_dir):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf_add.mlir

    A. Unique TensorFlower <******@****.***> 1679093418 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectCollection.java

        }
    
        @Override
        public boolean add(T toAdd) {
            assertMutable("add(T)");
            assertMutableCollectionContents();
            return doAdd(toAdd, eventRegister.getAddActions());
        }
    
        protected <I extends T> boolean add(I toAdd, Action<? super I> notification) {
            assertMutableCollectionContents();
            return doAdd(toAdd, notification);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. cmd/erasure-common.go

    					continue
    				}
    				quorum++
    				if toAdd.Modtime.After(gotFile.Modtime) || len(gotFile.Data) < len(toAdd.Data) {
    					// Pick latest, or largest to avoid possible truncated entries.
    					continue
    				}
    				toAdd = gotFile
    			}
    		}
    		if quorum < readQuorum {
    			toAdd.Exists = false
    			toAdd.Error = errErasureReadQuorum.Error()
    			toAdd.Data = nil
    		}
    		dataArray = append(dataArray, toAdd)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions_test.go

    	tests := []struct {
    		name          string
    		conditions    []metav1.Condition
    		toAdd         metav1.Condition
    		expectChanged bool
    		expected      []metav1.Condition
    	}{
    		{
    			name: "should-add",
    			conditions: []metav1.Condition{
    				{Type: "first"},
    				{Type: "third"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/math/tanh_s390x.s

    	WORD    $0xED005010     //adb %f0,.L28-.L18(%r5)
    	BYTE    $0x00
    	BYTE    $0x1A
    	WORD    $0xA7184330     //lhi %r1,17200
    	FADD    F2, F0
    	MOVW    R2, R10
    	MOVW    R1, R11
    	CMPBGT  R10, R11, L17
    	WORD    $0xED605010     //sdb %f6,.L28-.L18(%r5)
    	BYTE    $0x00
    	BYTE    $0x1B
    	FADD    F6, F2
    	WFDDB   V0, V2, V0
    	FMOVD   F0, ret+8(FP)
    	RET
    
    L9:
    	FMOVD   tanhrodataL18<>+16(SB), F0
    L1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            Iterator<ConfigurationGraphResolveState> iter = configurations.iterator();
            while (iter.hasNext()) {
                ConfigurationGraphResolveState configuration = iter.next();
                if (configuration.getMetadata().getHierarchy().contains(toAdd.getName())) {
                    // this configuration is a child of toAdd, so no need to add it
                    return;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelRepositoryHolder.java

            this.repositories = List.copyOf(holder.repositories);
        }
    
        @Override
        public void merge(List<Repository> toAdd, boolean replace) {
            List<RemoteRepository> repos =
                    toAdd.stream().map(session::createRemoteRepository).toList();
            if (replace) {
                Set<String> ids = repos.stream().map(RemoteRepository::getId).collect(Collectors.toSet());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

        }
    
        @Override
        protected <I extends T> boolean doAdd(I toAdd, Action<? super I> notification) {
            final String name = namer.determineName(toAdd);
            if (index.get(name) == null) {
                boolean added = super.doAdd(toAdd, notification);
                if (added) {
                    whenKnown.execute(new ObjectBackedElementInfo<T>(name, toAdd));
                }
                return added;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top