Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for SYMMETRIC (0.21 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    }
    
    table LeakyReluOptions {
      alpha:float;
    }
    
    table SquaredDifferenceOptions {
    }
    
    enum MirrorPadMode : byte {
      // Doesn't include borders.
      REFLECT = 0,
      // Includes borders.
      SYMMETRIC = 1,
    }
    
    table MirrorPadOptions {
      mode:MirrorPadMode;
    }
    
    table UniqueOptions {
      idx_out_type:TensorType = INT32;
    }
    
    table ReverseV2Options {
    }
    
    table AddNOptions {
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * 
     * <p> Applications can use the methods <code>getLocalHost</code>,
     * <code>getByName</code>, and
     * <code>getAllByAddress</code> to create a new NbtAddress instance. This
     * class is symmetric with {@link java.net.InetAddress}.
     *
     * <p><b>About NetBIOS:</b> The NetBIOS name
     * service is a dynamic distributed service that allows hosts to resolve
     * names by broadcasting a query, directing queries to a server such as
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Range.java

       * {@linkplain #intersection intersection} (as a single, possibly-empty range) if and only if this
       * method returns {@code true}.
       *
       * <p>The connectedness relation is both reflexive and symmetric, but does not form an {@linkplain
       * Equivalence equivalence relation} as it is not transitive.
       *
       * <p>Note that certain discrete ranges are not considered connected, even though there are no
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

       * {@linkplain #intersection intersection} (as a single, possibly-empty range) if and only if this
       * method returns {@code true}.
       *
       * <p>The connectedness relation is both reflexive and symmetric, but does not form an {@linkplain
       * Equivalence equivalence relation} as it is not transitive.
       *
       * <p>Note that certain discrete ranges are not considered connected, even though there are no
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/internal/trace/gc.go

    	}
    
    	// Add final 0 utilization event to any remaining series. This
    	// is important to mark the end of the trace. The exact value
    	// shouldn't matter since no window should extend beyond this,
    	// but using 0 is symmetric with the start of the trace.
    	mu := MutatorUtil{int64(lastEv.Time()), 0}
    	for i := range ps {
    		out[ps[i].series] = addUtil(out[ps[i].series], mu)
    	}
    	return out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    			u.tracef("depth %d >= %d", u.depth, unificationDepthLimit)
    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

      alpha:float;
    }
    
    table SquaredDifferenceOptions {
    }
    
    // LINT.IfChange
    enum MirrorPadMode : byte {
      // Doesn't include borders.
      REFLECT = 0,
      // Includes borders.
      SYMMETRIC = 1,
    }
    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td)
    
    table MirrorPadOptions {
      mode:MirrorPadMode;
    }
    
    table UniqueOptions {
      idx_out_type:TensorType = INT32;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    			u.tracef("depth %d >= %d", u.depth, unificationDepthLimit)
    		}
    		if panicAtUnificationDepthLimit {
    			panic("unification reached recursion depth limit")
    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      func.func @mirror_pad(%arg0: tensor<2x3xcomplex<f64>>) -> tensor<4x7xcomplex<f64>> {
        %0 = mhlo.constant dense<[[1, 1], [2, 2]]> : tensor<2x2xi32>
        // CHECK-NOT: tf.MirrorPad
        %1 = "tf.MirrorPad"(%arg0, %0) {mode = "SYMMETRIC"} : (tensor<2x3xcomplex<f64>>, tensor<2x2xi32>) -> tensor<4x7xcomplex<f64>>
        func.return %1 : tensor<4x7xcomplex<f64>>
      }
    
      // CHECK-LABEL: bucketize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        //
        // Furthermore, pi * abs(frac(x)) loses precision when abs(frac(x)) is close
        // to 1.  To remedy this, we can use the fact that sin(pi * x) in the domain
        // [0, 1] is symmetric across the line Y=0.5.
        Value abs_input = rewriter.create<AbsOp>(loc, input);
        Value abs_input_floor = rewriter.create<FloorOp>(loc, abs_input);
        Value abs_frac_input =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top